/** * 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 AzureBlobStorageCredentials */ export interface AzureBlobStorageCredentials { /** * * @type {string} * @memberof AzureBlobStorageCredentials */ sasToken?: string; /** * * @type {string} * @memberof AzureBlobStorageCredentials */ blobUrl?: string; /** * * @type {{ [key: string]: object; }} * @memberof AzureBlobStorageCredentials */ additionalProperties?: { [key: string]: object; }; } /** * Check if a given object implements the AzureBlobStorageCredentials interface. */ export declare function instanceOfAzureBlobStorageCredentials(value: object): value is AzureBlobStorageCredentials; export declare function AzureBlobStorageCredentialsFromJSON(json: any): AzureBlobStorageCredentials; export declare function AzureBlobStorageCredentialsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AzureBlobStorageCredentials; export declare function AzureBlobStorageCredentialsToJSON(json: any): AzureBlobStorageCredentials; export declare function AzureBlobStorageCredentialsToJSONTyped(value?: AzureBlobStorageCredentials | null, ignoreDiscriminator?: boolean): any;