CallConnector 调用连接器
结构声明
- TS Declaration
- Java Class
- JSON Schema
interface CallConnector {
"concept": "CallConnector", // 产品概念
"calleeConnectionName": string, // calleeConnectionName
"label": string, // 调用连接器标题
}
class CallConnectorTreeNode {
ConceptEnum concept; // 产品概念
String calleeConnectionName; // calleeConnectionName
String label; // 调用连接器标题
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/CallConnector",
"definitions": {
"CallConnector": {
"type": "object",
"properties": {
"concept": {
"type": "string",
"const": "CallConnector"
},
"calleeConnectionName": {
"type": "string"
},
"label": {
"type": "string"
}
},
"required": [
"concept",
"calleeConnectionName",
"label"
],
"additionalProperties": false
}
}
}
示例
简单示例
- JSON
- YAML
{
"concept": "CallConnector",
"calleeConnectionName": "String",
"label": "连接器"
}
concept: CallConnector
calleeConnectionName: String
label: 连接器