L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
root.bots.configuration object
The dialog configuration provides information specific to the bot's scope. It enables users to set up and modify their bot's settings directly within the channel or group chat after installation. To configure your bot experience see, Configure bot scope.
{
"type": "object",
"additionalProperties": false,
"properties": {
"team": {
"type": "object",
"additionalProperties": false,
"properties": {
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
}
}
},
"groupChat": {
"type": "object",
"additionalProperties": false,
"properties": {
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
}
}
}
}
}