/** * 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 EditorSubtitleUpdate */ export interface EditorSubtitleUpdate { /** * * @type {number} * @memberof EditorSubtitleUpdate */ file?: number; /** * * @type {number} * @memberof EditorSubtitleUpdate */ parent?: number; /** * * @type {string} * @memberof EditorSubtitleUpdate */ name?: string; /** * * @type {string} * @memberof EditorSubtitleUpdate */ format?: string; /** * * @type {Subtitle} * @memberof EditorSubtitleUpdate */ subtitle: Subtitle; } export declare function EditorSubtitleUpdateFromJSON(json: any): EditorSubtitleUpdate; export declare function EditorSubtitleUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): EditorSubtitleUpdate; export declare function EditorSubtitleUpdateToJSON(value?: EditorSubtitleUpdate | null): any;