/** * 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. */ /** * Authentication configuration for Zoom Admin * @export * @interface ZOOMADMINAuthConfig */ export interface ZOOMADMINAuthConfig { /** * Connect Admin Zoom to Vectorize. Note: Authorizing a new Zoom Admin account will disconnect any existing Zoom Admin connectors using the same account.. Example: Authorize * @type {string} * @memberof ZOOMADMINAuthConfig */ refreshToken: string; } /** * Check if a given object implements the ZOOMADMINAuthConfig interface. */ export declare function instanceOfZOOMADMINAuthConfig(value: object): value is ZOOMADMINAuthConfig; export declare function ZOOMADMINAuthConfigFromJSON(json: any): ZOOMADMINAuthConfig; export declare function ZOOMADMINAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZOOMADMINAuthConfig; export declare function ZOOMADMINAuthConfigToJSON(json: any): ZOOMADMINAuthConfig; export declare function ZOOMADMINAuthConfigToJSONTyped(value?: ZOOMADMINAuthConfig | null, ignoreDiscriminator?: boolean): any;