| Name | Type | Description | Notes |
|---|---|---|---|
| conversations | List[Conversation] | List of returned conversations. | [optional] |
| meta | Meta | [optional] | |
| links | Links | [optional] |
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)