Skip to content

Commit

Permalink
Legger til kontaktopplysninger og områdekode i samhandlerdto (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
simhos authored Apr 10, 2024
1 parent 673467d commit 7f36fe5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package no.nav.bidrag.transport.samhandler

enum class Områdekode(val tssOmrådekode: String) {
UTENRIKSSTASJON("0050"),
ADVOKAT("0060"),
ARBEIDSGIVER("0070"),
REELL_MOTTAKER("0080"),
UTENLANDSK_PERSON("0260"),
UTENLANDSK_FOGD("2070"),
SOSIALKONTO("0280"),
BARNEVERNSINSTITUSJON("0290"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,26 @@ data class SamhandlerDto(
val navn: String?,
@Schema(description = "Offentlig id for samhandlere.")
val offentligId: String? = null,
@Schema(description = "Type offentlig id. F.eks ORG for norske organisasjonsnummere.")
@Schema(
description =
"Type offentlig id. " +
"F.eks ORG for norske organisasjonsnummere, " +
"UTOR for utenlandske organisasjonsnummere, " +
"FNR for norske personnummer.",
)
val offentligIdType: String? = null,
@Schema(description = "Definerer hvilket område samhandleren er knyttet til.")
val områdekode: Områdekode? = null,
@Schema(description = "Samhandlerens adresse.")
val adresse: AdresseDto? = null,
@Schema(description = "Samhandlerens kontonummer. Kontonummer er ikke inkludert i søkeresultat mot TSS, kun i oppslag.")
val kontonummer: KontonummerDto? = null,
@Schema(description = "Kontaktperson for samhandler. Benyttes primært av utland.")
val kontaktperson: String? = null,
@Schema(description = "Kontakt epost for samhandler. Benyttes primært av utland.")
val kontaktEpost: String? = null,
@Schema(description = "Kontakt telefon for samhandler. Benyttes primært av utland.")
val kontaktTelefon: String? = null,
@Schema(description = "Fritekstfelt for notater.")
val notat: String? = null,
)

0 comments on commit 7f36fe5

Please sign in to comment.