Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

MessagesList.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

MessagesList

Properties

Name Type Description Notes
total_count int The total number of messages matched by the search. When the request has limitTotalCount set to true this value is limited to 10,000. [optional]
page_info PageInfo [optional]
messages List[ListMessageItem] [optional]

Example

from bandwidth.models.messages_list import MessagesList

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

# convert the object into a dict
messages_list_dict = messages_list_instance.to_dict()
# create an instance of MessagesList from a dict
messages_list_from_dict = MessagesList.from_dict(messages_list_dict)

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