UpdateEmailMaskInput

data class UpdateEmailMaskInput(val emailMaskId: String, val metadata: Map<String, String>? = null, val expiresAt: Date? = null)

Input object containing the properties needed to update an email mask.

Constructors

Link copied to clipboard
constructor(emailMaskId: String, metadata: Map<String, String>? = null, expiresAt: Date? = null)

Properties

Link copied to clipboard

String The identifier of the email mask address to be updated.

Link copied to clipboard
val expiresAt: Date? = null

Optional expiration date for the email mask. If expiresAt is a zero date, the expiry date is removed.

Link copied to clipboard
val metadata: Map<String, String>? = null

Optional metadata to associate with the email mask. If the empty map is provided, all existing metadata will be removed.