/** * 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'; /** * Request to make a copy of an existing FileHandle. * @export * @interface FileHandleCopyRequest */ export interface FileHandleCopyRequest { /** * * @type {FileHandleAssociation} * @memberof FileHandleCopyRequest */ originalFile?: FileHandleAssociation; /** * Set to override the original file name. * @type {string} * @memberof FileHandleCopyRequest */ newFileName?: string; /** * Set to override the original content type. * @type {string} * @memberof FileHandleCopyRequest */ newContentType?: string; } /** * Check if a given object implements the FileHandleCopyRequest interface. */ export declare function instanceOfFileHandleCopyRequest(value: object): value is FileHandleCopyRequest; export declare function FileHandleCopyRequestFromJSON(json: any): FileHandleCopyRequest; export declare function FileHandleCopyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileHandleCopyRequest; export declare function FileHandleCopyRequestToJSON(json: any): FileHandleCopyRequest; export declare function FileHandleCopyRequestToJSONTyped(value?: FileHandleCopyRequest | null, ignoreDiscriminator?: boolean): any;