UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.33 kB
/** * 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 Zoom */ export interface Zoom { /** * Name of the connector * @type {string} * @memberof Zoom */ name: string; /** * Connector type (must be "ZOOM") * @type {string} * @memberof Zoom */ type: ZoomTypeEnum; /** * * @type {ZOOMAuthConfig} * @memberof Zoom */ config: ZOOMAuthConfig; } /** * @export */ export declare const ZoomTypeEnum: { readonly Zoom: "ZOOM"; }; export type ZoomTypeEnum = typeof ZoomTypeEnum[keyof typeof ZoomTypeEnum]; /** * Check if a given object implements the Zoom interface. */ export declare function instanceOfZoom(value: object): value is Zoom; export declare function ZoomFromJSON(json: any): Zoom; export declare function ZoomFromJSONTyped(json: any, ignoreDiscriminator: boolean): Zoom; export declare function ZoomToJSON(json: any): Zoom; export declare function ZoomToJSONTyped(value?: Zoom | null, ignoreDiscriminator?: boolean): any;