Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.02 KB

File metadata and controls

36 lines (28 loc) · 1.02 KB

Job

Properties

Name Type Description Notes
id int
created_on datetime
file_id int
algorithm_type AlgorithmType
status JobStatus
batch_job_id int
queued_at datetime
finished_at datetime
number_of_shots int

Example

from compute_api_client.models.job import Job

# TODO update the JSON string below
json = "{}"
# create an instance of Job from a JSON string
job_instance = Job.from_json(json)
# print the JSON string representation of the object
print Job.to_json()

# convert the object into a dict
job_dict = job_instance.to_dict()
# create an instance of Job from a dict
job_form_dict = job.from_dict(job_dict)

[Back to Model list] [Back to API list] [Back to README]