/** * 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 MongoFindRequest */ export interface MongoFindRequest { /** * * @type {{ [key: string]: string; }} * @memberof MongoFindRequest */ filter: { [key: string]: string; }; /** * * @type {{ [key: string]: string; }} * @memberof MongoFindRequest */ sort: { [key: string]: string; }; /** * * @type {{ [key: string]: string; }} * @memberof MongoFindRequest */ projection: { [key: string]: string; }; } export declare function MongoFindRequestFromJSON(json: any): MongoFindRequest; export declare function MongoFindRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MongoFindRequest; export declare function MongoFindRequestToJSON(value?: MongoFindRequest | null): any;