Api\ServiceType\ApiService::DataWarehouse_GetSegments PHP Method

DataWarehouse_GetSegments() public method

Method to call the operation originally named DataWarehouse.GetSegments Meta informations extracted from the WSDL - documentation: Gets available segments.
public DataWarehouse_GetSegments ( string $rsid ) : dwsegments | boolean
$rsid string
return dwsegments | boolean
    public function DataWarehouse_GetSegments($rsid)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('DataWarehouse.GetSegments', array($rsid)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService