Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.05 KB

Bot.md

File metadata and controls

38 lines (29 loc) · 1.05 KB

Bot

Properties

Name Type Description Notes
id int [readonly]
tenant str [readonly]
name str
client_id str
client_secret str
app_token str
verification_token str
provider ProviderBd1Enum
config object [optional]
webhook_url str [readonly]

Example

from iblai.models.bot import Bot

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

# convert the object into a dict
bot_dict = bot_instance.to_dict()
# create an instance of Bot from a dict
bot_from_dict = Bot.from_dict(bot_dict)

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