Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

ChatapiConversation

Properties

Name Type Description Notes
id str [optional]
post_token str [optional]
type ChatapiConversationType [optional]

Example

from kenar_api_client.models.chatapi_conversation import ChatapiConversation

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

# convert the object into a dict
chatapi_conversation_dict = chatapi_conversation_instance.to_dict()
# create an instance of ChatapiConversation from a dict
chatapi_conversation_from_dict = ChatapiConversation.from_dict(chatapi_conversation_dict)

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