UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 797 B
import DashRepresentation from './DashRepresentation'; /** * @export * @class DashMuxingRepresentation */ export declare class DashMuxingRepresentation extends DashRepresentation { /** * UUID of an encoding (required) * @type {string} * @memberof DashMuxingRepresentation */ encodingId?: string; /** * UUID of a muxing (required) * @type {string} * @memberof DashMuxingRepresentation */ muxingId?: string; /** * Used to signal a dependency with another representation. The representation may belong to a different adaptation set * @type {string} * @memberof DashMuxingRepresentation */ dependencyId?: string; constructor(obj?: Partial<DashMuxingRepresentation>); } export default DashMuxingRepresentation;