Name | Type | Description | Notes |
---|---|---|---|
id | int | [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_create import BotCreate
# TODO update the JSON string below
json = "{}"
# create an instance of BotCreate from a JSON string
bot_create_instance = BotCreate.from_json(json)
# print the JSON string representation of the object
print(BotCreate.to_json())
# convert the object into a dict
bot_create_dict = bot_create_instance.to_dict()
# create an instance of BotCreate from a dict
bot_create_from_dict = BotCreate.from_dict(bot_create_dict)