@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
21 lines • 814 B
TypeScript
import GenericAggregateComponent from './GenericAggregateComponent';
import { UdtIdentifier, UdtCode, UdtDate, UdtText } from '../types/UnqualifiedDataTypes';
import { PayeeFinancialAccount } from './PayeeFinancialAccount';
type AllowedParams = {
id?: string | UdtIdentifier;
paymentMeansCode: string | UdtCode;
paymentDueDate?: string | UdtDate;
paymentChannelCode?: string | UdtCode;
instructionID?: string | UdtIdentifier;
instructionNotes?: string[] | UdtText[];
paymentID?: string | UdtIdentifier;
payeeFinancialAccount: string | PayeeFinancialAccount;
};
/**
*
*/
declare class PaymentMeans extends GenericAggregateComponent {
constructor(content: AllowedParams);
}
export { PaymentMeans, AllowedParams as PaymentMeansParams };
//# sourceMappingURL=PaymentMeans.d.ts.map