Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DomainIspPlacement

import type { DomainIspPlacement } from "https://aws-api.deno.dev/v0.3/services/sesv2.ts?docs=full";

An object that contains inbox placement data for email sent from one of your email domains to a specific email provider.

interface DomainIspPlacement {
InboxPercentage?: number | null;
InboxRawCount?: number | null;
IspName?: string | null;
SpamPercentage?: number | null;
SpamRawCount?: number | null;
}

§Properties

§
InboxPercentage?: number | null
[src]

The percentage of messages that were sent from the selected domain to the specified email provider that arrived in recipients' inboxes.

§
InboxRawCount?: number | null
[src]

The total number of messages that were sent from the selected domain to the specified email provider that arrived in recipients' inboxes.

§
IspName?: string | null
[src]

The name of the email provider that the inbox placement data applies to.

§
SpamPercentage?: number | null
[src]

The percentage of messages that were sent from the selected domain to the specified email provider that arrived in recipients' spam or junk mail folders.

§
SpamRawCount?: number | null
[src]

The total number of messages that were sent from the selected domain to the specified email provider that arrived in recipients' spam or junk mail folders.