feat(connector): [Adyen] implement Japanese convenience stores (#1819)

Co-authored-by: Sk Sakil Mostak <skmahim71@gmail.com>
Co-authored-by: Pa1NarK <69745008+pixincreate@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2023-08-09 21:21:45 +05:30
committed by GitHub
parent c1e56266df
commit a6fdf6dc34
14 changed files with 277 additions and 8 deletions

View File

@ -975,6 +975,12 @@ pub enum PaymentMethodType {
Vipps,
Walley,
WeChatPay,
SevenEleven,
Lawson,
MiniStop,
FamilyMart,
Seicomart,
PayEasy,
}
#[derive(

View File

@ -1611,6 +1611,12 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::Givex => Self::GiftCard,
PaymentMethodType::Oxxo => Self::Voucher,
PaymentMethodType::OpenBankingUk => Self::BankRedirect,
PaymentMethodType::SevenEleven => Self::Voucher,
PaymentMethodType::Lawson => Self::Voucher,
PaymentMethodType::MiniStop => Self::Voucher,
PaymentMethodType::FamilyMart => Self::Voucher,
PaymentMethodType::Seicomart => Self::Voucher,
PaymentMethodType::PayEasy => Self::Voucher,
}
}
}