UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

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