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.
76 lines (75 loc) • 2.42 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.
*/
/**
* Access details for inbox using IMAP
* @export
* @interface ImapAccessDetails
*/
export interface ImapAccessDetails {
/**
* Secure TLS IMAP server host domain
* @type {string}
* @memberof ImapAccessDetails
*/
secureImapServerHost: string;
/**
* Secure TLS IMAP server host port
* @type {number}
* @memberof ImapAccessDetails
*/
secureImapServerPort: number;
/**
* Secure TLS IMAP username for login
* @type {string}
* @memberof ImapAccessDetails
*/
secureImapUsername: string;
/**
* Secure TLS IMAP password for login
* @type {string}
* @memberof ImapAccessDetails
*/
secureImapPassword: string;
/**
* IMAP server host domain
* @type {string}
* @memberof ImapAccessDetails
*/
imapServerHost: string;
/**
* IMAP server host port
* @type {number}
* @memberof ImapAccessDetails
*/
imapServerPort: number;
/**
* IMAP username for login
* @type {string}
* @memberof ImapAccessDetails
*/
imapUsername: string;
/**
* IMAP password for login
* @type {string}
* @memberof ImapAccessDetails
*/
imapPassword: string;
/**
* IMAP mailbox to SELECT
* @type {string}
* @memberof ImapAccessDetails
*/
imapMailbox: string;
}
export declare function ImapAccessDetailsFromJSON(json: any): ImapAccessDetails;
export declare function ImapAccessDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImapAccessDetails;
export declare function ImapAccessDetailsToJSON(value?: ImapAccessDetails | null): any;