@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 482 B
TypeScript
/**
* @export
* @class Label
*/
export declare class Label {
/**
* Identifier of the label.
* @type {number}
* @memberof Label
*/
id?: number;
/**
* Specifies the language of the label.
* @type {string}
* @memberof Label
*/
lang?: string;
/**
* Content of the label. (required)
* @type {string}
* @memberof Label
*/
value?: string;
constructor(obj?: Partial<Label>);
}
export default Label;