ProcessOutcome 判断结果
1. 结构声明
- TS Declaration
- JSON Schema
class ProcessOutcome extends LogicItem {
flowRef: 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"
},
"flowRef": {
"type": "string"
}
},
"required": [
"flowRef"
],
"additionalProperties": false
}