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

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

Method to call the operation originally named ReportSuite.GetMarketingChannelCost Meta informations extracted from the WSDL - documentation: Retrieves the marketing channel cost metrics for the requested report suites.
public ReportSuite_GetMarketingChannelCost ( string $rsid_list ) : rscollection_costs | boolean
$rsid_list string
Результат rscollection_costs | boolean
    public function ReportSuite_GetMarketingChannelCost($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetMarketingChannelCost', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService