DepartmentAssignees 部门经办人
1. 结构声明
- TS Declaration
- JSON Schema
class DepartmentAssignees extends Assignees {
departments: Array<DepartmentV2>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"departments": {
"type": "array",
"items": {
"$ref": "#/definitions/DepartmentV2"
}
}
},
"required": [
"departments"
],
"additionalProperties": false
}