Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(connector): Added a new CaptureMethod SequentialAutomatic to Support CIT Mandates for Paybox #6587

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix/elavon
  • Loading branch information
awasthi21 committed Dec 3, 2024
commit 21fab940322df02a49e959f4ef9ca6008b39fc63
4 changes: 3 additions & 1 deletion crates/hyperswitch_connectors/src/connectors/elavon.rs
Original file line number Diff line number Diff line change
@@ -586,7 +586,9 @@ impl ConnectorValidation for Elavon {
) -> CustomResult<(), errors::ConnectorError> {
let capture_method = capture_method.unwrap_or_default();
match capture_method {
CaptureMethod::Automatic | CaptureMethod::Manual => Ok(()),
CaptureMethod::Automatic
| CaptureMethod::Manual
| CaptureMethod::SequentialAutomatic => Ok(()),
CaptureMethod::ManualMultiple | CaptureMethod::Scheduled => Err(
utils::construct_not_implemented_error_report(capture_method, self.id()),
),
Loading