/** * 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. */ import { StructuredOutputSchema } from './'; /** * * @export * @interface InvokeTransformerOptions */ export interface InvokeTransformerOptions { /** * * @type {string} * @memberof InvokeTransformerOptions */ aiTransformId?: string | null; /** * * @type {string} * @memberof InvokeTransformerOptions */ aiTransformMappingId?: string | null; /** * * @type {string} * @memberof InvokeTransformerOptions */ rawInput?: string | null; /** * * @type {string} * @memberof InvokeTransformerOptions */ entityId?: string | null; /** * * @type {string} * @memberof InvokeTransformerOptions */ entityType?: InvokeTransformerOptionsEntityTypeEnum; /** * * @type {Array} * @memberof InvokeTransformerOptions */ rawConditions?: Array | null; /** * * @type {Array} * @memberof InvokeTransformerOptions */ rawInstructions?: Array | null; /** * * @type {StructuredOutputSchema} * @memberof InvokeTransformerOptions */ rawOutputSchema?: StructuredOutputSchema | null; /** * * @type {string} * @memberof InvokeTransformerOptions */ contentSelector?: InvokeTransformerOptionsContentSelectorEnum; /** * * @type {boolean} * @memberof InvokeTransformerOptions */ saveResults?: boolean | null; } /** * @export * @enum {string} */ export declare enum InvokeTransformerOptionsEntityTypeEnum { EMAIL = "EMAIL", SMS = "SMS", ATTACHMENT = "ATTACHMENT" } /** * @export * @enum {string} */ export declare enum InvokeTransformerOptionsContentSelectorEnum { RAW = "RAW", BODY = "BODY", BODY_ATTACHMENTS = "BODY_ATTACHMENTS" } export declare function InvokeTransformerOptionsFromJSON(json: any): InvokeTransformerOptions; export declare function InvokeTransformerOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvokeTransformerOptions; export declare function InvokeTransformerOptionsToJSON(value?: InvokeTransformerOptions | null): any;