DeleteDraftEmailMessagesInput

data class DeleteDraftEmailMessagesInput(val ids: List<String>, val emailAddressId: String, val emailMaskId: String? = null)

Input object containing an email address identifier and a list of draft email message ids to be deleted.

Constructors

Link copied to clipboard
constructor(ids: List<String>, emailAddressId: String, emailMaskId: String? = null)

Properties

Link copied to clipboard

String The id of the email address to which the drafts belong.

Link copied to clipboard
val emailMaskId: String? = null

String? The identifier of the email mask associated with the draft email messages, if any. In order to delete a draft email message that is associated with an email mask, the emailMaskId must be provided and match the email mask associated with the draft email message. If the draft email message is not associated with an email mask, this property should be omitted.]

Link copied to clipboard

List The ids of the draft email messages to be deleted.