/** * 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 single item for a user's download list. * @export * @interface DownloadListItem */ export interface DownloadListItem { /** * The 'syn' identifier of a file entity. * @type {string} * @memberof DownloadListItem */ 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 DownloadListItem */ versionNumber?: number; } /** * Check if a given object implements the DownloadListItem interface. */ export declare function instanceOfDownloadListItem(value: object): value is DownloadListItem; export declare function DownloadListItemFromJSON(json: any): DownloadListItem; export declare function DownloadListItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListItem; export declare function DownloadListItemToJSON(json: any): DownloadListItem; export declare function DownloadListItemToJSONTyped(value?: DownloadListItem | null, ignoreDiscriminator?: boolean): any;