@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
16 lines • 616 B
TypeScript
import GenericAggregateComponent from './GenericAggregateComponent';
import { UdtIdentifier } from '../types/UnqualifiedDataTypes';
import { FinancialInstitutionBranch } from './FinancialInstitutionBranch';
type AllowedParams = {
id: string | UdtIdentifier;
financialInstitutioBranch?: FinancialInstitutionBranch;
};
declare class PayeeFinancialAccount extends GenericAggregateComponent {
/**
*
* @param content
*/
constructor(content: AllowedParams);
}
export { PayeeFinancialAccount, AllowedParams as PayeeFinancialAccountParams };
//# sourceMappingURL=PayeeFinancialAccount.d.ts.map