Skip to content

Commit

Permalink
allow null tilOgMed dato in Beholdningsperiode from afpBeholdning
Browse files Browse the repository at this point in the history
  • Loading branch information
antonfofanov committed Feb 2, 2024
1 parent 719e5c7 commit cc43873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package no.nav.tjenestepensjon.simulering.model.domain.pen

import java.time.LocalDate

data class AFPOffentligLivsvarigYtelse(val ar: Int, val belop: Double, val fom: LocalDate, val tom: LocalDate)
data class AFPOffentligLivsvarigYtelse(val ar: Int, val belop: Double, val fom: LocalDate, val tom: LocalDate?)
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import com.fasterxml.jackson.annotation.JsonProperty
import java.time.LocalDate

@JsonIgnoreProperties(ignoreUnknown = true)
data class AFPGrunnlagBeholdningPeriode(val beholdning: Int, @JsonProperty("fraOgMedDato") val fom: LocalDate, @JsonProperty("tilOgMedDato") val tom: LocalDate)
data class AFPGrunnlagBeholdningPeriode(val beholdning: Int, @JsonProperty("fraOgMedDato") val fom: LocalDate, @JsonProperty("tilOgMedDato") val tom: LocalDate?)

0 comments on commit cc43873

Please sign in to comment.