UNPKG

@vectorize-io/vectorize-client

Version:
74 lines (62 loc) 1.73 kB
/* 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 { ZOOMADMINAuthConfig } from './ZOOMADMINAuthConfig'; import { ZOOMADMINAuthConfigFromJSON, ZOOMADMINAuthConfigFromJSONTyped, ZOOMADMINAuthConfigToJSON, ZOOMADMINAuthConfigToJSONTyped, } from './ZOOMADMINAuthConfig'; /** * * @export * @interface ZoomAdmin1 */ export interface ZoomAdmin1 { /** * * @type {ZOOMADMINAuthConfig} * @memberof ZoomAdmin1 */ config?: ZOOMADMINAuthConfig; } /** * Check if a given object implements the ZoomAdmin1 interface. */ export function instanceOfZoomAdmin1(value: object): value is ZoomAdmin1 { return true; } export function ZoomAdmin1FromJSON(json: any): ZoomAdmin1 { return ZoomAdmin1FromJSONTyped(json, false); } export function ZoomAdmin1FromJSONTyped(json: any, ignoreDiscriminator: boolean): ZoomAdmin1 { if (json == null) { return json; } return { 'config': json['config'] == null ? undefined : ZOOMADMINAuthConfigFromJSON(json['config']), }; } export function ZoomAdmin1ToJSON(json: any): ZoomAdmin1 { return ZoomAdmin1ToJSONTyped(json, false); } export function ZoomAdmin1ToJSONTyped(value?: ZoomAdmin1 | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'config': ZOOMADMINAuthConfigToJSON(value['config']), }; }