Name | Type | Description | Notes |
---|---|---|---|
count | int | [optional] | |
current_page | int | [optional] | |
results | List[SubscriberResponse] | [optional] | |
total_pages | int | [optional] |
from callchimp.models.subscriber_list_response import SubscriberListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriberListResponse from a JSON string
subscriber_list_response_instance = SubscriberListResponse.from_json(json)
# print the JSON string representation of the object
print(SubscriberListResponse.to_json())
# convert the object into a dict
subscriber_list_response_dict = subscriber_list_response_instance.to_dict()
# create an instance of SubscriberListResponse from a dict
subscriber_list_response_from_dict = SubscriberListResponse.from_dict(subscriber_list_response_dict)