/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { MediaFileBundleMiniReference, SubclipReference } from './'; /** * * @export * @interface SubclipClipboardEntryUpdate */ export interface SubclipClipboardEntryUpdate { /** * * @type {SubclipReference} * @memberof SubclipClipboardEntryUpdate */ cut: SubclipReference; /** * * @type {MediaFileBundleMiniReference} * @memberof SubclipClipboardEntryUpdate */ bundle?: MediaFileBundleMiniReference; } export declare function SubclipClipboardEntryUpdateFromJSON(json: any): SubclipClipboardEntryUpdate; export declare function SubclipClipboardEntryUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubclipClipboardEntryUpdate; export declare function SubclipClipboardEntryUpdateToJSON(value?: SubclipClipboardEntryUpdate | null): any;