Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.24 KB

GetSubscribers200ResponseData.md

File metadata and controls

33 lines (25 loc) · 1.24 KB

GetSubscribers200ResponseData

Properties

Name Type Description Notes
results List[Subscriber] [optional]
query str [optional]
total int [optional]
per_page int [optional]
page int [optional]

Example

from listmonk.models.get_subscribers200_response_data import GetSubscribers200ResponseData

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

# convert the object into a dict
get_subscribers200_response_data_dict = get_subscribers200_response_data_instance.to_dict()
# create an instance of GetSubscribers200ResponseData from a dict
get_subscribers200_response_data_form_dict = get_subscribers200_response_data.from_dict(get_subscribers200_response_data_dict)

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