/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.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 IndexOptionsRequest */ export interface IndexOptionsRequest { /** * * @type {string} * @memberof IndexOptionsRequest */ name?: string; /** * * @type {boolean} * @memberof IndexOptionsRequest */ background?: boolean; /** * * @type {string} * @memberof IndexOptionsRequest */ defaultLanguage?: string; /** * * @type {number} * @memberof IndexOptionsRequest */ textVersion?: number; /** * * @type {string} * @memberof IndexOptionsRequest */ expireAfter?: string; /** * * @type {boolean} * @memberof IndexOptionsRequest */ unique?: boolean; /** * * @type {number} * @memberof IndexOptionsRequest */ max?: number; /** * * @type {number} * @memberof IndexOptionsRequest */ min?: number; } export declare function IndexOptionsRequestFromJSON(json: any): IndexOptionsRequest; export declare function IndexOptionsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexOptionsRequest; export declare function IndexOptionsRequestToJSON(value?: IndexOptionsRequest | null): any;