ApplyAnnotation 使用注解
使用注解
1. 结构声明
- TS Declaration
- JSON Schema
class ApplyAnnotation extends BaseNode {
annotationNamespace: string;
annotationName: string;
arguments: Array<Argument>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"annotationNamespace": {
"type": "string"
},
"annotationName": {
"type": "string"
},
"arguments": {
"type": "array",
"items": {
"$ref": "#/definitions/Argument"
}
}
},
"required": [
"annotationNamespace",
"annotationName",
"arguments"
],
"additionalProperties": false
}