Api\ServiceType\ApiService::Report_GetReportQueue PHP Method

Report_GetReportQueue() public method

Method to call the operation originally named Report.GetReportQueue Meta informations extracted from the WSDL - documentation: Retrieve the report queue for a given company.
public Report_GetReportQueue ( ) : report_queue | boolean
return report_queue | boolean
    public function Report_GetReportQueue()
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Report.GetReportQueue'));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService