feat(router): add attempt_count in list payments response (#1990)

This commit is contained in:
Sai Harsha Vardhan
2023-08-23 18:01:28 +05:30
committed by GitHub
parent f690c5f3ea
commit f0cc0fba16
3 changed files with 17 additions and 5 deletions

View File

@ -1963,6 +1963,8 @@ pub struct PaymentListConstraints {
pub struct PaymentListResponse {
/// The number of payments included in the list
pub size: usize,
/// The total number of payment_attempts for intents included in the list
pub attempt_count: i16,
// The list of payments response objects
pub data: Vec<PaymentsResponse>,
}