Api\ServiceType\ApiService::Company_GetQueue PHP 메소드

Company_GetQueue() 공개 메소드

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
리턴 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