@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.2 kB
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.
*/
/**
* Authentication configuration for Zoom
* @export
* @interface ZOOMAuthConfig
*/
export interface ZOOMAuthConfig {
/**
* Connect Zoom to Vectorize. Note: Authorizing a new Zoom account will disconnect any existing Zoom connectors using the same account.. Example: Authorize
* @type {string}
* @memberof ZOOMAuthConfig
*/
refreshToken: string;
}
/**
* Check if a given object implements the ZOOMAuthConfig interface.
*/
export declare function instanceOfZOOMAuthConfig(value: object): value is ZOOMAuthConfig;
export declare function ZOOMAuthConfigFromJSON(json: any): ZOOMAuthConfig;
export declare function ZOOMAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ZOOMAuthConfig;
export declare function ZOOMAuthConfigToJSON(json: any): ZOOMAuthConfig;
export declare function ZOOMAuthConfigToJSONTyped(value?: ZOOMAuthConfig | null, ignoreDiscriminator?: boolean): any;