Name |
Type |
Description |
Notes |
results |
List[List] |
|
[optional] |
total |
int |
|
[optional] |
per_page |
int |
|
[optional] |
page |
int |
|
[optional] |
from listmonk.models.get_lists200_response_data import GetLists200ResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of GetLists200ResponseData from a JSON string
get_lists200_response_data_instance = GetLists200ResponseData.from_json(json)
# print the JSON string representation of the object
print
GetLists200ResponseData.to_json()
# convert the object into a dict
get_lists200_response_data_dict = get_lists200_response_data_instance.to_dict()
# create an instance of GetLists200ResponseData from a dict
get_lists200_response_data_form_dict = get_lists200_response_data.from_dict(get_lists200_response_data_dict)
[Back to Model list] [Back to API list] [Back to README]