Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.07 KB

File metadata and controls

34 lines (25 loc) · 1.07 KB

ResultIn

Properties

Name Type Description Notes
job_id int The ID of the result
execution_time_in_seconds float Time it took to compute the result
shots_requested int [optional]
shots_done int [optional]
results Dict[str, 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_from_dict = ResultIn.from_dict(result_in_dict)

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