Api\ServiceType\ApiService::Scheduling_GetPublishedReports PHP Method

Scheduling_GetPublishedReports() public method

Method to call the operation originally named Scheduling.GetPublishedReports Meta informations extracted from the WSDL - documentation: Get published reports for a user. (Internal use only.)
public Scheduling_GetPublishedReports ( string $product, string $username ) : Api\StructType\ApiScheduledReport[] | boolean
$product string
$username string
return Api\StructType\ApiScheduledReport[] | boolean
    public function Scheduling_GetPublishedReports($product, $username)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.GetPublishedReports', array($product, $username)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService