feat(connector): [Paybox] add paybox connector (#5575)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kiran Kumar
2024-08-14 20:01:22 +05:30
committed by GitHub
parent 8fa51b7b1c
commit e4f4fbafe6
17 changed files with 977 additions and 197 deletions

View File

@ -1434,7 +1434,10 @@ impl<'a> ConnectorAuthTypeAndMetadataValidation<'a> {
opennode::transformers::OpennodeAuthType::try_from(self.auth_type)?;
Ok(())
}
// api_enums::Connector::Paybox => todo!(), added for future usage
api_enums::Connector::Paybox => {
paybox::transformers::PayboxAuthType::try_from(self.auth_type)?;
Ok(())
}
api_enums::Connector::Payme => {
payme::transformers::PaymeAuthType::try_from(self.auth_type)?;
Ok(())