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.
124 lines (123 loc) • 3.27 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.
*/
/**
*
* @export
* @interface ConnectorSmtpConnectionDto
*/
export interface ConnectorSmtpConnectionDto {
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
connectorId: string;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
smtpHost: string;
/**
*
* @type {number}
* @memberof ConnectorSmtpConnectionDto
*/
smtpPort?: number | null;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
smtpUsername?: string | null;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
smtpPassword?: string | null;
/**
*
* @type {boolean}
* @memberof ConnectorSmtpConnectionDto
*/
smtpSsl?: boolean | null;
/**
*
* @type {boolean}
* @memberof ConnectorSmtpConnectionDto
*/
startTls?: boolean | null;
/**
*
* @type {Array<string>}
* @memberof ConnectorSmtpConnectionDto
*/
smtpMechanisms?: Array<string> | null;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
localHostName?: string | null;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
proxyHost?: string | null;
/**
*
* @type {number}
* @memberof ConnectorSmtpConnectionDto
*/
proxyPort?: number | null;
/**
*
* @type {boolean}
* @memberof ConnectorSmtpConnectionDto
*/
proxyEnabled?: boolean | null;
/**
*
* @type {boolean}
* @memberof ConnectorSmtpConnectionDto
*/
enabled?: boolean | null;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
sslTrust?: string | null;
/**
*
* @type {Array<string>}
* @memberof ConnectorSmtpConnectionDto
*/
sslProtocols?: Array<string> | null;
/**
*
* @type {Date}
* @memberof ConnectorSmtpConnectionDto
*/
createdAt: Date;
/**
*
* @type {string}
* @memberof ConnectorSmtpConnectionDto
*/
id: string;
}
export declare function ConnectorSmtpConnectionDtoFromJSON(json: any): ConnectorSmtpConnectionDto;
export declare function ConnectorSmtpConnectionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorSmtpConnectionDto;
export declare function ConnectorSmtpConnectionDtoToJSON(value?: ConnectorSmtpConnectionDto | null): any;