/** * 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 Notion connector * @export * @interface NOTIONConfig */ export interface NOTIONConfig { /** * Select Notion Resources * @type {string} * @memberof NOTIONConfig */ selectResources: string; /** * Database IDs * @type {string} * @memberof NOTIONConfig */ databaseIds: string; /** * Database Names * @type {string} * @memberof NOTIONConfig */ databaseNames: string; /** * Page IDs * @type {string} * @memberof NOTIONConfig */ pageIds: string; /** * Page Names * @type {string} * @memberof NOTIONConfig */ pageNames: string; } /** * Check if a given object implements the NOTIONConfig interface. */ export declare function instanceOfNOTIONConfig(value: object): value is NOTIONConfig; export declare function NOTIONConfigFromJSON(json: any): NOTIONConfig; export declare function NOTIONConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): NOTIONConfig; export declare function NOTIONConfigToJSON(json: any): NOTIONConfig; export declare function NOTIONConfigToJSONTyped(value?: NOTIONConfig | null, ignoreDiscriminator?: boolean): any;