@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
18 lines • 622 B
TypeScript
import { CctTextType, AllowedAttributes } from './essentials/cct/CctText';
export type UdtNameAttributes = AllowedAttributes;
/**
* udt:NameType
* A character string that constitutes the distinctive designation of a person, place, thing or concept.
*
* Namespace: urn:oasis:names:specification:ubl:schema:xsd:UnqualifiedDataTypes-2
* Schema document: common/UBL-UnqualifiedDataTypes-2.1.xsd
*
*/
export declare class UdtName extends CctTextType {
/**
* @param content
* @param attributes
*/
constructor(content: string, attributes?: UdtNameAttributes);
}
//# sourceMappingURL=UdtName.d.ts.map