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

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

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