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

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

Method to call the operation originally named ReportSuite.SaveTimeZone Meta informations extracted from the WSDL - documentation: Changes the timezone (lookup ID) of the report suites specified
public ReportSuite_SaveTimeZone ( string $rsid_list, string $time_zone ) : integer | boolean
$rsid_list string
$time_zone string
Результат integer | boolean
    public function ReportSuite_SaveTimeZone($rsid_list, $time_zone)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveTimeZone', array($rsid_list, $time_zone)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService