Verification

@Serializable
data class Verification(val status: String, val strategy: String, val attempts: Int, val expireAt: Long? = null)

Represents the verification details for an organization domain.

Constructors

Link copied to clipboard
constructor(status: String, strategy: String, attempts: Int, expireAt: Long? = null)

Properties

Link copied to clipboard

The current attempt number for verification

Link copied to clipboard
val expireAt: Long? = null

The expiration time for the verification attempt (Unix timestamp in milliseconds), null if no expiration

Link copied to clipboard

The current verification status of the domain

Link copied to clipboard

The verification strategy being used