You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/BraintreePayPal/BTPayPalCheckoutRequest.swift
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,9 @@ import BraintreeCore
85
85
/// Optional: User email to initiate a quicker authentication flow in cases where the user has a PayPal Account with the same email.
86
86
publicvaruserAuthenticationEmail:String?
87
87
88
+
/// Optional: Server side shipping callback URL to be notified when a customer updates their shipping address or options. A callback request will be sent to the merchant server at this URL.
89
+
publicvarshippingCallbackURL:URL?
90
+
88
91
// MARK: - Initializer
89
92
90
93
/// Initializes a PayPal Native Checkout request
@@ -98,20 +101,24 @@ import BraintreeCore
98
101
/// See https://developer.paypal.com/docs/api/reference/currency-codes/ for a list of supported currency codes.
99
102
/// - requestBillingAgreement: Optional: If set to `true`, this enables the Checkout with Vault flow, where the customer will be prompted to consent to a billing agreement
100
103
/// during checkout. Defaults to `false`.
104
+
/// - shippingCallbackURL: Optional: Server side shipping callback URL to be notified when a customer updates their shipping address or options.
105
+
/// A callback request will be sent to the merchant server at this URL.
0 commit comments