UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

17 lines 693 B
import { CctNumericType, AllowedAttributes } from './essentials/cct/CctNumeric'; export type UdtRateAttributes = AllowedAttributes; /** * udt:NumericType * Numeric information that is assigned or is determined by calculation, counting, or sequencing. * It does not require a unit of quantity or unit of measure. * * Namespace: urn:oasis:names:specification:ubl:schema:xsd:UnqualifiedDataTypes-2 * Schema document: common/UBL-UnqualifiedDataTypes-2.1.xsd * * See More: http://www.datypic.com/sc/ubl21/t-udt_RateType.html * */ export declare class UdtRate extends CctNumericType { constructor(content: string, attributes: UdtRateAttributes); } //# sourceMappingURL=UdtRate.d.ts.map