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] |
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)