Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

MessageListResponse

Properties

Name Type Description Notes
messages List[Message] List of returned messages. [optional]
meta Meta [optional]
links Links [optional]

Example

from sunshine_conversations_client.model.message_list_response import MessageListResponse

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

# convert the object into a dict
message_list_response_dict = message_list_response_instance.to_dict()
# create an instance of MessageListResponse from a dict
message_list_response_from_dict = MessageListResponse.from_dict(message_list_response_dict)

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