/** * ChatGPT Function * Backend for Azure OpenAI integrations * * The version of the OpenAPI document: v1.0.0 * * * 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 EmailContentResponse */ export interface EmailContentResponse { /** * * @type {boolean} * @memberof EmailContentResponse */ success?: boolean; /** * * @type {string} * @memberof EmailContentResponse */ message?: string; /** * * @type {string} * @memberof EmailContentResponse */ subject?: string; /** * * @type {string} * @memberof EmailContentResponse */ body?: string; /** * * @type {string} * @memberof EmailContentResponse */ companyName?: string; /** * * @type {string} * @memberof EmailContentResponse */ contactId?: string; /** * * @type {string} * @memberof EmailContentResponse */ salesforceData?: string; /** * * @type {string} * @memberof EmailContentResponse */ externalResearch?: string; } /** * Check if a given object implements the EmailContentResponse interface. */ export declare function instanceOfEmailContentResponse(value: object): value is EmailContentResponse; export declare function EmailContentResponseFromJSON(json: any): EmailContentResponse; export declare function EmailContentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailContentResponse; export declare function EmailContentResponseToJSON(json: any): EmailContentResponse; export declare function EmailContentResponseToJSONTyped(value?: EmailContentResponse | null, ignoreDiscriminator?: boolean): any;