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

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

Method to call the operation originally named DataWarehouse.GetSegment Meta informations extracted from the WSDL - documentation: Obtain a description of an existing data warehouse segment
public DataWarehouse_GetSegment ( string $rsid, string $segment ) : Api\StructType\ApiData_warehouse_segment | boolean
$rsid string
$segment string
Результат Api\StructType\ApiData_warehouse_segment | boolean
    public function DataWarehouse_GetSegment($rsid, $segment)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('DataWarehouse.GetSegment', array($rsid, $segment)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService