Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1023 Bytes

File metadata and controls

32 lines (23 loc) · 1023 Bytes

ListRunsResponse

Properties

Name Type Description Notes
items List[RunResponse]
total int
limit int
offset int

Example

from wordlift_client.models.list_runs_response import ListRunsResponse

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

# convert the object into a dict
list_runs_response_dict = list_runs_response_instance.to_dict()
# create an instance of ListRunsResponse from a dict
list_runs_response_from_dict = ListRunsResponse.from_dict(list_runs_response_dict)

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