feat(connector): [Adyen] Add support for gift cards balance (#1672)

This commit is contained in:
Sangamesh Kulkarni
2023-08-03 16:36:26 +05:30
committed by GitHub
parent 2dec2ca50b
commit c4796ffdb7
16 changed files with 373 additions and 44 deletions

View File

@ -897,6 +897,7 @@ pub enum PaymentMethodType {
Eps,
Evoucher,
Giropay,
Givex,
GooglePay,
GoPay,
Gcash,

View File

@ -1605,6 +1605,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::RedCompra => Self::Voucher,
PaymentMethodType::RedPagos => Self::Voucher,
PaymentMethodType::Cashapp => Self::Wallet,
PaymentMethodType::Givex => Self::GiftCard,
}
}
}