File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/main/kotlin/com/ctrlhub/core/governance/schemes/workorders/operations/response Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
package com.ctrlhub.core.governance.schemes.workorders.operations.response
2
2
3
3
import com.ctrlhub.core.api.Assignable
4
+ import com.ctrlhub.core.governance.response.Label
4
5
import com.fasterxml.jackson.annotation.JsonCreator
5
6
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
6
7
import com.fasterxml.jackson.annotation.JsonProperty
@@ -26,6 +27,9 @@ class Operation @JsonCreator constructor(
26
27
@JsonProperty(" aborted" ) var aborted : Boolean = false ,
27
28
@JsonProperty(" cancelled" ) var cancelled : Boolean = false ,
28
29
30
+ @JsonProperty(" labels" )
31
+ var labels : List <Label > = emptyList(),
32
+
29
33
@Relationship(" assignees" )
30
34
var assignees : java.util.List <Assignable >? = null
31
35
) {
@@ -40,6 +44,7 @@ class Operation @JsonCreator constructor(
40
44
usrns = emptyList(),
41
45
completed = false ,
42
46
aborted = false ,
43
- cancelled = false
47
+ cancelled = false ,
48
+ labels = emptyList()
44
49
)
45
50
}
You can’t perform that action at this time.
0 commit comments