/** * 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 GetCollectionsGetCollectionsParametersParameter */ export interface GetCollectionsGetCollectionsParametersParameter { /** * Comma-separated list of fields from the collection to exclude from the response * @type {string} * @memberof GetCollectionsGetCollectionsParametersParameter */ excludeFields?: string; /** * Number of collections to fetch. Default: returns all collections. * * @type {number} * @memberof GetCollectionsGetCollectionsParametersParameter */ limit?: number; /** * Identifies the starting point to return collections when paginating. * @type {number} * @memberof GetCollectionsGetCollectionsParametersParameter */ offset?: number; } /** * Check if a given object implements the GetCollectionsGetCollectionsParametersParameter interface. */ export declare function instanceOfGetCollectionsGetCollectionsParametersParameter(value: object): value is GetCollectionsGetCollectionsParametersParameter; export declare function GetCollectionsGetCollectionsParametersParameterFromJSON(json: any): GetCollectionsGetCollectionsParametersParameter; export declare function GetCollectionsGetCollectionsParametersParameterFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCollectionsGetCollectionsParametersParameter; export declare function GetCollectionsGetCollectionsParametersParameterToJSON(json: any): GetCollectionsGetCollectionsParametersParameter; export declare function GetCollectionsGetCollectionsParametersParameterToJSONTyped(value?: GetCollectionsGetCollectionsParametersParameter | null, ignoreDiscriminator?: boolean): any;