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

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

Method to call the operation originally named ReportSuite.SavePermanentTraffic Meta informations extracted from the WSDL - documentation: Saves the permanent traffic settings for the requested report suites.
public ReportSuite_SavePermanentTraffic ( string $new_hits_per_day, string $rsid_list, string $start_date ) : integer | boolean
$new_hits_per_day string
$rsid_list string
$start_date string
Результат integer | boolean
    public function ReportSuite_SavePermanentTraffic($new_hits_per_day, $rsid_list, $start_date)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SavePermanentTraffic', array($new_hits_per_day, $rsid_list, $start_date)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService