/** * 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 AITransformDto */ export interface AITransformDto { /** * * @type {string} * @memberof AITransformDto */ id: string; /** * * @type {string} * @memberof AITransformDto */ name?: string; /** * * @type {Array} * @memberof AITransformDto */ conditions?: Array; /** * * @type {Array} * @memberof AITransformDto */ instructions?: Array; /** * * @type {StructuredOutputSchema} * @memberof AITransformDto */ outputSchema?: StructuredOutputSchema | null; /** * * @type {Date} * @memberof AITransformDto */ createdAt: Date; } export declare function AITransformDtoFromJSON(json: any): AITransformDto; export declare function AITransformDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AITransformDto; export declare function AITransformDtoToJSON(value?: AITransformDto | null): any;