feat(connector): [Breadpay]Add support for Breadpay connector (#8676)

Co-authored-by: Chikke Srujan <chikke.srujan@Chikke-Srujan-V9P7D4K9V0.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
chikke srujan
2025-07-24 07:35:52 -07:00
committed by GitHub
parent 5c78abd77e
commit 0d9750cd24
36 changed files with 602 additions and 161 deletions

View File

@ -56,6 +56,7 @@ pub enum PayLaterType {
PayBright,
Walley,
Atome,
Breadpay,
}
#[derive(

View File

@ -32,6 +32,7 @@ impl From<enums::PayLaterType> for global_enums::PaymentMethodType {
enums::PayLaterType::PayBright => Self::PayBright,
enums::PayLaterType::Walley => Self::Walley,
enums::PayLaterType::Atome => Self::Atome,
enums::PayLaterType::Breadpay => Self::Breadpay,
}
}
}

View File

@ -103,6 +103,7 @@ impl IntoDirValue for (global_enums::PaymentMethodType, global_enums::PaymentMet
global_enums::PaymentMethodType::PayBright => Ok(dirval!(PayLaterType = PayBright)),
global_enums::PaymentMethodType::Walley => Ok(dirval!(PayLaterType = Walley)),
global_enums::PaymentMethodType::Breadpay => Ok(dirval!(PayLaterType = Breadpay)),
global_enums::PaymentMethodType::Przelewy24 => {
Ok(dirval!(BankRedirectType = Przelewy24))
}