/** * 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 From */ export interface From { /** * * @type {string} * @memberof From */ address?: string | null; /** * * @type {string} * @memberof From */ name?: string | null; /** * * @type {string} * @memberof From */ original?: string | null; } /** * Check if a given object implements the From interface. */ export declare function instanceOfFrom(value: object): value is From; export declare function FromFromJSON(json: any): From; export declare function FromFromJSONTyped(json: any, ignoreDiscriminator: boolean): From; export declare function FromToJSON(json: any): From; export declare function FromToJSONTyped(value?: From | null, ignoreDiscriminator?: boolean): any;