MsgTriggerEvent 触发器事件消息
1. 结构声明
- TS Declaration
- JSON Schema
class MsgTriggerEvent extends TriggerEvent {
properties: Array<Param>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string"
},
"callBackLogic": {
"$ref": "#/definitions/TypeAnnotation"
},
"properties": {
"type": "array",
"items": {
"$ref": "#/definitions/Param"
}
}
},
"required": [
"callBackLogic",
"name",
"properties"
],
"additionalProperties": false
}