feat(connector): [VOLT] Implement payment flows and bank redirect payment method (#2582)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Prasunna Soppa <70575890+prasunna09@users.noreply.github.com>
This commit is contained in:
Swangi Kumari
2023-10-30 13:13:28 +05:30
committed by GitHub
parent 8125ea1991
commit 23bd364a78
94 changed files with 2972 additions and 148 deletions

View File

@ -1502,6 +1502,10 @@ pub(crate) fn validate_auth_and_metadata_type(
tsys::transformers::TsysAuthType::try_from(val)?;
Ok(())
}
api_enums::Connector::Volt => {
volt::transformers::VoltAuthType::try_from(val)?;
Ok(())
}
api_enums::Connector::Wise => {
wise::transformers::WiseAuthType::try_from(val)?;
Ok(())