Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

PhoneNumberListResponse.md

File metadata and controls

32 lines (23 loc) · 1.16 KB

PhoneNumberListResponse

Properties

Name Type Description Notes
count int [optional]
current_page int [optional]
results List[PhoneNumberResponse] [optional]
total_pages int [optional]

Example

from callchimp.models.phone_number_list_response import PhoneNumberListResponse

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

# convert the object into a dict
phone_number_list_response_dict = phone_number_list_response_instance.to_dict()
# create an instance of PhoneNumberListResponse from a dict
phone_number_list_response_from_dict = PhoneNumberListResponse.from_dict(phone_number_list_response_dict)

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