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

Survey_GetSummaryList() публичный Метод

Method to call the operation originally named Survey.GetSummaryList Meta informations extracted from the WSDL - documentation: Returns the list of current surveys created for a given report suite.
public Survey_GetSummaryList ( string $rsid, string $status_filter ) : survey_summary_list | boolean
$rsid string
$status_filter string
Результат survey_summary_list | boolean
    public function Survey_GetSummaryList($rsid, $status_filter)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Survey.GetSummaryList', array($rsid, $status_filter)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService