Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.45 KB

File metadata and controls

36 lines (27 loc) · 1.45 KB

IncomingNumberList

Properties

Name Type Description Notes
total int Total amount of requested resource. [optional]
start int Resource index at start of current page [optional]
end int Resource index at end of current page [optional]
page int Current page [optional]
num_pages int Total number of pages [optional]
page_size int Number of items per page [optional]
next_page_uri str Uri to retrieve the next page of items [optional]
incoming_phone_numbers List[IncomingNumberResult] [optional]

Example

from freeclimb.models.incoming_number_list import IncomingNumberList

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

# convert the object into a dict
incoming_number_list_dict = incoming_number_list_instance.to_dict()
# create an instance of IncomingNumberList from a dict
incoming_number_list_from_dict = IncomingNumberList.from_dict(incoming_number_list_dict)

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