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

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

Method to call the operation originally named list Meta informations extracted from the WSDL - SOAPHeaderNames : SessionHeader, ClusterHeader - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader - SOAPHeaders : optional, required - documentation: Obtain a listing of different types of items in the system (e.g. CONTACT_LISTS)
public _list ( Api\StructType\ApiList $parameter ) : Api\StructType\ApiListResponse | boolean
$parameter Api\StructType\ApiList
Результат Api\StructType\ApiListResponse | boolean
    public function _list(\Api\StructType\ApiList $parameter)
    {
        try {
            $this->setResult(self::getSoapClient()->list($parameter));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService