diff --git a/crates/router/src/connector/trustpay/transformers.rs b/crates/router/src/connector/trustpay/transformers.rs index 515f7cc92f..013bfcdc40 100644 --- a/crates/router/src/connector/trustpay/transformers.rs +++ b/crates/router/src/connector/trustpay/transformers.rs @@ -171,6 +171,7 @@ pub struct PaymentRequestCards { pub payment_action: Option, #[serde(rename = "browser[paymentType]")] pub payment_type: String, + pub descriptor: Option, } #[derive(Debug, Serialize, PartialEq)] @@ -272,6 +273,7 @@ fn get_card_request_data( browser_challenge_window: "1".to_string(), payment_action: None, payment_type: "Plain".to_string(), + descriptor: item.request.statement_descriptor.clone(), }, ))) }