/** * MailSlurp API * MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository * * The version of the OpenAPI document: 6.5.2 * Contact: contact@mailslurp.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TenantReputationStatusRowDto */ export interface TenantReputationStatusRowDto { /** * * @type {string} * @memberof TenantReputationStatusRowDto */ accountRegion: TenantReputationStatusRowDtoAccountRegionEnum; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ tenantName: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ tenantArn?: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ sendingStatus?: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ reputationStatus?: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ reputationPolicy?: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ customerManagedSendingStatus?: string; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ awsManagedSendingStatus?: string; /** * * @type {number} * @memberof TenantReputationStatusRowDto */ findingCount: number; /** * * @type {number} * @memberof TenantReputationStatusRowDto */ bounceRate?: number; /** * * @type {number} * @memberof TenantReputationStatusRowDto */ complaintRate?: number; /** * * @type {number} * @memberof TenantReputationStatusRowDto */ sendLastHour?: number; /** * * @type {Date} * @memberof TenantReputationStatusRowDto */ metricTimestamp?: Date; /** * * @type {string} * @memberof TenantReputationStatusRowDto */ error?: string; } /** * @export * @enum {string} */ export declare enum TenantReputationStatusRowDtoAccountRegionEnum { US_WEST_2_ACCOUNT_STAGING = "US_WEST_2_ACCOUNT_STAGING", US_EAST_1_ACCOUNT_STAGING = "US_EAST_1_ACCOUNT_STAGING", EU_WEST_1_ACCOUNT_STAGING = "EU_WEST_1_ACCOUNT_STAGING", US_WEST_2_ACCOUNT_SES_1 = "US_WEST_2_ACCOUNT_SES_1", EU_WEST_1_ACCOUNT_SES_1 = "EU_WEST_1_ACCOUNT_SES_1", US_WEST_2_ACCOUNT_SES_2 = "US_WEST_2_ACCOUNT_SES_2", EU_WEST_1_ACCOUNT_SES_2 = "EU_WEST_1_ACCOUNT_SES_2", US_WEST_2_ACCOUNT_BYTEWISE = "US_WEST_2_ACCOUNT_BYTEWISE", EU_WEST_1_ACCOUNT_BYTEWISE = "EU_WEST_1_ACCOUNT_BYTEWISE", US_WEST_2 = "US_WEST_2", EU_WEST_1 = "EU_WEST_1", US_EAST_1 = "US_EAST_1" } export declare function TenantReputationStatusRowDtoFromJSON(json: any): TenantReputationStatusRowDto; export declare function TenantReputationStatusRowDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantReputationStatusRowDto; export declare function TenantReputationStatusRowDtoToJSON(value?: TenantReputationStatusRowDto | null): any;