Skip to content

Commit

Permalink
PI-2575 further nullable fields fix (#4413)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-bcl authored Nov 8, 2024
1 parent 1dc6d9b commit 7c39355
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data class Hearing(

data class ProsecutionCase(
val id: String,
val initiationCode: String,
val initiationCode: String? = null,
val prosecutionCaseIdentifier: ProsecutionCaseIdentifier,
val defendants: List<Defendant>,
val caseStatus: String? = null,
Expand Down Expand Up @@ -48,7 +48,7 @@ data class Defendant(
data class Offence(
val id: String,
val offenceDefinitionId: String? = null,
val offenceCode: String,
val offenceCode: String? = null,
val offenceTitle: String,
val wording: String,
val offenceLegislation: String,
Expand Down

0 comments on commit 7c39355

Please sign in to comment.