File tree 2 files changed +6
-2
lines changed
src/main/kotlin/no/nav/emottak/utils/events/model
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ publishing {
17
17
create<MavenPublication >(" mavenJava" ) {
18
18
groupId = " no.nav.emottak"
19
19
artifactId = " emottak-utils"
20
- version = " 0.0.8 "
20
+ version = " 0.0.9 "
21
21
from(components[" java" ])
22
22
}
23
23
}
Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ package no.nav.emottak.utils.events.model
2
2
3
3
import kotlinx.serialization.Serializable
4
4
import kotlinx.serialization.json.Json
5
+ import no.nav.emottak.utils.InstantSerializer
5
6
import no.nav.emottak.utils.UuidSerializer
7
+ import java.time.Instant
6
8
import kotlin.uuid.ExperimentalUuidApi
7
9
import kotlin.uuid.Uuid
8
10
@@ -14,7 +16,9 @@ data class Event(
14
16
val requestId : Uuid ,
15
17
val contentId : String? = null ,
16
18
val messageId : String ,
17
- val eventData : String? = null
19
+ val eventData : String? = null ,
20
+ @Serializable(with = InstantSerializer ::class )
21
+ val createdAt : Instant = Instant .now()
18
22
) {
19
23
fun toByteArray (): ByteArray {
20
24
return Json .encodeToString(this ).toByteArray()
You can’t perform that action at this time.
0 commit comments