-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DO NOT REVIEW] Merge Contact Information Feature Branch #1250
base: main
Are you sure you want to change the base?
Conversation
* Add contact information data class * Add ContactInformation request model * Add UTs * Update CHANGELOG
* Add contact information data class * Add ContactInformation request model * Add UTs * Update CHANGELOG * Add contact information toggle
# Conflicts: # CHANGELOG.md
@@ -64,6 +64,7 @@ class PayPalCheckoutRequest @JvmOverloads constructor( | |||
var currencyCode: String? = null, | |||
var shouldRequestBillingAgreement: Boolean = false, | |||
var shouldOfferPayLater: Boolean = false, | |||
var contactInformation: PayPalContactInformation? = null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is the final PR not requiring review but realized we are missing the doc string for this property - iOS has Optional: Contact information of the recipient for the order
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, looks like we don't use the Optional
part on Android based on the docstrings here, added the missing one here: 028271a
Summary of changes
Checklist
Authors
@richherrera @jaxdesmarais