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

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

Method to call the operation originally named ReportSuite.SaveFindingMethods Meta informations extracted from the WSDL - documentation: Saves finding method settings.
public ReportSuite_SaveFindingMethods ( string $reports, string $rsid_list ) : integer | boolean
$reports string
$rsid_list string
Результат integer | boolean
    public function ReportSuite_SaveFindingMethods($reports, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveFindingMethods', array($reports, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService