@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
19 lines • 709 B
TypeScript
import GenericAggregateComponent from './GenericAggregateComponent';
import { UdtIdentifier, UdtDate, UdtTime } from '../types/UnqualifiedDataTypes';
import { UdtAmount } from '../types/UnqualifiedDataTypes/UdtAmount';
type AllowedParams = {
id: string | UdtIdentifier;
paidAmount: string | UdtAmount;
receivedDate: string | UdtDate;
paidDate: string | UdtDate;
paidTime: string | UdtTime;
instructionID: string | UdtIdentifier;
};
/**
*
*/
declare class PaymentType extends GenericAggregateComponent {
constructor(content: AllowedParams);
}
export { PaymentType, AllowedParams as PaymentTypeParams, PaymentType as PrepaidPayment };
//# sourceMappingURL=PaymentTypeGroup.d.ts.map