/** * 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. */ /** * How entities are selected for a deliverability test * @export * @interface DeliverabilitySelectorOptions */ export interface DeliverabilitySelectorOptions { /** * Selection mode * @type {string} * @memberof DeliverabilitySelectorOptions */ type: DeliverabilitySelectorOptionsTypeEnum; /** * Wildcard pattern for PATTERN selection. Supports '*' and '?' wildcards. If no wildcard is present the value is treated as a case-insensitive contains match. * @type {string} * @memberof DeliverabilitySelectorOptions */ pattern?: string | null; /** * Optional phone-country filter for PHONE scope selection (e.g. ALL phones in US). Must be null for INBOX scope. * @type {string} * @memberof DeliverabilitySelectorOptions */ phoneCountry?: DeliverabilitySelectorOptionsPhoneCountryEnum; /** * Explicit entity IDs for EXPLICIT selection * @type {Array} * @memberof DeliverabilitySelectorOptions */ entityIds?: Array | null; /** * Optional entity IDs to exclude from the resolved selection (applies after ALL/PATTERN/EXPLICIT selection). * @type {Array} * @memberof DeliverabilitySelectorOptions */ excludeEntityIds?: Array | null; } /** * @export * @enum {string} */ export declare enum DeliverabilitySelectorOptionsTypeEnum { ALL = "ALL", PATTERN = "PATTERN", EXPLICIT = "EXPLICIT" } /** * @export * @enum {string} */ export declare enum DeliverabilitySelectorOptionsPhoneCountryEnum { US = "US", GB = "GB", AU = "AU", CA = "CA", EE = "EE", HK = "HK", PL = "PL", PT = "PT", NL = "NL", IL = "IL", FI = "FI", SE = "SE" } export declare function DeliverabilitySelectorOptionsFromJSON(json: any): DeliverabilitySelectorOptions; export declare function DeliverabilitySelectorOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeliverabilitySelectorOptions; export declare function DeliverabilitySelectorOptionsToJSON(value?: DeliverabilitySelectorOptions | null): any;