@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
15 lines (14 loc) • 385 B
TypeScript
/**
* @export
* @class StreamMetadata
*/
export declare class StreamMetadata {
/**
* Language of the media contained in the stream. If the value is not set, then no metadata tag is set for the media stream.
* @type {string}
* @memberof StreamMetadata
*/
language?: string;
constructor(obj?: Partial<StreamMetadata>);
}
export default StreamMetadata;