File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/main/kotlin/com/ctrlhub/core/governance/schemes/workorders/operations/response Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ class Operation @JsonCreator constructor(
17
17
@JsonProperty(" name" ) var name : String = " " ,
18
18
@JsonProperty(" code" ) var code : String = " " ,
19
19
@JsonProperty(" description" ) var description : String? = " " ,
20
+ @JsonProperty(" type" ) var type : String? = null ,
20
21
@JsonProperty(" start_date" ) var startDate : LocalDate ? = null ,
21
22
@JsonProperty(" end_date" ) var endDate : LocalDate ? = null ,
22
23
@JsonProperty(" uprns" ) var uprns : List <String >? = emptyList(),
@@ -32,6 +33,7 @@ class Operation @JsonCreator constructor(
32
33
name = " " ,
33
34
code = " " ,
34
35
description = " " ,
36
+ type = null ,
35
37
startDate = null ,
36
38
endDate = null ,
37
39
uprns = emptyList(),
You can’t perform that action at this time.
0 commit comments