Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.02 KB

File metadata and controls

36 lines (28 loc) · 1.02 KB

Result

Properties

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

Example

from compute_api_client.models.result import Result

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

# convert the object into a dict
result_dict = result_instance.to_dict()
# create an instance of Result from a dict
result_form_dict = result.from_dict(result_dict)

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