/** * 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 SubclipUpdate */ export interface SubclipUpdate { /** * * @type {AssetMiniReference} * @memberof SubclipUpdate */ asset: AssetMiniReference; /** * * @type {AssetMiniReference} * @memberof SubclipUpdate */ rendered?: AssetMiniReference; /** * * @type {boolean} * @memberof SubclipUpdate */ shared?: boolean; /** * * @type {string} * @memberof SubclipUpdate */ name?: string; /** * * @type {number} * @memberof SubclipUpdate */ tIn: number; /** * * @type {number} * @memberof SubclipUpdate */ tOut: number; /** * * @type {MediaRootMiniReference} * @memberof SubclipUpdate */ root: MediaRootMiniReference; } export declare function SubclipUpdateFromJSON(json: any): SubclipUpdate; export declare function SubclipUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubclipUpdate; export declare function SubclipUpdateToJSON(value?: SubclipUpdate | null): any;