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 |
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)