/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CurationInclude */ export interface CurationInclude { /** * document id that should be included * @type {string} * @memberof CurationInclude */ id: string; /** * position number where document should be included in the search results * @type {number} * @memberof CurationInclude */ position: number; } /** * Check if a given object implements the CurationInclude interface. */ export declare function instanceOfCurationInclude(value: object): value is CurationInclude; export declare function CurationIncludeFromJSON(json: any): CurationInclude; export declare function CurationIncludeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurationInclude; export declare function CurationIncludeToJSON(json: any): CurationInclude; export declare function CurationIncludeToJSONTyped(value?: CurationInclude | null, ignoreDiscriminator?: boolean): any;