-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
BraintreeCore/src/main/java/com/braintreepayments/api/BuyerPhone.kt
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.braintreepayments.api | ||
|
||
/** | ||
* Representation of a user phone number. | ||
* @property countryCode The international country code for the shopper's phone number | ||
* (e.g., "1" for the United States). | ||
* @property nationalNumber The national segment of the shopper's phone number | ||
* (excluding the country code). | ||
*/ | ||
|
||
data class BuyerPhone( | ||
var countryCode: String, | ||
var nationalNumber: String | ||
) |
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
13 changes: 0 additions & 13 deletions
13
BraintreeCore/src/main/java/com/braintreepayments/api/ShopperInsightsRequest.kt
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