This class is returned by client methods such as DOcplexcloudClient.submitJob() and is used to store information for jobs created and executed on DOcplexcloud.

DOcplexcloudJob

Format

An object of class R6ClassGenerator of length 24.

Fields

joburl
The URL of the job.

jobid
The id of the job.

exectutionStatus
The execution status if the job has been executed.

Examples

## Not run: ------------------------------------ # client <- DOcplexcloudClient(url='Your DOcplexcloud base URL', # key='Your DOcplexcloud api key') # # # Create job and wait for completion # job <- client$submitJob(addAttachment(file="model.lp")) # # The job status # status <- job$executionStatus ## ---------------------------------------------