Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 914 Bytes

File metadata and controls

31 lines (23 loc) · 914 Bytes

JobIn

Properties

Name Type Description Notes
file_id int
batch_job_id int
number_of_shots int [optional]
raw_data_enabled bool [optional] [default to False]

Example

from compute_api_client.models.job_in import JobIn

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

# convert the object into a dict
job_in_dict = job_in_instance.to_dict()
# create an instance of JobIn from a dict
job_in_form_dict = job_in.from_dict(job_in_dict)

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