/** *

Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.

*/ export interface _SendDataPoint { /** *

Time of the data point.

*/ Timestamp?: Date | string | number; /** *

Number of emails that have been sent.

*/ DeliveryAttempts?: number; /** *

Number of emails that have bounced.

*/ Bounces?: number; /** *

Number of unwanted emails that were rejected by recipients.

*/ Complaints?: number; /** *

Number of emails rejected by Amazon SES.

*/ Rejects?: number; } export interface _UnmarshalledSendDataPoint extends _SendDataPoint { /** *

Time of the data point.

*/ Timestamp?: Date; }