| Name | Type | Description | Notes |
|---|---|---|---|
| conversation | Conversation | The conversation. | [optional] |
from sunshine_conversations_client.model.conversation_response import ConversationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationResponse from a JSON string
conversation_response_instance = ConversationResponse.from_json(json)
# print the JSON string representation of the object
print(ConversationResponse.to_json())
# convert the object into a dict
conversation_response_dict = conversation_response_instance.to_dict()
# create an instance of ConversationResponse from a dict
conversation_response_from_dict = ConversationResponse.from_dict(conversation_response_dict)