| Name | Type | Description | Notes |
|---|---|---|---|
| rows | List[ChatapiChatButtonRow] | [optional] |
from kenar_api_client.models.chatapi_chat_button_grid import ChatapiChatButtonGrid
# TODO update the JSON string below
json = "{}"
# create an instance of ChatapiChatButtonGrid from a JSON string
chatapi_chat_button_grid_instance = ChatapiChatButtonGrid.from_json(json)
# print the JSON string representation of the object
print(ChatapiChatButtonGrid.to_json())
# convert the object into a dict
chatapi_chat_button_grid_dict = chatapi_chat_button_grid_instance.to_dict()
# create an instance of ChatapiChatButtonGrid from a dict
chatapi_chat_button_grid_from_dict = ChatapiChatButtonGrid.from_dict(chatapi_chat_button_grid_dict)