/** * 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 { AssetMiniReference, MediaFileBundleMiniReference } from './'; /** * * @export * @interface SubtitleClipboardEntry */ export interface SubtitleClipboardEntry { /** * * @type {number} * @memberof SubtitleClipboardEntry */ id: number; /** * * @type {AssetMiniReference} * @memberof SubtitleClipboardEntry */ subtitle: AssetMiniReference; /** * * @type {MediaFileBundleMiniReference} * @memberof SubtitleClipboardEntry */ bundle?: MediaFileBundleMiniReference; /** * * @type {Date} * @memberof SubtitleClipboardEntry */ readonly date: Date; } export declare function SubtitleClipboardEntryFromJSON(json: any): SubtitleClipboardEntry; export declare function SubtitleClipboardEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubtitleClipboardEntry; export declare function SubtitleClipboardEntryToJSON(value?: SubtitleClipboardEntry | null): any;