File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export interface AccountInternalInstrument extends BaseInternalInstrument {
28
28
external_id : string ;
29
29
method : string ;
30
30
method_type : string ;
31
- iban ?: string ;
31
+ account_number ?: string ;
32
32
issuer ?: string ;
33
33
}
34
34
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export function getInstruments(): PaymentInstrument[] {
45
45
bigpayToken : '31415' ,
46
46
provider : 'braintree' ,
47
47
trustedShippingAddress : false ,
48
- iban : 'ABCABC' ,
48
+ accountNumber : 'ABCABC' ,
49
49
issuer : 'TEST1' ,
50
50
defaultInstrument : false ,
51
51
type : 'account' ,
@@ -56,7 +56,7 @@ export function getInstruments(): PaymentInstrument[] {
56
56
bigpayToken : '52346' ,
57
57
provider : 'ideal' ,
58
58
trustedShippingAddress : false ,
59
- iban : 'DEFDEF' ,
59
+ accountNumber : 'DEFDEF' ,
60
60
issuer : 'TEST2' ,
61
61
defaultInstrument : false ,
62
62
type : 'bank' ,
@@ -157,7 +157,7 @@ export function getInternalInstrumentsResponseBody(): InternalInstrumentsRespons
157
157
bigpay_token : '31415' ,
158
158
provider : 'braintree' ,
159
159
trusted_shipping_address : false ,
160
- iban : 'ABCABC' ,
160
+ account_number : 'ABCABC' ,
161
161
issuer : 'TEST1' ,
162
162
default_instrument : false ,
163
163
method_type : 'account' ,
@@ -168,7 +168,7 @@ export function getInternalInstrumentsResponseBody(): InternalInstrumentsRespons
168
168
bigpay_token : '52346' ,
169
169
provider : 'ideal' ,
170
170
trusted_shipping_address : false ,
171
- iban : 'DEFDEF' ,
171
+ account_number : 'DEFDEF' ,
172
172
issuer : 'TEST2' ,
173
173
default_instrument : false ,
174
174
method_type : 'bank' ,
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export interface CardInstrument extends BaseInstrument {
23
23
export interface AccountInstrument extends BaseInstrument {
24
24
externalId : string ;
25
25
method : string ;
26
- iban ?: string ;
26
+ accountNumber ?: string ;
27
27
issuer ?: string ;
28
28
type : string ;
29
29
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export function mapToAccountInstrument(instrument: AccountInternalInstrument): A
10
10
trustedShippingAddress : instrument . trusted_shipping_address ,
11
11
method : instrument . method ,
12
12
type : instrument . method_type ,
13
- iban : instrument . iban ,
13
+ accountNumber : instrument . account_number ,
14
14
issuer : instrument . issuer ,
15
15
} ;
16
16
}
You can’t perform that action at this time.
0 commit comments