/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request to get statistics about the files currently on the user's download list. * @export * @interface FilesStatisticsRequest */ export interface FilesStatisticsRequest { /** * Required. For this type the value should be: 'org.sagebionetworks.repo.model.download.FilesStatisticsRequest' * @type {string} * @memberof FilesStatisticsRequest */ concreteType: FilesStatisticsRequestConcreteTypeEnum; } /** * @export */ export declare const FilesStatisticsRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_FilesStatisticsRequest: "org.sagebionetworks.repo.model.download.FilesStatisticsRequest"; }; export type FilesStatisticsRequestConcreteTypeEnum = typeof FilesStatisticsRequestConcreteTypeEnum[keyof typeof FilesStatisticsRequestConcreteTypeEnum]; /** * Check if a given object implements the FilesStatisticsRequest interface. */ export declare function instanceOfFilesStatisticsRequest(value: object): value is FilesStatisticsRequest; export declare function FilesStatisticsRequestFromJSON(json: any): FilesStatisticsRequest; export declare function FilesStatisticsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilesStatisticsRequest; export declare function FilesStatisticsRequestToJSON(json: any): FilesStatisticsRequest; export declare function FilesStatisticsRequestToJSONTyped(value?: FilesStatisticsRequest | null, ignoreDiscriminator?: boolean): any;