We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a29384 commit 5168af9Copy full SHA for 5168af9
src/main/kotlin/com/ctrlhub/core/governance/schemes/response/Scheme.kt
@@ -18,6 +18,7 @@ class Scheme @JsonCreator constructor(
18
@Id(StringIdHandler::class) var id: String = "",
19
@JsonProperty("name") var name: String = "",
20
@JsonProperty("code") var code: String = "",
21
+ @JsonProperty("description") var description: String? = null,
22
@JsonProperty("start_date") var startDate: LocalDate? = null,
23
@JsonProperty("end_date") var endDate: LocalDate? = null,
24
@@ -33,6 +34,7 @@ class Scheme @JsonCreator constructor(
33
34
constructor(): this(
35
id = "",
36
name = "",
37
+ description = null,
38
code = "",
39
startDate = null,
40
endDate = null,
0 commit comments