Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

ConversationListResponse

Properties

Name Type Description Notes
conversations List[Conversation] List of returned conversations. [optional]
meta Meta [optional]
links Links [optional]

Example

from sunshine_conversations_client.model.conversation_list_response import ConversationListResponse

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

# convert the object into a dict
conversation_list_response_dict = conversation_list_response_instance.to_dict()
# create an instance of ConversationListResponse from a dict
conversation_list_response_from_dict = ConversationListResponse.from_dict(conversation_list_response_dict)

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