Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

File metadata and controls

29 lines (20 loc) · 1.23 KB

ChatapiChatBotSendMessageResponse

Properties

Name Type Description Notes
conversation_id str شناسه مکالمه ایجاد شده یا به‌روزرسانی شده [optional] [readonly]

Example

from kenar_api_client.models.chatapi_chat_bot_send_message_response import ChatapiChatBotSendMessageResponse

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

# convert the object into a dict
chatapi_chat_bot_send_message_response_dict = chatapi_chat_bot_send_message_response_instance.to_dict()
# create an instance of ChatapiChatBotSendMessageResponse from a dict
chatapi_chat_bot_send_message_response_from_dict = ChatapiChatBotSendMessageResponse.from_dict(chatapi_chat_bot_send_message_response_dict)

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