Skip to content

Commit

Permalink
Kontrakt for Dokdistkanal API (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnarland authored Sep 27, 2023
1 parent 1b0dbac commit 4b4b09b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package no.nav.familie.kontrakter.felles.dokdistkanal

enum class Distribusjonskanal {
PRINT,
SDP,
DITT_NAV,
LOKAL_PRINT,
INGEN_DISTRIBUSJON,
TRYGDERETTEN,
DPVT,
UKJENT,
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package no.nav.familie.kontrakter.felles.dokdistkanal

import no.nav.familie.kontrakter.felles.PersonIdent

data class DokdistkanalRequest(
val bruker: PersonIdent,
val mottaker: PersonIdent,
val dokumenttypeId: String? = null,
val erArkivert: Boolean? = null,
val forsendelseStørrelseIMegabytes: Int? = null,
)

0 comments on commit 4b4b09b

Please sign in to comment.