| Name |
Type |
Description |
Notes |
| file_id |
int |
The ID of the file |
|
| batch_job_id |
int |
The ID of the batch job |
|
| number_of_shots |
int |
|
[optional] |
| raw_data_enabled |
bool |
If raw data is to be attached to results |
[optional] [default to False] |
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_from_dict = JobIn.from_dict(job_in_dict)
[Back to Model list] [Back to API list] [Back to README]