Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
agedd committed Feb 12, 2025
2 parents 4167bd6 + 50ca7f8 commit 02074b5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Sources/BraintreePayPal/BTPayPalRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ import BraintreeCore
/// Optional: User email to initiate a quicker authentication flow in cases where the user has a PayPal Account with the same email.
public var userAuthenticationEmail: String?

/// Optional: The shopper session ID returned from your shopper insights server SDK integration.
public var shopperSessionID: String?

// MARK: - Internal Properties

/// Optional: Used to determine if the customer will use the PayPal app switch flow. Defaults to `false`.
/// - Warning: This property is currently in beta and may change or be removed in future releases.
var enablePayPalAppSwitch: Bool

/// Optional: The shopper session ID returned from your shopper insights server SDK integration.
public var shopperSessionID: String?

// MARK: - Static Properties

Expand Down Expand Up @@ -202,6 +202,10 @@ import BraintreeCore
parameters["payer_email"] = userAuthenticationEmail
}

if let shopperSessionID {
parameters["shopper_session_id"] = shopperSessionID
}

if let shopperSessionID {
parameters["shopper_session_id"] = shopperSessionID
}
Expand Down

0 comments on commit 02074b5

Please sign in to comment.