ProcessOutcomes 判断结果数组
1. 结构声明
- TS Declaration
- JSON Schema
class ProcessOutcomes extends LogicItem {
flowRefs: Array<string>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"folded": {
"type": "boolean"
},
"offsetX": {
"type": "number"
},
"offsetY": {
"type": "number"
},
"typeAnnotation": {
"$ref": "#/definitions/TypeAnnotation"
},
"flowRefs": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"flowRefs"
],
"additionalProperties": false
}