Api\ServiceType\ApiService::ReportSuite_SaveSuccessEvents PHP Метод

ReportSuite_SaveSuccessEvents() публичный метод

Method to call the operation originally named ReportSuite.SaveSuccessEvents Meta informations extracted from the WSDL - documentation: Saves the success events to rsid_list
public ReportSuite_SaveSuccessEvents ( string $events, string $rsid_list ) : integer | boolean
$events string
$rsid_list string
Результат integer | boolean
    public function ReportSuite_SaveSuccessEvents($events, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveSuccessEvents', array($events, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService