Api\ServiceType\ApiService::Scheduling_DownloadWorkbook PHP Method

Scheduling_DownloadWorkbook() public method

Method to call the operation originally named Scheduling.DownloadWorkbook Meta informations extracted from the WSDL - documentation: Download a workbook. (Internal use only.)
public Scheduling_DownloadWorkbook ( string $location, string $productType, string $username, string $workbookName ) : base64Binary | boolean
$location string
$productType string
$username string
$workbookName string
return base64Binary | boolean
    public function Scheduling_DownloadWorkbook($location, $productType, $username, $workbookName)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.DownloadWorkbook', array($location, $productType, $username, $workbookName)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService