Domain

@Serializable
data class Domain(val domainId: String, val name: String, val verified: Boolean, val updatedAt: Instant, val createdAt: Instant)

Represents a custom email domain with its verification status and timestamps.

Constructors

Link copied to clipboard
constructor(domainId: String, name: String, verified: Boolean, updatedAt: Instant, createdAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "domain_id")
val domainId: String
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant
Link copied to clipboard