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

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

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