refactor(refunds): set Instant as the default RefundType (#7824)

This commit is contained in:
Swangi Kumari
2025-04-28 16:49:54 +05:30
committed by GitHub
parent 5d26b85639
commit ac66cbe3da
3 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,6 @@ use crate::enums::{Currency, RefundStatus};
Clone,
Copy,
Debug,
Default,
Hash,
Eq,
PartialEq,
@ -25,7 +24,6 @@ use crate::enums::{Currency, RefundStatus};
#[strum(serialize_all = "snake_case")]
pub enum RefundType {
InstantRefund,
#[default]
RegularRefund,
RetryRefund,
}