All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.webhook.WebhookTimestamp.kt Maven / Gradle / Ivy

There is a newer version: 5.35.2.0
Show newest version
package org.http4k.webhook

import dev.forkhandles.values.LongValue
import dev.forkhandles.values.LongValueFactory
import dev.forkhandles.values.minValue
import java.time.Instant

class WebhookTimestamp private constructor(value: Long) : LongValue(value) {
    fun asInstant() = Instant.ofEpochSecond(value)

    companion object : LongValueFactory(::WebhookTimestamp, 0L.minValue) {
        fun of(instant: Instant) = of(instant.epochSecond)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy