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.
118 lines (117 loc) • 3.65 kB
TypeScript
/**
* 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.
*/
/**
* Options for IMAP connection to external email inbox. Allows syncing emails via IMAP.
* @export
* @interface CreateConnectorImapConnectionOptions
*/
export interface CreateConnectorImapConnectionOptions {
/**
*
* @type {boolean}
* @memberof CreateConnectorImapConnectionOptions
*/
imapSsl?: boolean | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
imapUsername?: string | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
imapPassword?: string | null;
/**
* Optional folder to select during IMAP connection
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
selectFolder?: string | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
searchTerms?: string | null;
/**
* IMAP server port
* @type {number}
* @memberof CreateConnectorImapConnectionOptions
*/
imapPort?: number | null;
/**
* IMAP server host
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
imapHost: string;
/**
* IMAP server enabled
* @type {boolean}
* @memberof CreateConnectorImapConnectionOptions
*/
enabled?: boolean | null;
/**
*
* @type {boolean}
* @memberof CreateConnectorImapConnectionOptions
*/
startTls?: boolean | null;
/**
*
* @type {boolean}
* @memberof CreateConnectorImapConnectionOptions
*/
proxyEnabled?: boolean | null;
/**
*
* @type {number}
* @memberof CreateConnectorImapConnectionOptions
*/
proxyPort?: number | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
proxyHost?: string | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
localHostName?: string | null;
/**
* List of IMAP mechanisms
* @type {Array<string>}
* @memberof CreateConnectorImapConnectionOptions
*/
mechanisms?: Array<string> | null;
/**
*
* @type {string}
* @memberof CreateConnectorImapConnectionOptions
*/
sslTrust?: string | null;
/**
* List of SSL protocols
* @type {Array<string>}
* @memberof CreateConnectorImapConnectionOptions
*/
sslProtocols?: Array<string> | null;
}
export declare function CreateConnectorImapConnectionOptionsFromJSON(json: any): CreateConnectorImapConnectionOptions;
export declare function CreateConnectorImapConnectionOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateConnectorImapConnectionOptions;
export declare function CreateConnectorImapConnectionOptionsToJSON(value?: CreateConnectorImapConnectionOptions | null): any;