fix(revenue-recovery): Update Redis TTL for customer locks after token selection (#9282)

Co-authored-by: Aniket Burman <aniket.burman@Aniket-Burman-JDXHW2PH34.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Aniket Burman
2025-09-11 16:13:33 +05:30
committed by GitHub
parent d6e925fd34
commit df47c01932
13 changed files with 202 additions and 21 deletions

View File

@ -2718,6 +2718,11 @@ pub struct ProfileResponse {
/// Enable split payments, i.e., split the amount between multiple payment methods
#[schema(value_type = SplitTxnsEnabled, default = "skip")]
pub split_txns_enabled: common_enums::SplitTxnsEnabled,
/// Indicates the state of revenue recovery algorithm type
#[schema(value_type = Option<RevenueRecoveryAlgorithmType>, example = "cascading")]
pub revenue_recovery_retry_algorithm_type:
Option<common_enums::enums::RevenueRecoveryAlgorithmType>,
}
#[cfg(feature = "v1")]