@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
74 lines (62 loc) • 1.6 kB
text/typescript
/* 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 { ZOOMAuthConfig } from './ZOOMAuthConfig';
import {
ZOOMAuthConfigFromJSON,
ZOOMAuthConfigFromJSONTyped,
ZOOMAuthConfigToJSON,
ZOOMAuthConfigToJSONTyped,
} from './ZOOMAuthConfig';
/**
*
* @export
* @interface Zoom1
*/
export interface Zoom1 {
/**
*
* @type {ZOOMAuthConfig}
* @memberof Zoom1
*/
config?: ZOOMAuthConfig;
}
/**
* Check if a given object implements the Zoom1 interface.
*/
export function instanceOfZoom1(value: object): value is Zoom1 {
return true;
}
export function Zoom1FromJSON(json: any): Zoom1 {
return Zoom1FromJSONTyped(json, false);
}
export function Zoom1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Zoom1 {
if (json == null) {
return json;
}
return {
'config': json['config'] == null ? undefined : ZOOMAuthConfigFromJSON(json['config']),
};
}
export function Zoom1ToJSON(json: any): Zoom1 {
return Zoom1ToJSONTyped(json, false);
}
export function Zoom1ToJSONTyped(value?: Zoom1 | null, ignoreDiscriminator: boolean = false): any {
if (value == null) {
return value;
}
return {
'config': ZOOMAuthConfigToJSON(value['config']),
};
}