UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

21 lines 817 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtName, UdtIdentifier } from '../types/UnqualifiedDataTypes'; import { CorporateRegistrationScheme } from './CorporateRegistrationScheme'; type AllowedParams = { registrationName?: string | UdtName; companyID?: string | UdtIdentifier; corporateRegistrationScheme?: CorporateRegistrationScheme; }; /** * More info: http://www.datypic.com/sc/ubl21/e-cac_PartyLegalEntity.html */ declare class PartyLegalEntity extends GenericAggregateComponent { constructor(content: AllowedParams); /** * * @param value */ setCorporateRegistrationScheme(value: CorporateRegistrationScheme): void; } export { PartyLegalEntity, AllowedParams as PartyLegalEntityParams }; //# sourceMappingURL=PartyLegalEntity.d.ts.map