feat(connector): add authorize, capture, void, psync, refund, rsync for Forte connector (#955)

Co-authored-by: Arjun Karthik <m.arjunkarthik@gmail.com>
Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
Prasunna Soppa
2023-05-04 19:22:28 +05:30
committed by GitHub
parent c888635166
commit f0464bc4f5
23 changed files with 998 additions and 238 deletions

View File

@ -253,9 +253,9 @@ pub enum ConnectorError {
FailedToObtainCertificateKey,
#[error("This step has not been implemented for: {0}")]
NotImplemented(String),
#[error("{payment_method} is not supported by {connector}")]
#[error("{message} is not supported by {connector}")]
NotSupported {
payment_method: String,
message: String,
connector: &'static str,
payment_experience: String,
},