@@ -16,6 +16,7 @@ const successfulNo3DSCardDetails = {
16
16
card_exp_year : "50" ,
17
17
card_holder_name : "joseph Doe" ,
18
18
card_cvc : "999" ,
19
+ nick_name : "Bank1" ,
19
20
} ;
20
21
21
22
const successfulThreeDSTestCardDetails = {
@@ -24,13 +25,23 @@ const successfulThreeDSTestCardDetails = {
24
25
card_exp_year : "50" ,
25
26
card_holder_name : "morino" ,
26
27
card_cvc : "999" ,
28
+ nick_name : "Bank1" ,
27
29
} ;
28
30
29
31
const PaymentMethodCardDetails = {
30
32
card_number : "4111111145551142" ,
31
33
card_exp_month : "03" ,
32
34
card_exp_year : "30" ,
33
35
card_holder_name : "Joseph Doe" ,
36
+ nick_name : "Bank1" ,
37
+ } ;
38
+
39
+ const cardDetailsWithoutNickName = {
40
+ card_number : "4111111111111111" ,
41
+ card_exp_month : "08" ,
42
+ card_exp_year : "50" ,
43
+ card_holder_name : "joseph Doe" ,
44
+ card_cvc : "999" ,
34
45
} ;
35
46
36
47
const singleUseMandateData = {
@@ -919,6 +930,17 @@ export const connectorDetails = {
919
930
customer_acceptance : customerAcceptance ,
920
931
} ,
921
932
} ) ,
933
+ SaveCardWithoutCardNickName : getCustomExchange ( {
934
+ Request : {
935
+ payment_method : "card" ,
936
+ payment_method_type : "debit" ,
937
+ payment_method_data : {
938
+ card : cardDetailsWithoutNickName ,
939
+ } ,
940
+ setup_future_usage : "off_session" ,
941
+ customer_acceptance : customerAcceptance ,
942
+ } ,
943
+ } ) ,
922
944
PaymentMethod : {
923
945
Request : {
924
946
payment_method : "card" ,
0 commit comments