Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

ConversationResponse

Properties

Name Type Description Notes
conversation Conversation The conversation. [optional]

Example

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)

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