/** * 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'; /** * Describes an association of a FileHandle with another object. * @export * @interface FileDownloadRecord */ export interface FileDownloadRecord { /** * The ID of the user that downloaded the file. * @type {string} * @memberof FileDownloadRecord */ userId?: string; /** * * @type {FileHandleAssociation} * @memberof FileDownloadRecord */ downloadedFile?: FileHandleAssociation; } /** * Check if a given object implements the FileDownloadRecord interface. */ export declare function instanceOfFileDownloadRecord(value: object): value is FileDownloadRecord; export declare function FileDownloadRecordFromJSON(json: any): FileDownloadRecord; export declare function FileDownloadRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileDownloadRecord; export declare function FileDownloadRecordToJSON(json: any): FileDownloadRecord; export declare function FileDownloadRecordToJSONTyped(value?: FileDownloadRecord | null, ignoreDiscriminator?: boolean): any;