@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
29 lines (28 loc) • 656 B
TypeScript
import Id3Tag from './Id3Tag';
import Id3TagType from './Id3TagType';
/**
* @export
* @class PlaintextId3Tag
*/
export declare class PlaintextId3Tag extends Id3Tag {
/**
* Discriminator property for Id3Tag
* @type {string}
* @memberof PlaintextId3Tag
*/
readonly type: Id3TagType;
/**
* Plain Text Data (required)
* @type {string}
* @memberof PlaintextId3Tag
*/
text?: string;
/**
* 4 character long Frame ID (required)
* @type {string}
* @memberof PlaintextId3Tag
*/
frameId?: string;
constructor(obj?: Partial<PlaintextId3Tag>);
}
export default PlaintextId3Tag;