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

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

Method to call the operation originally named CodeManager.GetCodeArchives Meta informations extracted from the WSDL - documentation: Returns a list of existing code archives.
public CodeManager_GetCodeArchives ( string $archive_id_list, string $binary_encoding, string $populate_code_items ) : code_archives | boolean
$archive_id_list string
$binary_encoding string
$populate_code_items string
Результат code_archives | boolean
    public function CodeManager_GetCodeArchives($archive_id_list, $binary_encoding, $populate_code_items)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('CodeManager.GetCodeArchives', array($archive_id_list, $binary_encoding, $populate_code_items)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService