We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e23c4e + e1f1742 commit a757bceCopy full SHA for a757bce
src/Connect.ts
@@ -125,6 +125,11 @@ export class Connect {
125
scheme: payment.scheme,
126
};
127
128
+ if (payment.debited_account_id) {
129
+ attributes.debited_account_id = payment.debited_account_id;
130
+ attributes.debited_account_type = payment.debited_account_type;
131
+ }
132
+
133
const meta: IMeta = {
134
psu_name: payment.customer_full_name,
135
psu_form: payment.customer_form,
src/interfaces/connect/ConnectInterface.ts
@@ -80,6 +80,8 @@ export interface IAttributes {
80
beneficiary?: IBeneficiary;
81
end_to_end_id?: string;
82
scheme?: string;
83
+ debited_account_id?: string;
84
+ debited_account_type?: string;
85
}
86
87
export interface IMeta {
0 commit comments