@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 952 B
TypeScript
/**
* 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 type { ZOOMAuthConfig } from './ZOOMAuthConfig';
/**
*
* @export
* @interface Zoom1
*/
export interface Zoom1 {
/**
*
* @type {ZOOMAuthConfig}
* @memberof Zoom1
*/
config?: ZOOMAuthConfig;
}
/**
* Check if a given object implements the Zoom1 interface.
*/
export declare function instanceOfZoom1(value: object): value is Zoom1;
export declare function Zoom1FromJSON(json: any): Zoom1;
export declare function Zoom1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Zoom1;
export declare function Zoom1ToJSON(json: any): Zoom1;
export declare function Zoom1ToJSONTyped(value?: Zoom1 | null, ignoreDiscriminator?: boolean): any;