/** * 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 SubclipClipboardEntry */ export interface SubclipClipboardEntry { /** * * @type {number} * @memberof SubclipClipboardEntry */ id: number; /** * * @type {SubclipReference} * @memberof SubclipClipboardEntry */ cut: SubclipReference; /** * * @type {MediaFileBundleMiniReference} * @memberof SubclipClipboardEntry */ bundle?: MediaFileBundleMiniReference; /** * * @type {Date} * @memberof SubclipClipboardEntry */ readonly date: Date; } export declare function SubclipClipboardEntryFromJSON(json: any): SubclipClipboardEntry; export declare function SubclipClipboardEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubclipClipboardEntry; export declare function SubclipClipboardEntryToJSON(value?: SubclipClipboardEntry | null): any;