Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ChatapiChatButtonGrid

Properties

Name Type Description Notes
rows List[ChatapiChatButtonRow] [optional]

Example

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)

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