/** * 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, MediaRootMiniReference } from './'; /** * * @export * @interface SubclipPartialUpdate */ export interface SubclipPartialUpdate { /** * * @type {AssetMiniReference} * @memberof SubclipPartialUpdate */ asset?: AssetMiniReference; /** * * @type {AssetMiniReference} * @memberof SubclipPartialUpdate */ rendered?: AssetMiniReference; /** * * @type {boolean} * @memberof SubclipPartialUpdate */ shared?: boolean; /** * * @type {string} * @memberof SubclipPartialUpdate */ name?: string; /** * * @type {number} * @memberof SubclipPartialUpdate */ tIn?: number; /** * * @type {number} * @memberof SubclipPartialUpdate */ tOut?: number; /** * * @type {MediaRootMiniReference} * @memberof SubclipPartialUpdate */ root: MediaRootMiniReference; } export declare function SubclipPartialUpdateFromJSON(json: any): SubclipPartialUpdate; export declare function SubclipPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubclipPartialUpdate; export declare function SubclipPartialUpdateToJSON(value?: SubclipPartialUpdate | null): any;