| Name | Type | Description | Notes |
|---|---|---|---|
| action | AddonsAction | [optional] | |
| caption | str | [optional] | |
| icon | DivarIconsIconName | [optional] | |
| icon_name | str | [optional] |
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)