Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 853 Bytes

File metadata and controls

29 lines (20 loc) · 853 Bytes

UpdateRun

Properties

Name Type Description Notes
metadata object Extra data for this run [optional]

Example

from ibutsu_client.models.update_run import UpdateRun

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

# convert the object into a dict
update_run_dict = update_run_instance.to_dict()
# create an instance of UpdateRun from a dict
update_run_from_dict = UpdateRun.from_dict(update_run_dict)

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