/** * 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 Property */ export interface Property { /** * * @type {string} * @memberof Property */ type?: string | null; /** * * @type {string} * @memberof Property */ description?: string | null; } /** * Check if a given object implements the Property interface. */ export declare function instanceOfProperty(value: object): value is Property; export declare function PropertyFromJSON(json: any): Property; export declare function PropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): Property; export declare function PropertyToJSON(json: any): Property; export declare function PropertyToJSONTyped(value?: Property | null, ignoreDiscriminator?: boolean): any;