/** * 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. */ /** * Summary of files included in a download order. * @export * @interface DownloadOrderSummary */ export interface DownloadOrderSummary { /** * The ID of this order. * @type {string} * @memberof DownloadOrderSummary */ orderId?: string; /** * The ID of the user that created this order. * @type {string} * @memberof DownloadOrderSummary */ createdBy?: string; /** * The date-time when the order was created. * @type {string} * @memberof DownloadOrderSummary */ createdOn?: string; /** * The name of the file containing this order. * @type {string} * @memberof DownloadOrderSummary */ zipFileName?: string; /** * The total size of all files in this order in bytes (uncompressed). * @type {number} * @memberof DownloadOrderSummary */ totalSizeBytes?: number; /** * The total number of files in this download order. * @type {number} * @memberof DownloadOrderSummary */ totalNumberOfFiles?: number; } /** * Check if a given object implements the DownloadOrderSummary interface. */ export declare function instanceOfDownloadOrderSummary(value: object): value is DownloadOrderSummary; export declare function DownloadOrderSummaryFromJSON(json: any): DownloadOrderSummary; export declare function DownloadOrderSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadOrderSummary; export declare function DownloadOrderSummaryToJSON(json: any): DownloadOrderSummary; export declare function DownloadOrderSummaryToJSONTyped(value?: DownloadOrderSummary | null, ignoreDiscriminator?: boolean): any;