Remove bank selection from iDEAL.

This commit is contained in:
Alex Hart
2025-05-14 16:15:30 -03:00
committed by Michelle Tang
parent c865ed0cdc
commit a050b37f3a
32 changed files with 47 additions and 757 deletions

View File

@@ -414,13 +414,14 @@ message InAppPaymentData {
INVALID_CURRENCY = 5; // One-time payment currency is invalid
PAYMENT_SETUP = 6; // A generic payment setup error (prior to charging the user)
STRIPE_CODED_ERROR = 7; // Stripe error containing a stripe error code in data.
STRIPE_DECLINED_ERROR = 8; // Stripe error containing a decline error code in data.
STRIPE_FAILURE = 9; // Stripe error containing a failure error code in data.
STRIPE_DECLINED_ERROR = 8; // Stripe error containing a decline error code in data.
STRIPE_FAILURE = 9; // Stripe error containing a failure error code in data.
PAYPAL_CODED_ERROR = 10; // PayPal error containing a paypal error code in data.
PAYPAL_DECLINED_ERROR = 11; // PayPal error containing a paypal decline code in data.
PAYMENT_PROCESSING = 12; // Generic payment error containing an HTTP status code in data.
CREDENTIAL_VALIDATION = 13; // Failed to validate credential returned from service.
REDEMPTION = 14; // Failed during badge redemption containing an HTTP status code in data if available.
SETUP_CANCELLED = 15; // After an authorization attempt, the intent is still not set up correctly.
}
Type type = 1;

View File

@@ -190,7 +190,7 @@ message InAppPaymentSourceData {
}
message IDEALData {
string bank = 1;
reserved 1; // bank, no longer utilized.
string name = 2;
string email = 3;
}