@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 440 B
TypeScript
/**
* @export
* @class XmlNamespace
*/
export declare class XmlNamespace {
/**
* Name of the XML Namespace reference (required)
* @type {string}
* @memberof XmlNamespace
*/
prefix?: string;
/**
* Source of the XML Namespace reference (required)
* @type {string}
* @memberof XmlNamespace
*/
uri?: string;
constructor(obj?: Partial<XmlNamespace>);
}
export default XmlNamespace;