/** * 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 FollowUpEmailResponse */ export interface FollowUpEmailResponse { /** * * @type {boolean} * @memberof FollowUpEmailResponse */ success?: boolean; /** * * @type {string} * @memberof FollowUpEmailResponse */ message?: string; /** * * @type {string} * @memberof FollowUpEmailResponse */ result?: string; /** * * @type {string} * @memberof FollowUpEmailResponse */ companyName?: string; /** * * @type {string} * @memberof FollowUpEmailResponse */ contactId?: string; } /** * Check if a given object implements the FollowUpEmailResponse interface. */ export declare function instanceOfFollowUpEmailResponse(value: object): value is FollowUpEmailResponse; export declare function FollowUpEmailResponseFromJSON(json: any): FollowUpEmailResponse; export declare function FollowUpEmailResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FollowUpEmailResponse; export declare function FollowUpEmailResponseToJSON(json: any): FollowUpEmailResponse; export declare function FollowUpEmailResponseToJSONTyped(value?: FollowUpEmailResponse | null, ignoreDiscriminator?: boolean): any;