EnumItem 枚举值
1. 结构声明
- TS Declaration
- JSON Schema
class EnumItem extends BaseNode {
value: string;
label: StaticString;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"value": {
"type": "string"
},
"label": {
"$ref": "#/definitions/StaticString"
}
},
"required": [
"value",
"label"
],
"additionalProperties": false
}