File tree Expand file tree Collapse file tree 4 files changed +43
-0
lines changed
hyperswitch_connectors/src/connectors Expand file tree Collapse file tree 4 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -1408,6 +1408,14 @@ api_secret="Shared Secret"
1408
1408
[deutschebank ]
1409
1409
[[deutschebank .bank_debit ]]
1410
1410
payment_method_type = " sepa"
1411
+ [[deutschebank .credit ]]
1412
+ payment_method_type = " Visa"
1413
+ [[deutschebank .credit ]]
1414
+ payment_method_type = " Mastercard"
1415
+ [[deutschebank .debit ]]
1416
+ payment_method_type = " Visa"
1417
+ [[deutschebank .debit ]]
1418
+ payment_method_type = " Mastercard"
1411
1419
[deutschebank .connector_auth .SignatureKey ]
1412
1420
api_key =" Client ID"
1413
1421
key1 =" Merchant ID"
Original file line number Diff line number Diff line change @@ -1143,6 +1143,14 @@ type="Text"
1143
1143
[deutschebank ]
1144
1144
[[deutschebank .bank_debit ]]
1145
1145
payment_method_type = " sepa"
1146
+ [[deutschebank .credit ]]
1147
+ payment_method_type = " Visa"
1148
+ [[deutschebank .credit ]]
1149
+ payment_method_type = " Mastercard"
1150
+ [[deutschebank .debit ]]
1151
+ payment_method_type = " Visa"
1152
+ [[deutschebank .debit ]]
1153
+ payment_method_type = " Mastercard"
1146
1154
[deutschebank .connector_auth .SignatureKey ]
1147
1155
api_key =" Client ID"
1148
1156
key1 =" Merchant ID"
Original file line number Diff line number Diff line change @@ -1357,6 +1357,14 @@ api_secret="Shared Secret"
1357
1357
[deutschebank ]
1358
1358
[[deutschebank .bank_debit ]]
1359
1359
payment_method_type = " sepa"
1360
+ [[deutschebank .credit ]]
1361
+ payment_method_type = " Visa"
1362
+ [[deutschebank .credit ]]
1363
+ payment_method_type = " Mastercard"
1364
+ [[deutschebank .debit ]]
1365
+ payment_method_type = " Visa"
1366
+ [[deutschebank .debit ]]
1367
+ payment_method_type = " Mastercard"
1360
1368
[deutschebank .connector_auth .SignatureKey ]
1361
1369
api_key =" Client ID"
1362
1370
key1 =" Merchant ID"
Original file line number Diff line number Diff line change @@ -1016,6 +1016,25 @@ lazy_static! {
1016
1016
}
1017
1017
) ;
1018
1018
1019
+ deutschebank_supported_payment_methods. add(
1020
+ enums:: PaymentMethod :: Card ,
1021
+ enums:: PaymentMethodType :: Debit ,
1022
+ PaymentMethodDetails {
1023
+ mandates: enums:: FeatureStatus :: NotSupported ,
1024
+ refunds: enums:: FeatureStatus :: Supported ,
1025
+ supported_capture_methods: supported_capture_methods. clone( ) ,
1026
+ specific_features: Some (
1027
+ api_models:: feature_matrix:: PaymentMethodSpecificFeatures :: Card ( {
1028
+ api_models:: feature_matrix:: CardSpecificFeatures {
1029
+ three_ds: common_enums:: FeatureStatus :: Supported ,
1030
+ non_three_ds: common_enums:: FeatureStatus :: NotSupported ,
1031
+ supported_card_networks: supported_card_network. clone( ) ,
1032
+ }
1033
+ } ) ,
1034
+ ) ,
1035
+ }
1036
+ ) ;
1037
+
1019
1038
deutschebank_supported_payment_methods
1020
1039
} ;
1021
1040
You can’t perform that action at this time.
0 commit comments