Inbox

@Serializable
data class Inbox(val podId: String? = null, val inboxId: String, val email: String, val displayName: String? = null, val clientId: String? = null, val updatedAt: Instant, val createdAt: Instant)

Represents an email inbox with its address, display name, and optional pod/client association.

Constructors

Link copied to clipboard
constructor(podId: String? = null, inboxId: String, email: String, displayName: String? = null, clientId: String? = null, updatedAt: Instant, createdAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "client_id")
val clientId: String?
Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
@SerialName(value = "display_name")
val displayName: String?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "inbox_id")
val inboxId: String
Link copied to clipboard
@SerialName(value = "pod_id")
val podId: String?
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant