/** * 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 ClientSecret */ export interface ClientSecret { /** * * @type {string} * @memberof ClientSecret */ value?: string | null; /** * * @type {number} * @memberof ClientSecret */ expiresAt?: number | null; } /** * Check if a given object implements the ClientSecret interface. */ export declare function instanceOfClientSecret(value: object): value is ClientSecret; export declare function ClientSecretFromJSON(json: any): ClientSecret; export declare function ClientSecretFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientSecret; export declare function ClientSecretToJSON(json: any): ClientSecret; export declare function ClientSecretToJSONTyped(value?: ClientSecret | null, ignoreDiscriminator?: boolean): any;