Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 905 Bytes

BotCommand.md

File metadata and controls

32 lines (23 loc) · 905 Bytes

BotCommand

Properties

Name Type Description Notes
id int [readonly]
command str
mentor int
bot int

Example

from iblai.models.bot_command import BotCommand

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

# convert the object into a dict
bot_command_dict = bot_command_instance.to_dict()
# create an instance of BotCommand from a dict
bot_command_from_dict = BotCommand.from_dict(bot_command_dict)

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