fix(refunds): Add profile_id in refunds response (#2652)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Pa1NarK
2023-10-25 13:25:54 +05:30
committed by GitHub
parent 6428d07f98
commit bb86cc2d04
4 changed files with 17 additions and 0 deletions

View File

@ -124,6 +124,7 @@ pub struct RefundResponse {
/// The connector used for the refund and the corresponding payment
#[schema(example = "stripe")]
pub connector: String,
pub profile_id: Option<String>,
}
#[derive(Debug, Clone, Eq, PartialEq, Deserialize, Serialize, ToSchema)]