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

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

Method to call the operation originally named Scheduling.UploadWorkbook Meta informations extracted from the WSDL - documentation: Uploads a Workbook. (Internal use only.)
public Scheduling_UploadWorkbook ( string $description, string $filename, string $location, string $product, string $workbook ) : boolean
$description string
$filename string
$location string
$product string
$workbook string
Результат boolean
    public function Scheduling_UploadWorkbook($description, $filename, $location, $product, $workbook)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.UploadWorkbook', array($description, $filename, $location, $product, $workbook)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService