UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.47 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 { ZOOMADMINAuthConfig } from './ZOOMADMINAuthConfig'; /** * * @export * @interface ZoomAdmin */ export interface ZoomAdmin { /** * Name of the connector * @type {string} * @memberof ZoomAdmin */ name: string; /** * Connector type (must be "ZOOM_ADMIN") * @type {string} * @memberof ZoomAdmin */ type: ZoomAdminTypeEnum; /** * * @type {ZOOMADMINAuthConfig} * @memberof ZoomAdmin */ config: ZOOMADMINAuthConfig; } /** * @export */ export declare const ZoomAdminTypeEnum: { readonly ZoomAdmin: "ZOOM_ADMIN"; }; export type ZoomAdminTypeEnum = typeof ZoomAdminTypeEnum[keyof typeof ZoomAdminTypeEnum]; /** * Check if a given object implements the ZoomAdmin interface. */ export declare function instanceOfZoomAdmin(value: object): value is ZoomAdmin; export declare function ZoomAdminFromJSON(json: any): ZoomAdmin; export declare function ZoomAdminFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZoomAdmin; export declare function ZoomAdminToJSON(json: any): ZoomAdmin; export declare function ZoomAdminToJSONTyped(value?: ZoomAdmin | null, ignoreDiscriminator?: boolean): any;