Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 879 Bytes

File metadata and controls

30 lines (21 loc) · 879 Bytes

RunList

Properties

Name Type Description Notes
runs List[Run] [optional]
pagination Pagination [optional]

Example

from ibutsu_client.models.run_list import RunList

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

# convert the object into a dict
run_list_dict = run_list_instance.to_dict()
# create an instance of RunList from a dict
run_list_from_dict = RunList.from_dict(run_list_dict)

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