/* tslint:disable */ /* eslint-disable */ /** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; import type { AZUREBLOBAuthConfig } from './AZUREBLOBAuthConfig'; import { AZUREBLOBAuthConfigFromJSON, AZUREBLOBAuthConfigFromJSONTyped, AZUREBLOBAuthConfigToJSON, AZUREBLOBAuthConfigToJSONTyped, } from './AZUREBLOBAuthConfig'; /** * * @export * @interface AzureBlob1 */ export interface AzureBlob1 { /** * * @type {AZUREBLOBAuthConfig} * @memberof AzureBlob1 */ config?: AZUREBLOBAuthConfig; } /** * Check if a given object implements the AzureBlob1 interface. */ export function instanceOfAzureBlob1(value: object): value is AzureBlob1 { return true; } export function AzureBlob1FromJSON(json: any): AzureBlob1 { return AzureBlob1FromJSONTyped(json, false); } export function AzureBlob1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AzureBlob1 { if (json == null) { return json; } return { 'config': json['config'] == null ? undefined : AZUREBLOBAuthConfigFromJSON(json['config']), }; } export function AzureBlob1ToJSON(json: any): AzureBlob1 { return AzureBlob1ToJSONTyped(json, false); } export function AzureBlob1ToJSONTyped(value?: AzureBlob1 | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'config': AZUREBLOBAuthConfigToJSON(value['config']), }; }