Api\ServiceType\ApiService::Saint_CheckJobStatus PHP Method

Saint_CheckJobStatus() public method

Method to call the operation originally named Saint.CheckJobStatus Meta informations extracted from the WSDL - documentation: Return the current status of a Saint API Job.
public Saint_CheckJobStatus ( string $job_id ) : saintresults | boolean
$job_id string
return saintresults | boolean
    public function Saint_CheckJobStatus($job_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Saint.CheckJobStatus', array($job_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService