@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.3 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.
*/
/**
* Configuration for Confluence connector
* @export
* @interface CONFLUENCEConfig
*/
export interface CONFLUENCEConfig {
/**
* Spaces. Example: Spaces to include (name, key or id)
* @type {Array<string>}
* @memberof CONFLUENCEConfig
*/
spaces: Array<string>;
/**
* Root Parents. Example: Enter root parent pages
* @type {Array<string>}
* @memberof CONFLUENCEConfig
*/
rootParents?: Array<string>;
}
/**
* Check if a given object implements the CONFLUENCEConfig interface.
*/
export declare function instanceOfCONFLUENCEConfig(value: object): value is CONFLUENCEConfig;
export declare function CONFLUENCEConfigFromJSON(json: any): CONFLUENCEConfig;
export declare function CONFLUENCEConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CONFLUENCEConfig;
export declare function CONFLUENCEConfigToJSON(json: any): CONFLUENCEConfig;
export declare function CONFLUENCEConfigToJSONTyped(value?: CONFLUENCEConfig | null, ignoreDiscriminator?: boolean): any;