| Name | Type | Description | Notes |
|---|---|---|---|
| metadata | object | Extra data for this run | [optional] |
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)