@@ -121,6 +121,7 @@ pub enum RoutableConnectors {
121
121
// Payeezy, As psync and rsync are not supported by this connector, it is added as template code for future usage
122
122
Paybox ,
123
123
Payme ,
124
+ // Payload,
124
125
Payone ,
125
126
Paypal ,
126
127
Paystack ,
@@ -283,6 +284,7 @@ pub enum Connector {
283
284
Opennode ,
284
285
Paybox ,
285
286
// Payeezy, As psync and rsync are not supported by this connector, it is added as template code for future usage
287
+ // Payload,
286
288
Payme ,
287
289
Payone ,
288
290
Paypal ,
@@ -457,6 +459,7 @@ impl Connector {
457
459
| Self :: Nuvei
458
460
| Self :: Opennode
459
461
| Self :: Paybox
462
+ // | Self::Payload
460
463
| Self :: Payme
461
464
| Self :: Payone
462
465
| Self :: Paypal
@@ -618,6 +621,7 @@ impl From<RoutableConnectors> for Connector {
618
621
RoutableConnectors :: Nuvei => Self :: Nuvei ,
619
622
RoutableConnectors :: Opennode => Self :: Opennode ,
620
623
RoutableConnectors :: Paybox => Self :: Paybox ,
624
+ // RoutableConnectors::Paybox => Self::Payload,
621
625
RoutableConnectors :: Payme => Self :: Payme ,
622
626
RoutableConnectors :: Payone => Self :: Payone ,
623
627
RoutableConnectors :: Paypal => Self :: Paypal ,
@@ -738,6 +742,7 @@ impl TryFrom<Connector> for RoutableConnectors {
738
742
Connector :: Nuvei => Ok ( Self :: Nuvei ) ,
739
743
Connector :: Opennode => Ok ( Self :: Opennode ) ,
740
744
Connector :: Paybox => Ok ( Self :: Paybox ) ,
745
+ // Connector::Paybox => Ok(Self::Payload),
741
746
Connector :: Payme => Ok ( Self :: Payme ) ,
742
747
Connector :: Payone => Ok ( Self :: Payone ) ,
743
748
Connector :: Paypal => Ok ( Self :: Paypal ) ,
0 commit comments