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

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

Method to call the operation originally named Scheduling.CreatePublishedReport Meta informations extracted from the WSDL - documentation: Creates a new published report. (Internal use only.)
public Scheduling_CreatePublishedReport ( string $location, string $product, Api\StructType\ApiScheduledReport $scheduledReport, string $workbook ) : Api\StructType\ApiScheduledReport | boolean
$location string
$product string
$scheduledReport Api\StructType\ApiScheduledReport
$workbook string
Результат Api\StructType\ApiScheduledReport | boolean
    public function Scheduling_CreatePublishedReport($location, $product, \Api\StructType\ApiScheduledReport $scheduledReport, $workbook)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.CreatePublishedReport', array($location, $product, $scheduledReport, $workbook)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService