/** * 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 { Subtitle } from './'; /** * * @export * @interface EditorSubtitle */ export interface EditorSubtitle { /** * * @type {number} * @memberof EditorSubtitle */ file?: number; /** * * @type {number} * @memberof EditorSubtitle */ parent?: number; /** * * @type {string} * @memberof EditorSubtitle */ name?: string; /** * * @type {string} * @memberof EditorSubtitle */ format?: string; /** * * @type {Subtitle} * @memberof EditorSubtitle */ subtitle: Subtitle; } export declare function EditorSubtitleFromJSON(json: any): EditorSubtitle; export declare function EditorSubtitleFromJSONTyped(json: any, ignoreDiscriminator: boolean): EditorSubtitle; export declare function EditorSubtitleToJSON(value?: EditorSubtitle | null): any;