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.
84 lines (83 loc) • 2.3 kB
TypeScript
/**
* 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.
*/
/**
* Connector
* @export
* @interface ConnectorProjection
*/
export interface ConnectorProjection {
/**
*
* @type {string}
* @memberof ConnectorProjection
*/
id?: string;
/**
*
* @type {string}
* @memberof ConnectorProjection
*/
inboxId: string;
/**
*
* @type {string}
* @memberof ConnectorProjection
*/
userId: string;
/**
*
* @type {Date}
* @memberof ConnectorProjection
*/
createdAt: Date;
/**
*
* @type {boolean}
* @memberof ConnectorProjection
*/
syncEnabled: boolean;
/**
*
* @type {string}
* @memberof ConnectorProjection
*/
connectorType: ConnectorProjectionConnectorTypeEnum;
/**
*
* @type {string}
* @memberof ConnectorProjection
*/
syncScheduleType: ConnectorProjectionSyncScheduleTypeEnum;
/**
*
* @type {number}
* @memberof ConnectorProjection
*/
syncInterval?: number;
}
/**
* @export
* @enum {string}
*/
export declare enum ConnectorProjectionConnectorTypeEnum {
IMAP = "IMAP"
}
/**
* @export
* @enum {string}
*/
export declare enum ConnectorProjectionSyncScheduleTypeEnum {
INTERVAL = "INTERVAL"
}
export declare function ConnectorProjectionFromJSON(json: any): ConnectorProjection;
export declare function ConnectorProjectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorProjection;
export declare function ConnectorProjectionToJSON(value?: ConnectorProjection | null): any;