Api\ServiceType\ApiService::Company_GetQueue PHP Method

Company_GetQueue() public method

Method to call the operation originally named Company.GetQueue Meta informations extracted from the WSDL - documentation: Returns queued items that are pending approval for the requesting company.
public Company_GetQueue ( ) : queue_items | boolean
return queue_items | boolean
    public function Company_GetQueue()
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Company.GetQueue'));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService