/** * 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. */ import type { FileHandleAssociation } from './FileHandleAssociation'; /** * User's list of files they wish to download. * @export * @interface DownloadList */ export interface DownloadList { /** * The ID of the user that owns this download list. * @type {string} * @memberof DownloadList */ ownerId?: string; /** * The date-time when the list was last updated. * @type {string} * @memberof DownloadList */ updatedOn?: string; /** * The UUID assigned to a user's download list upon each change to the list. * @type {string} * @memberof DownloadList */ etag?: string; /** * The list of files to download. * @type {Array} * @memberof DownloadList */ filesToDownload?: Array; } /** * Check if a given object implements the DownloadList interface. */ export declare function instanceOfDownloadList(value: object): value is DownloadList; export declare function DownloadListFromJSON(json: any): DownloadList; export declare function DownloadListFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadList; export declare function DownloadListToJSON(json: any): DownloadList; export declare function DownloadListToJSONTyped(value?: DownloadList | null, ignoreDiscriminator?: boolean): any;