Skip to content

Commit

Permalink
Endringer for å hente inn grunnlag tilleggsstønad (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
rinnan17 authored Oct 2, 2024
1 parent 70e5283 commit 33cefae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ data class HentGrunnlagDto(
"Indikator på om person mottar eller har mottatt tilleggsstønad til barnetilsyn i " +
"enten Arena eller tilleggsstonader-sak. Responsen skal utvides med periode og beløp senere",
)
val tilleggsstønadBarnetilsyn: Boolean,
val tilleggsstønadBarnetilsynListe: List<TilleggsstønadGrunnlagDto>,
@Schema(description = "Liste over evt. feil rapportert under henting av grunnlag")
val feilrapporteringListe: List<FeilrapporteringDto>,
val hentetTidspunkt: LocalDateTime,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package no.nav.bidrag.transport.behandling.grunnlag.response

import io.swagger.v3.oas.annotations.media.Schema

data class TilleggsstønadGrunnlagDto(
@Schema(description = "Id til personen som mottar tilleggsstønaden")
val partPersonId: String,
@Schema(description = "Indikator som viser om en person mottar tilleggsstønad")
val harInnvilgetVedtak: Boolean,
)

0 comments on commit 33cefae

Please sign in to comment.