/** * 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 single item on a user's download list. * @export * @interface DownloadListItemResult */ export interface DownloadListItemResult { /** * The name of the file. * @type {string} * @memberof DownloadListItemResult */ fileName?: string; /** * The date-time when this file was added to the user's download list. * @type {string} * @memberof DownloadListItemResult */ addedOn?: string; /** * The ID of the project that contains this file. * @type {string} * @memberof DownloadListItemResult */ projectId?: string; /** * The name of the project that contains this file. * @type {string} * @memberof DownloadListItemResult */ projectName?: string; /** * The ID of the user that created this file. * @type {string} * @memberof DownloadListItemResult */ createdBy?: string; /** * The date-time when this file was created. * @type {string} * @memberof DownloadListItemResult */ createdOn?: string; /** * The size of the file in bytes. * @type {number} * @memberof DownloadListItemResult */ fileSizeBytes?: number; /** * Only files that are managed by Synapse storage are eligible for packaging into a zip file. If true, then the file is eligible for packaging into a zip file. * @type {boolean} * @memberof DownloadListItemResult */ isEligibleForPackaging?: boolean; /** * The ID of the file handle associated with this file. * @type {string} * @memberof DownloadListItemResult */ fileHandleId?: string; /** * The 'syn' identifier of a file entity. * @type {string} * @memberof DownloadListItemResult */ fileEntityId?: string; /** * When included, indicates that a specific version of a files was added to the user's download list. When excluded, the current version was added. * @type {number} * @memberof DownloadListItemResult */ versionNumber?: number; } /** * Check if a given object implements the DownloadListItemResult interface. */ export declare function instanceOfDownloadListItemResult(value: object): value is DownloadListItemResult; export declare function DownloadListItemResultFromJSON(json: any): DownloadListItemResult; export declare function DownloadListItemResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListItemResult; export declare function DownloadListItemResultToJSON(json: any): DownloadListItemResult; export declare function DownloadListItemResultToJSONTyped(value?: DownloadListItemResult | null, ignoreDiscriminator?: boolean): any;