-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #938 from navikt/innholdsfortegnelse
Innholdsfortegnelse
- Loading branch information
Showing
47 changed files
with
1,708 additions
and
592 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
.../kotlin/no/nav/klage/dokument/clients/kabaljsontopdf/domain/DocumentValidationResponse.kt
This file was deleted.
Oops, something went wrong.
26 changes: 26 additions & 0 deletions
26
src/main/kotlin/no/nav/klage/dokument/clients/kabaljsontopdf/domain/RequestResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package no.nav.klage.dokument.clients.kabaljsontopdf.domain | ||
|
||
import java.time.LocalDateTime | ||
|
||
data class DocumentValidationResponse( | ||
val errors: List<DocumentValidationError> = emptyList() | ||
) { | ||
data class DocumentValidationError( | ||
val type: String, | ||
val paths: List<List<Int>> = emptyList() | ||
) | ||
} | ||
|
||
data class InnholdsfortegnelseRequest( | ||
val dokumenterUnderArbeid: List<Document>, | ||
val journalfoerteDokumenter: List<Document>, | ||
) { | ||
data class Document( | ||
val tittel: String, | ||
val tema: String, | ||
val opprettet: LocalDateTime, | ||
val avsenderMottaker: String, | ||
val saksnummer: String, | ||
val type: String, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.