Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.09 KB

BotCreate.md

File metadata and controls

37 lines (28 loc) · 1.09 KB

BotCreate

Properties

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]

Example

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)

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