-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update BTPayPalVaultEditResult Object
- Loading branch information
1 parent
41088d9
commit f8e3b40
Showing
1 changed file
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,33 @@ | ||
import Foundation | ||
import BraintreeCore | ||
|
||
/// A result of the Edit FI flow used to display a customers updated payment details in your UI | ||
/// - Warning: This feature is currently in beta and may change or be removed in future releases. | ||
public class BTPayPalVaultEditResult { | ||
public struct BTPayPalVaultEditResult { | ||
|
||
// TODO: implement in a future PR | ||
// MARK: - Public Properties | ||
|
||
/// This ID is used to link subsequent retry attempts if payment is declined | ||
public let clientMetadataID: String | ||
|
||
/// ID of the payer | ||
public let payerID: String? | ||
|
||
/// email address of the payer | ||
public let email: String? | ||
|
||
/// first name of the payer | ||
public let firstName: String? | ||
|
||
/// last name of the payer | ||
public let lastName: String? | ||
|
||
/// phone number of the payer | ||
public let phone: String? | ||
|
||
/// shipping address of the payer | ||
public let shippingAddress: BTPostalAddress? | ||
|
||
/// description of the funding source | ||
public let fundingSourceDescription: String? | ||
} |