interface Blocklist {
    createdAt?: Date;
    custom: boolean;
    domainId: string;
    email: string;
    endsAt?: Date;
    id: string;
    reason: string;
    type: BlocklistType;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time of the blocklist creation.

custom: boolean

True if this blocklist was created manually. False for an automatic Transactional Email blocklist.

domainId: string

Domain ID linked to the blocklist.

email: string

Email blocked by the blocklist.

endsAt?: Date

Date and time when the blocklist ends. Empty if the blocklist has no end.

id: string

ID of the blocklist.

reason: string

Reason to block this email.

Type of block for this email.

updatedAt?: Date

Date and time of the blocklist's last update.