/** * 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 SimpleResponseDto */ export interface SimpleResponseDto { /** * * @type {string} * @memberof SimpleResponseDto */ answer?: string; } /** * Check if a given object implements the SimpleResponseDto interface. */ export declare function instanceOfSimpleResponseDto(value: object): value is SimpleResponseDto; export declare function SimpleResponseDtoFromJSON(json: any): SimpleResponseDto; export declare function SimpleResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleResponseDto; export declare function SimpleResponseDtoToJSON(json: any): SimpleResponseDto; export declare function SimpleResponseDtoToJSONTyped(value?: SimpleResponseDto | null, ignoreDiscriminator?: boolean): any;