fix: add profile_id in dispute (#3486)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Narayan Bhat
2024-02-05 12:19:12 +05:30
committed by GitHub
parent 8ac4c205e8
commit 0d5cd711b2
4 changed files with 20 additions and 1 deletions

View File

@ -43,6 +43,10 @@ pub struct DisputeResponse {
/// Time at which dispute is received
#[serde(with = "common_utils::custom_serde::iso8601")]
pub created_at: PrimitiveDateTime,
/// The `profile_id` associated with the dispute
pub profile_id: Option<String>,
/// The `merchant_connector_id` of the connector / processor through which the dispute was processed
pub merchant_connector_id: Option<String>,
}
#[derive(Clone, Debug, Serialize, ToSchema, Eq, PartialEq)]