/** * 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 To */ export interface To { /** * * @type {string} * @memberof To */ address?: string | null; /** * * @type {string} * @memberof To */ name?: string | null; /** * * @type {string} * @memberof To */ original?: string | null; } /** * Check if a given object implements the To interface. */ export declare function instanceOfTo(value: object): value is To; export declare function ToFromJSON(json: any): To; export declare function ToFromJSONTyped(json: any, ignoreDiscriminator: boolean): To; export declare function ToToJSON(json: any): To; export declare function ToToJSONTyped(value?: To | null, ignoreDiscriminator?: boolean): any;