/** * 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. */ /** * The results of a job to compute the estimate of number and size of files from a AddToDownloadListRequest request. * @export * @interface AddToDownloadListStatsResponse */ export interface AddToDownloadListStatsResponse { /** * * @type {string} * @memberof AddToDownloadListStatsResponse */ concreteType: AddToDownloadListStatsResponseConcreteTypeEnum; /** * The number of files that a AddToDownloadListRequest request would attempt to add to the download list. Note that this might exceed the maximum number of files that can be added to the download list. * @type {number} * @memberof AddToDownloadListStatsResponse */ fileCount?: number; /** * The total size that a AddToDownloadListRequest would attempt to add to the download list. * @type {number} * @memberof AddToDownloadListStatsResponse */ fileSize?: number; /** * When true the actual count and size might be greater than reported. * @type {boolean} * @memberof AddToDownloadListStatsResponse */ isFileCountAndSizeEstimate?: boolean; } /** * @export */ export declare const AddToDownloadListStatsResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_AddToDownloadListStatsResponse: "org.sagebionetworks.repo.model.download.AddToDownloadListStatsResponse"; }; export type AddToDownloadListStatsResponseConcreteTypeEnum = typeof AddToDownloadListStatsResponseConcreteTypeEnum[keyof typeof AddToDownloadListStatsResponseConcreteTypeEnum]; /** * Check if a given object implements the AddToDownloadListStatsResponse interface. */ export declare function instanceOfAddToDownloadListStatsResponse(value: object): value is AddToDownloadListStatsResponse; export declare function AddToDownloadListStatsResponseFromJSON(json: any): AddToDownloadListStatsResponse; export declare function AddToDownloadListStatsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddToDownloadListStatsResponse; export declare function AddToDownloadListStatsResponseToJSON(json: any): AddToDownloadListStatsResponse; export declare function AddToDownloadListStatsResponseToJSONTyped(value?: AddToDownloadListStatsResponse | null, ignoreDiscriminator?: boolean): any;