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