Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.47 KB

File metadata and controls

32 lines (23 loc) · 1.47 KB

ChatAPIConversationSendMessageBody

Properties

Name Type Description Notes
media_token str توکن فایل ضمیمه شده (در صورت وجود) [optional]
message str محتوای پیام متنی برای ارسال
receiver_buttons ChatapiChatButtonGrid [optional]
sender_buttons ChatapiChatButtonGrid [optional]

Example

from kenar_api_client.models.chat_api_conversation_send_message_body import ChatAPIConversationSendMessageBody

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

# convert the object into a dict
chat_api_conversation_send_message_body_dict = chat_api_conversation_send_message_body_instance.to_dict()
# create an instance of ChatAPIConversationSendMessageBody from a dict
chat_api_conversation_send_message_body_from_dict = ChatAPIConversationSendMessageBody.from_dict(chat_api_conversation_send_message_body_dict)

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