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.
122 lines (121 loc) • 3.17 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 ExportTransformerOptions
*/
export interface ExportTransformerOptions {
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
aiTransformId?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
aiMappingId?: string | null;
/**
*
* @type {boolean}
* @memberof ExportTransformerOptions
*/
flattenArrays: boolean;
/**
*
* @type {Date}
* @memberof ExportTransformerOptions
*/
since?: Date | null;
/**
*
* @type {Date}
* @memberof ExportTransformerOptions
*/
before?: Date | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
format: ExportTransformerOptionsFormatEnum;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
inboxId?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
phoneId?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
emailId?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
smsId?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
attachmentId?: string | null;
/**
*
* @type {boolean}
* @memberof ExportTransformerOptions
*/
includeMetaData: boolean;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
delimiter?: string | null;
/**
*
* @type {string}
* @memberof ExportTransformerOptions
*/
arraySeparator?: string | null;
/**
*
* @type {Array<string>}
* @memberof ExportTransformerOptions
*/
includeMetaDataColumns?: Array<string> | null;
}
/**
* @export
* @enum {string}
*/
export declare enum ExportTransformerOptionsFormatEnum {
CSV = "CSV",
EXCEL = "EXCEL",
XML = "XML",
JSON = "JSON"
}
export declare function ExportTransformerOptionsFromJSON(json: any): ExportTransformerOptions;
export declare function ExportTransformerOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportTransformerOptions;
export declare function ExportTransformerOptionsToJSON(value?: ExportTransformerOptions | null): any;