| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[RunResponse] | ||
| total | int | ||
| limit | int | ||
| offset | int |
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)