feat(connector): add template code for stripebilling (#7228)

Co-authored-by: Nishanth Challa <nishanth.challa@Nishanth-Challa-C0WGKCFHLF.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
CHALLA NISHANTH BABU
2025-03-03 15:04:51 +05:30
committed by GitHub
parent 44eec7a994
commit af8778e009
24 changed files with 1321 additions and 5 deletions

View File

@ -123,6 +123,7 @@ pub enum RoutableConnectors {
Square,
Stax,
Stripe,
//Stripebilling,
// Taxjar,
Trustpay,
// Thunes
@ -263,6 +264,7 @@ pub enum Connector {
Square,
Stax,
Stripe,
// Stripebilling,
Taxjar,
Threedsecureio,
//Thunes,
@ -410,6 +412,7 @@ impl Connector {
| Self::Shift4
| Self::Square
| Self::Stax
// | Self::Stripebilling
| Self::Taxjar
// | Self::Thunes
| Self::Trustpay
@ -546,6 +549,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Square => Self::Square,
RoutableConnectors::Stax => Self::Stax,
RoutableConnectors::Stripe => Self::Stripe,
// RoutableConnectors::Stripebilling => Self::Stripebilling,
RoutableConnectors::Trustpay => Self::Trustpay,
RoutableConnectors::Tsys => Self::Tsys,
RoutableConnectors::Volt => Self::Volt,