Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

ChatapiChatButton

Properties

Name Type Description Notes
action AddonsAction [optional]
caption str [optional]
icon DivarIconsIconName [optional]
icon_name str [optional]

Example

from kenar_api_client.models.chatapi_chat_button import ChatapiChatButton

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

# convert the object into a dict
chatapi_chat_button_dict = chatapi_chat_button_instance.to_dict()
# create an instance of ChatapiChatButton from a dict
chatapi_chat_button_from_dict = ChatapiChatButton.from_dict(chatapi_chat_button_dict)

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