Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

ChatapiConversationSendMessageResponse

Properties

Name Type Description Notes
message str [optional]
status int [optional]

Example

from kenar_api_client.models.chatapi_conversation_send_message_response import ChatapiConversationSendMessageResponse

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

# convert the object into a dict
chatapi_conversation_send_message_response_dict = chatapi_conversation_send_message_response_instance.to_dict()
# create an instance of ChatapiConversationSendMessageResponse from a dict
chatapi_conversation_send_message_response_from_dict = ChatapiConversationSendMessageResponse.from_dict(chatapi_conversation_send_message_response_dict)

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