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

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

Method to call the operation originally named Scheduling.GetWorkbookList Meta informations extracted from the WSDL - documentation: Gets a list of workbooks for a user. (Internal use only.)
public Scheduling_GetWorkbookList ( string $location, string $product ) : Api\StructType\ApiExcelWorkbook[] | boolean
$location string
$product string
Результат Api\StructType\ApiExcelWorkbook[] | boolean
    public function Scheduling_GetWorkbookList($location, $product)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.GetWorkbookList', array($location, $product)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService