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

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

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