/** * 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 FileInformation */ export interface FileInformation { /** * * @type {string} * @memberof FileInformation */ id: string; /** * * @type {string} * @memberof FileInformation */ filename: string; /** * * @type {number} * @memberof FileInformation */ length: number; /** * * @type {number} * @memberof FileInformation */ chunkSize: number; /** * * @type {Date} * @memberof FileInformation */ uploadDate: Date; /** * * @type {{ [key: string]: string; }} * @memberof FileInformation */ metadata: { [key: string]: string; }; } export declare function FileInformationFromJSON(json: any): FileInformation; export declare function FileInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileInformation; export declare function FileInformationToJSON(value?: FileInformation | null): any;