UNPKG

mailslurp-client

Version:

Official client for MailSlurp Email and SMS API. Create email addresses and phone numbers in Javascript without a mail server. Send and receive real emails in applications or tests.

112 lines (111 loc) 3.52 kB
/** * MailSlurp API * MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. 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. */ /** * Options for updating an inbox replier * @export * @interface UpdateInboxReplierOptions */ export interface UpdateInboxReplierOptions { /** * Inbox ID to attach replier to * @type {string} * @memberof UpdateInboxReplierOptions */ inboxId: string; /** * Name for replier * @type {string} * @memberof UpdateInboxReplierOptions */ name?: string | null; /** * Field to match against to trigger inbox replier for inbound email * @type {string} * @memberof UpdateInboxReplierOptions */ field: UpdateInboxReplierOptionsFieldEnum; /** * String or wildcard style match for field specified when evaluating reply rules * @type {string} * @memberof UpdateInboxReplierOptions */ match: string; /** * Reply-to email address when sending replying * @type {string} * @memberof UpdateInboxReplierOptions */ replyTo?: string | null; /** * Subject override when replying to email * @type {string} * @memberof UpdateInboxReplierOptions */ subject?: string | null; /** * Send email from address * @type {string} * @memberof UpdateInboxReplierOptions */ from?: string | null; /** * Email reply charset * @type {string} * @memberof UpdateInboxReplierOptions */ charset?: string | null; /** * Send HTML email * @type {boolean} * @memberof UpdateInboxReplierOptions */ isHTML?: boolean | null; /** * Ignore sender replyTo when responding. Send directly to the sender if enabled. * @type {boolean} * @memberof UpdateInboxReplierOptions */ ignoreReplyTo?: boolean | null; /** * Email body for reply * @type {string} * @memberof UpdateInboxReplierOptions */ body?: string | null; /** * ID of template to use when sending a reply * @type {string} * @memberof UpdateInboxReplierOptions */ templateId?: string | null; /** * Template variable values * @type {{ [key: string]: object; }} * @memberof UpdateInboxReplierOptions */ templateVariables?: { [key: string]: object; } | null; } /** * @export * @enum {string} */ export declare enum UpdateInboxReplierOptionsFieldEnum { RECIPIENTS = "RECIPIENTS", SENDER = "SENDER", SUBJECT = "SUBJECT", ATTACHMENTS = "ATTACHMENTS" } export declare function UpdateInboxReplierOptionsFromJSON(json: any): UpdateInboxReplierOptions; export declare function UpdateInboxReplierOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateInboxReplierOptions; export declare function UpdateInboxReplierOptionsToJSON(value?: UpdateInboxReplierOptions | null): any;