UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

23 lines (22 loc) 708 B
import DashRepresentation from './DashRepresentation'; import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator'; /** * @export * @class DashVttRepresentation */ export declare class DashVttRepresentation extends DashRepresentation { /** * Discriminator property for DashRepresentation * @type {string} * @memberof DashVttRepresentation */ readonly typeDiscriminator: DashRepresentationTypeDiscriminator; /** * URL of the referenced VTT file (required) * @type {string} * @memberof DashVttRepresentation */ vttUrl?: string; constructor(obj?: Partial<DashVttRepresentation>); } export default DashVttRepresentation;