Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.05 KB

File metadata and controls

34 lines (26 loc) · 1.05 KB

ResultIn

Properties

Name Type Description Notes
job_id int
metadata_id int [optional]
execution_time_in_seconds float
shots_requested int [optional]
shots_done int [optional]
results object [optional]
raw_data List[str] [optional]

Example

from compute_api_client.models.result_in import ResultIn

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

# convert the object into a dict
result_in_dict = result_in_instance.to_dict()
# create an instance of ResultIn from a dict
result_in_form_dict = result_in.from_dict(result_in_dict)

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