Skip to content

Commit

Permalink
refactor(coonectors): resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshayaFoiger committed Feb 26, 2024
1 parent 6cfd207 commit acd5141
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/router/src/connector/stripe/transformers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3637,11 +3637,11 @@ pub struct Evidence {
#[serde(rename = "evidence[customer_communication]")]
pub customer_communication: Option<String>,
#[serde(rename = "evidence[customer_email_address]")]
pub customer_email_address: Option<Secret<String>>,
pub customer_email_address: Option<Secret<String, pii::EmailStrategy>>,
#[serde(rename = "evidence[customer_name]")]
pub customer_name: Option<Secret<String>>,
#[serde(rename = "evidence[customer_purchase_ip]")]
pub customer_purchase_ip: Option<Secret<String>>,
pub customer_purchase_ip: Option<Secret<String, pii::IpAddress>>,
#[serde(rename = "evidence[customer_signature]")]
pub customer_signature: Option<Secret<String>>,
#[serde(rename = "evidence[product_description]")]
Expand Down

0 comments on commit acd5141

Please sign in to comment.