Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

PatchedBotCommand.md

File metadata and controls

32 lines (23 loc) · 1.02 KB

PatchedBotCommand

Properties

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

Example

from iblai.models.patched_bot_command import PatchedBotCommand

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

# convert the object into a dict
patched_bot_command_dict = patched_bot_command_instance.to_dict()
# create an instance of PatchedBotCommand from a dict
patched_bot_command_from_dict = PatchedBotCommand.from_dict(patched_bot_command_dict)

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