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

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

Method to call the operation originally named ReportSuite.SaveMobileAppReporting
public ReportSuite_SaveMobileAppReporting ( string $rsid_list ) : void | boolean
$rsid_list string
Результат void | boolean
    public function ReportSuite_SaveMobileAppReporting($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveMobileAppReporting', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService