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

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

Method to call the operation originally named Discover.GetSegments Meta informations extracted from the WSDL - documentation: Retrieve a list of Discover segments for a given report suite.
public Discover_GetSegments ( string $end_date, string $rsid, string $start_date ) : segment_folders | boolean
$end_date string
$rsid string
$start_date string
Результат segment_folders | boolean
    public function Discover_GetSegments($end_date, $rsid, $start_date)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Discover.GetSegments', array($end_date, $rsid, $start_date)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService