/** * 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. */ /** * A Storage Report CSV download request. * @export * @interface DownloadStorageReportRequest */ export interface DownloadStorageReportRequest { /** * * @type {string} * @memberof DownloadStorageReportRequest */ concreteType: DownloadStorageReportRequestConcreteTypeEnum; /** * The type of storage report to generate. The default is "all_projects" * @type {string} * @memberof DownloadStorageReportRequest */ reportType?: DownloadStorageReportRequestReportTypeEnum; } /** * @export */ export declare const DownloadStorageReportRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_report_DownloadStorageReportRequest: "org.sagebionetworks.repo.model.report.DownloadStorageReportRequest"; }; export type DownloadStorageReportRequestConcreteTypeEnum = typeof DownloadStorageReportRequestConcreteTypeEnum[keyof typeof DownloadStorageReportRequestConcreteTypeEnum]; /** * @export */ export declare const DownloadStorageReportRequestReportTypeEnum: { readonly ALL_PROJECTS: "ALL_PROJECTS"; }; export type DownloadStorageReportRequestReportTypeEnum = typeof DownloadStorageReportRequestReportTypeEnum[keyof typeof DownloadStorageReportRequestReportTypeEnum]; /** * Check if a given object implements the DownloadStorageReportRequest interface. */ export declare function instanceOfDownloadStorageReportRequest(value: object): value is DownloadStorageReportRequest; export declare function DownloadStorageReportRequestFromJSON(json: any): DownloadStorageReportRequest; export declare function DownloadStorageReportRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadStorageReportRequest; export declare function DownloadStorageReportRequestToJSON(json: any): DownloadStorageReportRequest; export declare function DownloadStorageReportRequestToJSONTyped(value?: DownloadStorageReportRequest | null, ignoreDiscriminator?: boolean): any;