From 50630749c3ac154467dd54ed588661ca02b60ba8 Mon Sep 17 00:00:00 2001 From: michelleb-stripe <77996191+michelleb-stripe@users.noreply.github.com> Date: Tue, 17 Aug 2021 03:43:45 -0700 Subject: [PATCH] Dokka updates for 17.1.1 (#4107) --- docs/index.html | 2 +- docs/navigation.html | 150 ++++++++++++++---- .../-args/-args.html | 8 +- .../-args/index.html | 19 ++- .../index.html | 2 +- .../-result/-canceled/index.html | 2 +- .../-result/-completed/-completed.html | 2 +- .../-result/-completed/index.html | 25 ++- .../-result/-completed/payment-method.html | 2 +- .../-result/-failed/-failed.html | 6 +- .../-result/-failed/error.html | 2 +- .../-result/-failed/index.html | 38 ++++- .../-result/index.html | 8 +- .../index.html | 33 ++-- .../present.html | 12 +- .../index.html | 36 ++++- .../-stripe-request/index.html | 11 +- .../com.stripe.android.networking/index.html | 53 ++++++- .../index.html | 32 +++- .../-payment-sheet-contract/-args/index.html | 13 -- .../-google-pay-configuration.html | 2 +- .../country-code.html | 2 +- .../-google-pay-configuration/index.html | 32 +++- .../-payment-sheet/index.html | 2 +- .../com.stripe.android/index.html | 17 ++ docs/payments-core/navigation.html | 150 ++++++++++++++---- .../complete-form-values.html | 2 +- .../-form-view-model/index.html | 21 +-- .../index.html | 2 +- .../-sofort/index.html | 2 +- .../-supported-payment-method/index.html | 43 ++++- .../-section-field-spec/index.html | 56 +++++-- .../index.html | 36 ++++- docs/paymentsheet/navigation.html | 150 ++++++++++++++---- docs/scripts/navigation-pane.json | 2 +- docs/scripts/pages.json | 2 +- 36 files changed, 766 insertions(+), 211 deletions(-) diff --git a/docs/index.html b/docs/index.html index 148385eaa4e..d738d9b3225 100644 --- a/docs/index.html +++ b/docs/index.html @@ -13,7 +13,7 @@
-
+
-
+
+
+ Logger +
+
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+
- -
+ - -
+ + -
+ -
+ +
@@ -717,12 +732,27 @@ -
+ + + + -
+
@@ -767,22 +797,32 @@ ENABLE_LOGGING
-
+
+ +
+ -
+ -
+ -
+
+ +
+
@@ -1046,17 +1086,32 @@ Card
-
+
+
+ Eps +
+
+
+
+ Giropay +
+
+ -
+
+
+ P24 +
+
+ -
+
@@ -1077,36 +1132,61 @@ -
+
+ +
+ -
+ -
+ -
+ -
+ -
+ +
+ +
+
+ Eps +
+
+
+
+ Ideal +
+
+
+
+ P24 +
+
+
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html index 04bea47c1e2..75d6833cadc 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html @@ -29,7 +29,13 @@

Args

fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)
-

Parameters

config

the GooglePayPaymentMethodLauncher.Config for this transaction

currencyCode

ISO 4217 alphabetic currency code. (e.g. "USD", "EUR")

amount

if the amount of the transaction is unknown at this time, set to 0.

+
+
+ +
+
fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String? = null)
+
+

Parameters

config

the GooglePayPaymentMethodLauncher.Config for this transaction

currencyCode

ISO 4217 alphabetic currency code. (e.g. "USD", "EUR")

amount

if the amount of the transaction is unknown at this time, set to 0.

transactionId

a unique ID that identifies a transaction attempt. Merchants may use an existing ID or generate a specific one for Google Pay transaction attempts. This field is required when you send callbacks to the Google Transaction Events API.

diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html index 26022c382ec..3829edcbd48 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html @@ -23,14 +23,14 @@

Args

-
data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int) : Parcelable

Args for launching GooglePayPaymentMethodLauncherContract to create a PaymentMethod.

+
data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String?) : Parcelable

Args for launching GooglePayPaymentMethodLauncherContract to create a PaymentMethod.

Parameters

-
config

the GooglePayPaymentMethodLauncher.Config for this transaction

currencyCode

ISO 4217 alphabetic currency code. (e.g. "USD", "EUR")

amount

if the amount of the transaction is unknown at this time, set to 0.

+
config

the GooglePayPaymentMethodLauncher.Config for this transaction

currencyCode

ISO 4217 alphabetic currency code. (e.g. "USD", "EUR")

amount

if the amount of the transaction is unknown at this time, set to 0.

transactionId

a unique ID that identifies a transaction attempt. Merchants may use an existing ID or generate a specific one for Google Pay transaction attempts. This field is required when you send callbacks to the Google Transaction Events API.

Constructors

@@ -41,7 +41,20 @@

Constructors

-
fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)
the GooglePayPaymentMethodLauncher.Config for this transaction
+
fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)
+
+
+
+
+ +
+
+
Args +
Link copied to clipboard
+
+
+
+
fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String? = null)
the GooglePayPaymentMethodLauncher.Config for this transaction
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html index 2e44ea57376..a6c0838773c 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html @@ -39,7 +39,7 @@

Types

-
data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int) : Parcelable
+
data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String?) : Parcelable
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html index e2408546e94..70980fe9c55 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html @@ -23,7 +23,7 @@

Canceled

-
object Canceled : GooglePayPaymentMethodLauncher.Result
+
object Canceled : GooglePayPaymentMethodLauncher.Result

Represents a transaction that was canceled by the user.

diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html index a4e9368fa6b..656e24d0d2c 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html @@ -29,7 +29,7 @@

Completed

fun Completed(paymentMethod: PaymentMethod)
-
+

Parameters

paymentMethod

The resulting payment method.

diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html index d32c24c5ecb..938f4833c58 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html @@ -23,11 +23,30 @@

Completed

-
data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result
+
data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result

Represents a successful transaction.

-
+
+

Parameters

+
+
paymentMethod

The resulting payment method.

+
+

Constructors

+
+
+
+
Completed +
Link copied to clipboard
+
+
+
+
fun Completed(paymentMethod: PaymentMethod)
The resulting payment method.
+
+
+
+
+

Functions

@@ -73,7 +92,7 @@

Properties

-
val paymentMethod: PaymentMethod
+
val paymentMethod: PaymentMethod
The resulting payment method.
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html index f5cbe162d7c..0e3513f2f13 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html @@ -29,7 +29,7 @@

paymentMethod

val paymentMethod: PaymentMethod
-
+

Parameters

paymentMethod

The resulting payment method.

diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html index 52e4a2b5d89..b2f1f964fbb 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html @@ -14,7 +14,7 @@
-
+
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html index a4c5cc467df..c2710bced95 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html @@ -29,7 +29,7 @@

error

val error: Throwable
-
+

Parameters

error

The failure reason.

diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html index 1a644cb91f3..616d55d4d6e 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html @@ -23,11 +23,30 @@

Failed

-
data class Failed(error: Throwable) : GooglePayPaymentMethodLauncher.Result
+
data class Failed(error: Throwable, errorCode: Int) : GooglePayPaymentMethodLauncher.Result

Represents a failed transaction.

-
+
+

Parameters

+
+
error

The failure reason.

errorCode

The failure ErrorCode.

+
+

Constructors

+
+
+
+
Failed +
Link copied to clipboard
+
+
+
+
fun Failed(error: Throwable, errorCode: Int)
The failure reason.
+
+
+
+
+

Functions

@@ -73,7 +92,20 @@

Properties

-
val error: Throwable
+
val error: Throwable
The failure reason.
+
+
+
+
+ +
+
+
errorCode +
Link copied to clipboard
+
+
+
+
val errorCode: Int
The failure ErrorCode.
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html index d6c8351be4d..46f0af3908e 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html @@ -41,7 +41,7 @@

Types

object Canceled : GooglePayPaymentMethodLauncher.Result
-
+
Represents a transaction that was canceled by the user.
@@ -58,7 +58,7 @@

Types

data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result
-
+
Represents a successful transaction.
@@ -73,9 +73,9 @@

Types

-
data class Failed(error: Throwable) : GooglePayPaymentMethodLauncher.Result
+
data class Failed(error: Throwable, errorCode: Int) : GooglePayPaymentMethodLauncher.Result
-
+
Represents a failed transaction.
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html index 0e3077d8386..025b40c6468 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html @@ -23,7 +23,7 @@

GooglePayPaymentMethodLauncher

-
class GooglePayPaymentMethodLauncher

A drop-in class that presents a Google Pay sheet to collect a customer's payment details. When successful, will return a PaymentMethod via Result.Completed.paymentMethod.

Use GooglePayPaymentMethodLauncher for Jetpack Compose integrations.

See the Google Pay integration guide for more details.

+
class GooglePayPaymentMethodLauncher

A drop-in class that presents a Google Pay sheet to collect a customer's payment details. When successful, will return a PaymentMethod via Result.Completed.paymentMethod.

Use GooglePayPaymentMethodLauncher for Jetpack Compose integrations.

See the Google Pay integration guide for more details.

@@ -87,6 +87,23 @@

Types

data class Config @JvmOverloads() constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable
+
+
+
+
+ +
+
+
ErrorCode +
Link copied to clipboard
+
+
+
+ +
+
annotation class ErrorCode
+
+
Error codes representing the possible error types for Result.Failed.
@@ -144,25 +161,19 @@

Types

Functions

-
+
-
present +
present
Link copied to clipboard
-
fun present(currencyCode: String)
-
-
Present the Google Pay UI when the amount of the transaction is not yet known.
-
- -
-
fun present(currencyCode: String, amount: Int)
+
fun present(currencyCode: String, amount: Int = 0, transactionId: String? = null)
-
Present the Google Pay UI when the amount of the transaction is known.
+
Present the Google Pay UI.
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html index 2f880541c10..e6f80353980 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html @@ -14,7 +14,7 @@
-
+
diff --git a/docs/payments-core/com.stripe.android.googlepaylauncher/index.html b/docs/payments-core/com.stripe.android.googlepaylauncher/index.html index 45dbd631671..7fc0e4e0af8 100644 --- a/docs/payments-core/com.stripe.android.googlepaylauncher/index.html +++ b/docs/payments-core/com.stripe.android.googlepaylauncher/index.html @@ -75,6 +75,23 @@

Types

+
+
+
+
+ +
+
+
GooglePayLauncherModule +
Link copied to clipboard
+
+
+
+ +
+
@Module()
class GooglePayLauncherModule
+
+
@@ -89,7 +106,7 @@

Types

-
class GooglePayPaymentMethodLauncher
+
class GooglePayPaymentMethodLauncher
A drop-in class that presents a Google Pay sheet to collect a customer's payment details.
@@ -109,6 +126,23 @@

Types

+ + + + + +
+
+
GooglePayPaymentMethodLauncherFactory +
Link copied to clipboard
+
+
+
+ +
+
@AssistedFactory()
interface GooglePayPaymentMethodLauncherFactory
+
+
diff --git a/docs/payments-core/com.stripe.android.networking/-stripe-request/index.html b/docs/payments-core/com.stripe.android.networking/-stripe-request/index.html index cc09a78e708..9b34dabd5db 100644 --- a/docs/payments-core/com.stripe.android.networking/-stripe-request/index.html +++ b/docs/payments-core/com.stripe.android.networking/-stripe-request/index.html @@ -72,7 +72,16 @@

Properties

Inheritors

-
+
+
+
+
AnalyticsRequest +
Link copied to clipboard
+
+
+
+
+
ApiRequest diff --git a/docs/payments-core/com.stripe.android.networking/index.html b/docs/payments-core/com.stripe.android.networking/index.html index 75fc59554b0..410288d1556 100644 --- a/docs/payments-core/com.stripe.android.networking/index.html +++ b/docs/payments-core/com.stripe.android.networking/index.html @@ -28,7 +28,58 @@

Package com.stripe.a

Types

-
+
+
+
+
AnalyticsRequest +
Link copied to clipboard
+
+
+
+ +
+
data class AnalyticsRequest(params: Map<String, *>) : StripeRequest
+
+
+
+
+
+
+ +
+
+
AnalyticsRequestExecutor +
Link copied to clipboard
+
+
+
+ +
+
fun fun interface AnalyticsRequestExecutor
+
+
+
+
+
+
+ +
+
+
AnalyticsRequestFactory +
Link copied to clipboard
+
+
+
+ +
+
class AnalyticsRequestFactory
+
+
Factory for AnalyticsRequest objects.
+
+
+
+
+
ApiRequest diff --git a/docs/payments-core/com.stripe.android.payments.core.injection/index.html b/docs/payments-core/com.stripe.android.payments.core.injection/index.html index 0de01a32358..c62ecf344a7 100644 --- a/docs/payments-core/com.stripe.android.payments.core.injection/index.html +++ b/docs/payments-core/com.stripe.android.payments.core.injection/index.html @@ -28,7 +28,24 @@

Package com.stripe.a

Types

-
+
+
+
+
InjectorKey +
Link copied to clipboard
+
+
+
+ +
+
@Qualifier()
annotation class InjectorKey
+
+
Annotation to identify an Injector instance.
+
+
+
+
+
IntentAuthenticatorKey @@ -111,6 +128,19 @@

Properties

+ +
+
+
PRODUCT_USAGE +
Link copied to clipboard
+
+
+
+
const val PRODUCT_USAGE: String
Name for injected set if strings to represent product usage for analytics.
+
+
+
+
diff --git a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html index 15146251ba1..bb1034706bf 100644 --- a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html +++ b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html @@ -97,19 +97,6 @@

Properties

- -
-
-
isGooglePayEnabled -
Link copied to clipboard
-
-
-
-
val isGooglePayEnabled: Boolean
-
-
-
-
diff --git a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html index e8d3115adf3..bc46118ecea 100644 --- a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html +++ b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html @@ -27,7 +27,7 @@

GooglePayConfigurati
-
fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)
+
fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)
fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String? = null)

diff --git a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html index 730cd95e970..377033d1e12 100644 --- a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html +++ b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html @@ -29,7 +29,7 @@

countryCode

val countryCode: String
-

The two-letter ISO 3166 code of the country of your business, e.g. "US" See your account's country value here.

+

The two-letter ISO 3166 code of the country of your business, e.g. "US". See your account's country value here.

diff --git a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html index 9beebee1127..3459ebe52d6 100644 --- a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html +++ b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html @@ -23,11 +23,26 @@

GooglePayConfiguration

-
data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String) : Parcelable
+
data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String?) : Parcelable
-
+
+

Constructors

+
+
+
+
GooglePayConfiguration +
Link copied to clipboard
+
+
+
+
fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)
+
+
+
+
+

Types

@@ -97,6 +112,19 @@

Properties

+ +
+
+
currencyCode +
Link copied to clipboard
+
+
+
+
val currencyCode: String? = null
The three-letter ISO 4217 alphabetic currency code, e.g.
+
+
+
+
diff --git a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html index 636eece5203..75020256b6b 100644 --- a/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html +++ b/docs/payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html @@ -118,7 +118,7 @@

Types

-
data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String) : Parcelable
+
data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String?) : Parcelable
diff --git a/docs/payments-core/com.stripe.android/index.html b/docs/payments-core/com.stripe.android/index.html index f4ec7fb9d5e..88ea6ea963a 100644 --- a/docs/payments-core/com.stripe.android/index.html +++ b/docs/payments-core/com.stripe.android/index.html @@ -194,6 +194,23 @@

Types

class IssuingCardPinService
Methods for retrieval / update of a Stripe Issuing card
+
+ + + + +
+
+
Logger +
Link copied to clipboard
+
+
+
+ +
+
interface Logger
+
+
diff --git a/docs/payments-core/navigation.html b/docs/payments-core/navigation.html index 645268d6ef2..2e88615c2b9 100644 --- a/docs/payments-core/navigation.html +++ b/docs/payments-core/navigation.html @@ -142,82 +142,87 @@ IssuingCardPinService
-
+
+
+ Logger +
+
+
-
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+
- -
+ - -
+ + -
+ -
+ +
@@ -717,12 +732,27 @@ -
+ + + + -
+
@@ -767,22 +797,32 @@ ENABLE_LOGGING
-
+
+ +
+ -
+ -
+ -
+
+ +
+
@@ -1046,17 +1086,32 @@ Card
-
+
+
+ Eps +
+
+
+
+ Giropay +
+
+ -
+
+
+ P24 +
+
+ -
+
@@ -1077,36 +1132,61 @@ -
+
+ +
+ -
+ -
+ -
+ -
+ -
+ +
+ +
+
+ Eps +
+
+
+
+ Ideal +
+
+
+
+ P24 +
+
+
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html index 3dcee6722ec..f41a7ccfe84 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html @@ -27,7 +27,7 @@

completeFormValues
-
val completeFormValues: Flow<FormFieldValues?>
+
@ExperimentalCoroutinesApi()
val completeFormValues: Flow<FormFieldValues?>

diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html index f2ae195600c..a62960cdda1 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html @@ -23,30 +23,15 @@

FormViewModel

-
class FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String) : ViewModel

This class stores the visual field layout for the Form and then sets up the controller for all the fields on screen. When all fields are reported as complete, the completedFieldValues holds the resulting values for each field.

+
@Singleton()
class FormViewModel : ViewModel

This class stores the visual field layout for the Form and then sets up the controller for all the fields on screen. When all fields are reported as complete, the completedFieldValues holds the resulting values for each field.

-
+

Parameters

: layout - this contains the visual layout of the fields on the screen used by Form to display the UI fields on screen. It also informs us of the backing fields to be created.

-

Constructors

-
-
-
-
FormViewModel -
Link copied to clipboard
-
-
-
-
fun FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String)
: layout - this contains the visual layout of the fields on the screen used by Form to display the UI fields on screen.
-
-
-
-
-

Functions

@@ -126,7 +111,7 @@

Properties

-
val completeFormValues: Flow<FormFieldValues?>
+
@ExperimentalCoroutinesApi()
val completeFormValues: Flow<FormFieldValues?>
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/index.html index 851a1e6987e..c488657c228 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.forms/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.forms/index.html @@ -72,7 +72,7 @@

Types

-
class FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String) : ViewModel
+
@Singleton()
class FormViewModel : ViewModel
This class stores the visual field layout for the Form and then sets up the controller for all the fields on screen.
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html index bf5226c6526..bf43c492ff5 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html @@ -23,7 +23,7 @@

Sofort

-
Sofort("sofort", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_sofort, sofort)
+
Sofort("sofort", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_klarna, sofort)
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html index c0a70db9627..f6480423cb0 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html @@ -29,7 +29,46 @@

SupportedPaymentMeth

Entries

-
+
+
+
+
Giropay +
Link copied to clipboard
+
+
+
+
Giropay("giropay", R.string.stripe_paymentsheet_payment_method_giropay, R.drawable.stripe_ic_paymentsheet_pm_giropay, giropay)
+
+
+
+
+ +
+
+
P24 +
Link copied to clipboard
+
+
+
+
P24("p24", R.string.stripe_paymentsheet_payment_method_p24, R.drawable.stripe_ic_paymentsheet_pm_p24, p24)
+
+
+
+
+ +
+
+
Eps +
Link copied to clipboard
+
+
+
+
Eps("eps", R.string.stripe_paymentsheet_payment_method_eps, R.drawable.stripe_ic_paymentsheet_pm_eps, eps)
+
+
+
+
+
SepaDebit @@ -63,7 +102,7 @@

Entries

-
Sofort("sofort", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_sofort, sofort)
+
Sofort("sofort", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_klarna, sofort)
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html index 6b4191ed8c1..c39598deae8 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html @@ -29,68 +29,85 @@

SectionFieldSpec

Types

-
+
-
Country +
AddressSpec
Link copied to clipboard
-
data class Country(onlyShowCountryCodes: Set<String>) : SectionFieldSpec
+
data class AddressSpec(identifier: IdentifierSpec) : SectionFieldSpec
-
This is the specification for a country field.
+
- +
-
Email +
BankDropdown
Link copied to clipboard
-
object Email : SectionFieldSpec
+
data class BankDropdown(identifier: IdentifierSpec, @StringRes() label: Int, bankType: SupportedBankType) : SectionFieldSpec
- +
-
Iban +
Country
Link copied to clipboard
-
object Iban : SectionFieldSpec
+
data class Country(onlyShowCountryCodes: Set<String>) : SectionFieldSpec
+
+
This is the specification for a country field.
+
+
+
+
+ +
+
+
Email +
Link copied to clipboard
+
+
+
+ +
+
object Email : SectionFieldSpec
- +
-
IdealBank +
Iban
Link copied to clipboard
-
object IdealBank : SectionFieldSpec
+
object Iban : SectionFieldSpec
@@ -158,10 +175,10 @@

Inheritors

- +
-
SectionFieldSpec +
SectionFieldSpec
Link copied to clipboard
@@ -176,6 +193,15 @@

Inheritors

+ +
+
+
SectionFieldSpec +
Link copied to clipboard
+
+
+
+
diff --git a/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/index.html b/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/index.html index 2dd3355e346..e0ffd14ef14 100644 --- a/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/index.html +++ b/docs/paymentsheet/com.stripe.android.paymentsheet.specifications/index.html @@ -28,7 +28,24 @@

Package com.stripe.a

Types

-
+
+
+
+
DropdownItem +
Link copied to clipboard
+
+
+
+ +
+
data class DropdownItem(value: String, text: String)
+
+
+
+
+
+
+
FormItemSpec @@ -126,6 +143,23 @@

Types

sealed class SectionFieldSpec
This represents a field in a section.
+
+
+
+
+ +
+
+
SupportedBankType +
Link copied to clipboard
+
+
+
+ +
+
enum SupportedBankType : Enum<SupportedBankType>
+
+
diff --git a/docs/paymentsheet/navigation.html b/docs/paymentsheet/navigation.html index 645268d6ef2..2e88615c2b9 100644 --- a/docs/paymentsheet/navigation.html +++ b/docs/paymentsheet/navigation.html @@ -142,82 +142,87 @@ IssuingCardPinService

-
+
+
+ Logger +
+
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+
- -
+ - -
+ + -
+ -
+ +
@@ -717,12 +732,27 @@ -
+ + + + -
+
@@ -767,22 +797,32 @@ ENABLE_LOGGING
-
+
+ +
+ -
+ -
+ -
+
+ +
+
@@ -1046,17 +1086,32 @@ Card
-
+
+
+ Eps +
+
+
+
+ Giropay +
+
+ -
+
+
+ P24 +
+
+ -
+
@@ -1077,36 +1132,61 @@ -
+
+ +
+ -
+ -
+ -
+ -
+ -
+ +
+ +
+
+ Eps +
+
+
+
+ Ideal +
+
+
+
+ P24 +
+
+
diff --git a/docs/scripts/navigation-pane.json b/docs/scripts/navigation-pane.json index 7a0392b60d1..9e1c5702155 100644 --- a/docs/scripts/navigation-pane.json +++ b/docs/scripts/navigation-pane.json @@ -1 +1 @@ -[{"name":"payments-core","description":null,"location":"payments-core/index.html","searchKeys":["payments-core"]},{"name":"com.stripe.android","description":null,"location":"payments-core/com.stripe.android/index.html","searchKeys":["com.stripe.android"]},{"name":"AlipayAuthenticator","description":null,"location":"payments-core/com.stripe.android/-alipay-authenticator/index.html","searchKeys":["AlipayAuthenticator"]},{"name":"ApiResultCallback","description":null,"location":"payments-core/com.stripe.android/-api-result-callback/index.html","searchKeys":["ApiResultCallback"]},{"name":"AppInfo","description":null,"location":"payments-core/com.stripe.android/-app-info/index.html","searchKeys":["AppInfo"]},{"name":"confirmAlipayPayment()","description":null,"location":"payments-core/com.stripe.android/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment()"]},{"name":"confirmPaymentIntent()","description":null,"location":"payments-core/com.stripe.android/confirm-payment-intent.html","searchKeys":["confirmPaymentIntent()"]},{"name":"confirmSetupIntent()","description":null,"location":"payments-core/com.stripe.android/confirm-setup-intent.html","searchKeys":["confirmSetupIntent()"]},{"name":"confirmWeChatPayPayment()","description":null,"location":"payments-core/com.stripe.android/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment()"]},{"name":"createAccountToken()","description":null,"location":"payments-core/com.stripe.android/create-account-token.html","searchKeys":["createAccountToken()"]},{"name":"createBankAccountToken()","description":null,"location":"payments-core/com.stripe.android/create-bank-account-token.html","searchKeys":["createBankAccountToken()"]},{"name":"createCardToken()","description":null,"location":"payments-core/com.stripe.android/create-card-token.html","searchKeys":["createCardToken()"]},{"name":"createCvcUpdateToken()","description":null,"location":"payments-core/com.stripe.android/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken()"]},{"name":"createFile()","description":null,"location":"payments-core/com.stripe.android/create-file.html","searchKeys":["createFile()"]},{"name":"createPaymentMethod()","description":null,"location":"payments-core/com.stripe.android/create-payment-method.html","searchKeys":["createPaymentMethod()"]},{"name":"createPersonToken()","description":null,"location":"payments-core/com.stripe.android/create-person-token.html","searchKeys":["createPersonToken()"]},{"name":"createPiiToken()","description":null,"location":"payments-core/com.stripe.android/create-pii-token.html","searchKeys":["createPiiToken()"]},{"name":"createRadarSession()","description":null,"location":"payments-core/com.stripe.android/create-radar-session.html","searchKeys":["createRadarSession()"]},{"name":"createSource()","description":null,"location":"payments-core/com.stripe.android/create-source.html","searchKeys":["createSource()"]},{"name":"CustomerSession","description":null,"location":"payments-core/com.stripe.android/-customer-session/index.html","searchKeys":["CustomerSession"]},{"name":"EphemeralKey","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key/index.html","searchKeys":["EphemeralKey"]},{"name":"EphemeralKeyProvider","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key-provider/index.html","searchKeys":["EphemeralKeyProvider"]},{"name":"EphemeralKeyUpdateListener","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/index.html","searchKeys":["EphemeralKeyUpdateListener"]},{"name":"getAuthenticateSourceResult()","description":null,"location":"payments-core/com.stripe.android/get-authenticate-source-result.html","searchKeys":["getAuthenticateSourceResult()"]},{"name":"getPaymentIntentResult()","description":null,"location":"payments-core/com.stripe.android/get-payment-intent-result.html","searchKeys":["getPaymentIntentResult()"]},{"name":"getSetupIntentResult()","description":null,"location":"payments-core/com.stripe.android/get-setup-intent-result.html","searchKeys":["getSetupIntentResult()"]},{"name":"GooglePayConfig","description":null,"location":"payments-core/com.stripe.android/-google-pay-config/index.html","searchKeys":["GooglePayConfig"]},{"name":"GooglePayJsonFactory","description":null,"location":"payments-core/com.stripe.android/-google-pay-json-factory/index.html","searchKeys":["GooglePayJsonFactory"]},{"name":"IssuingCardPinService","description":null,"location":"payments-core/com.stripe.android/-issuing-card-pin-service/index.html","searchKeys":["IssuingCardPinService"]},{"name":"PaymentAuthConfig","description":null,"location":"payments-core/com.stripe.android/-payment-auth-config/index.html","searchKeys":["PaymentAuthConfig"]},{"name":"PaymentConfiguration","description":null,"location":"payments-core/com.stripe.android/-payment-configuration/index.html","searchKeys":["PaymentConfiguration"]},{"name":"PaymentIntentResult","description":null,"location":"payments-core/com.stripe.android/-payment-intent-result/index.html","searchKeys":["PaymentIntentResult"]},{"name":"PaymentSession","description":null,"location":"payments-core/com.stripe.android/-payment-session/index.html","searchKeys":["PaymentSession"]},{"name":"PaymentSessionConfig","description":null,"location":"payments-core/com.stripe.android/-payment-session-config/index.html","searchKeys":["PaymentSessionConfig"]},{"name":"PaymentSessionData","description":null,"location":"payments-core/com.stripe.android/-payment-session-data/index.html","searchKeys":["PaymentSessionData"]},{"name":"PayWithGoogleUtils","description":null,"location":"payments-core/com.stripe.android/-pay-with-google-utils/index.html","searchKeys":["PayWithGoogleUtils"]},{"name":"retrievePaymentIntent()","description":null,"location":"payments-core/com.stripe.android/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent()"]},{"name":"retrieveSetupIntent()","description":null,"location":"payments-core/com.stripe.android/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent()"]},{"name":"retrieveSource()","description":null,"location":"payments-core/com.stripe.android/retrieve-source.html","searchKeys":["retrieveSource()"]},{"name":"SetupIntentResult","description":null,"location":"payments-core/com.stripe.android/-setup-intent-result/index.html","searchKeys":["SetupIntentResult"]},{"name":"Stripe","description":null,"location":"payments-core/com.stripe.android/-stripe/index.html","searchKeys":["Stripe"]},{"name":"StripeApiBeta","description":null,"location":"payments-core/com.stripe.android/-stripe-api-beta/index.html","searchKeys":["StripeApiBeta"]},{"name":"WeChatPayV1","description":null,"location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/index.html","searchKeys":["WeChatPayV1"]},{"name":"StripeError","description":null,"location":"payments-core/com.stripe.android/-stripe-error/index.html","searchKeys":["StripeError"]},{"name":"StripeIntentResult","description":null,"location":"payments-core/com.stripe.android/-stripe-intent-result/index.html","searchKeys":["StripeIntentResult"]},{"name":"com.stripe.android.exception","description":null,"location":"payments-core/com.stripe.android.exception/index.html","searchKeys":["com.stripe.android.exception"]},{"name":"APIConnectionException","description":null,"location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/index.html","searchKeys":["APIConnectionException"]},{"name":"APIException","description":null,"location":"payments-core/com.stripe.android.exception/-a-p-i-exception/index.html","searchKeys":["APIException"]},{"name":"AuthenticationException","description":null,"location":"payments-core/com.stripe.android.exception/-authentication-exception/index.html","searchKeys":["AuthenticationException"]},{"name":"CardException","description":null,"location":"payments-core/com.stripe.android.exception/-card-exception/index.html","searchKeys":["CardException"]},{"name":"InvalidRequestException","description":null,"location":"payments-core/com.stripe.android.exception/-invalid-request-exception/index.html","searchKeys":["InvalidRequestException"]},{"name":"PermissionException","description":null,"location":"payments-core/com.stripe.android.exception/-permission-exception/index.html","searchKeys":["PermissionException"]},{"name":"RateLimitException","description":null,"location":"payments-core/com.stripe.android.exception/-rate-limit-exception/index.html","searchKeys":["RateLimitException"]},{"name":"StripeException","description":null,"location":"payments-core/com.stripe.android.exception/-stripe-exception/index.html","searchKeys":["StripeException"]},{"name":"com.stripe.android.googlepaylauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/index.html","searchKeys":["com.stripe.android.googlepaylauncher"]},{"name":"GooglePayEnvironment","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/index.html","searchKeys":["GooglePayEnvironment"]},{"name":"Production","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/index.html","searchKeys":["Production"]},{"name":"Test","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/index.html","searchKeys":["Test"]},{"name":"GooglePayLauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/index.html","searchKeys":["GooglePayLauncher"]},{"name":"GooglePayLauncherContract","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/index.html","searchKeys":["GooglePayLauncherContract"]},{"name":"GooglePayPaymentMethodLauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html","searchKeys":["GooglePayPaymentMethodLauncher"]},{"name":"GooglePayPaymentMethodLauncherContract","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html","searchKeys":["GooglePayPaymentMethodLauncherContract"]},{"name":"GooglePayRepository","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/index.html","searchKeys":["GooglePayRepository"]},{"name":"com.stripe.android.model","description":null,"location":"payments-core/com.stripe.android.model/index.html","searchKeys":["com.stripe.android.model"]},{"name":"AccountParams","description":null,"location":"payments-core/com.stripe.android.model/-account-params/index.html","searchKeys":["AccountParams"]},{"name":"Address","description":null,"location":"payments-core/com.stripe.android.model/-address/index.html","searchKeys":["Address"]},{"name":"AddressJapanParams","description":null,"location":"payments-core/com.stripe.android.model/-address-japan-params/index.html","searchKeys":["AddressJapanParams"]},{"name":"BankAccount","description":null,"location":"payments-core/com.stripe.android.model/-bank-account/index.html","searchKeys":["BankAccount"]},{"name":"BankAccountTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-bank-account-token-params/index.html","searchKeys":["BankAccountTokenParams"]},{"name":"BankAccountTokenParamsFixtures","description":null,"location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/index.html","searchKeys":["BankAccountTokenParamsFixtures"]},{"name":"Card","description":null,"location":"payments-core/com.stripe.android.model/-card/index.html","searchKeys":["Card"]},{"name":"CardBrand","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/index.html","searchKeys":["CardBrand"]},{"name":"AmericanExpress","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-american-express/index.html","searchKeys":["AmericanExpress"]},{"name":"DinersClub","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/index.html","searchKeys":["DinersClub"]},{"name":"Discover","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-discover/index.html","searchKeys":["Discover"]},{"name":"JCB","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/index.html","searchKeys":["JCB"]},{"name":"MasterCard","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-master-card/index.html","searchKeys":["MasterCard"]},{"name":"UnionPay","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/index.html","searchKeys":["UnionPay"]},{"name":"Unknown","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-unknown/index.html","searchKeys":["Unknown"]},{"name":"Visa","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-visa/index.html","searchKeys":["Visa"]},{"name":"CardFunding","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/index.html","searchKeys":["CardFunding"]},{"name":"Credit","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-credit/index.html","searchKeys":["Credit"]},{"name":"Debit","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-debit/index.html","searchKeys":["Debit"]},{"name":"Prepaid","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/index.html","searchKeys":["Prepaid"]},{"name":"Unknown","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-unknown/index.html","searchKeys":["Unknown"]},{"name":"CardParams","description":null,"location":"payments-core/com.stripe.android.model/-card-params/index.html","searchKeys":["CardParams"]},{"name":"ConfirmPaymentIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/index.html","searchKeys":["ConfirmPaymentIntentParams"]},{"name":"ConfirmSetupIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/index.html","searchKeys":["ConfirmSetupIntentParams"]},{"name":"ConfirmStripeIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/index.html","searchKeys":["ConfirmStripeIntentParams"]},{"name":"Customer","description":null,"location":"payments-core/com.stripe.android.model/-customer/index.html","searchKeys":["Customer"]},{"name":"CustomerBankAccount","description":null,"location":"payments-core/com.stripe.android.model/-customer-bank-account/index.html","searchKeys":["CustomerBankAccount"]},{"name":"CustomerCard","description":null,"location":"payments-core/com.stripe.android.model/-customer-card/index.html","searchKeys":["CustomerCard"]},{"name":"CustomerPaymentSource","description":null,"location":"payments-core/com.stripe.android.model/-customer-payment-source/index.html","searchKeys":["CustomerPaymentSource"]},{"name":"CustomerSource","description":null,"location":"payments-core/com.stripe.android.model/-customer-source/index.html","searchKeys":["CustomerSource"]},{"name":"CvcTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-cvc-token-params/index.html","searchKeys":["CvcTokenParams"]},{"name":"DateOfBirth","description":null,"location":"payments-core/com.stripe.android.model/-date-of-birth/index.html","searchKeys":["DateOfBirth"]},{"name":"ExpirationDate","description":null,"location":"payments-core/com.stripe.android.model/-expiration-date/index.html","searchKeys":["ExpirationDate"]},{"name":"getRequestCode()","description":null,"location":"payments-core/com.stripe.android.model/get-request-code.html","searchKeys":["getRequestCode()"]},{"name":"GooglePayResult","description":null,"location":"payments-core/com.stripe.android.model/-google-pay-result/index.html","searchKeys":["GooglePayResult"]},{"name":"IssuingCardPin","description":null,"location":"payments-core/com.stripe.android.model/-issuing-card-pin/index.html","searchKeys":["IssuingCardPin"]},{"name":"KlarnaSourceParams","description":null,"location":"payments-core/com.stripe.android.model/-klarna-source-params/index.html","searchKeys":["KlarnaSourceParams"]},{"name":"MandateDataParams","description":null,"location":"payments-core/com.stripe.android.model/-mandate-data-params/index.html","searchKeys":["MandateDataParams"]},{"name":"PaymentIntent","description":null,"location":"payments-core/com.stripe.android.model/-payment-intent/index.html","searchKeys":["PaymentIntent"]},{"name":"PaymentMethod","description":null,"location":"payments-core/com.stripe.android.model/-payment-method/index.html","searchKeys":["PaymentMethod"]},{"name":"PaymentMethodCreateParams","description":null,"location":"payments-core/com.stripe.android.model/-payment-method-create-params/index.html","searchKeys":["PaymentMethodCreateParams"]},{"name":"PaymentMethodOptionsParams","description":null,"location":"payments-core/com.stripe.android.model/-payment-method-options-params/index.html","searchKeys":["PaymentMethodOptionsParams"]},{"name":"PersonTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-person-token-params/index.html","searchKeys":["PersonTokenParams"]},{"name":"RadarSession","description":null,"location":"payments-core/com.stripe.android.model/-radar-session/index.html","searchKeys":["RadarSession"]},{"name":"SetupIntent","description":null,"location":"payments-core/com.stripe.android.model/-setup-intent/index.html","searchKeys":["SetupIntent"]},{"name":"ShippingInformation","description":null,"location":"payments-core/com.stripe.android.model/-shipping-information/index.html","searchKeys":["ShippingInformation"]},{"name":"ShippingMethod","description":null,"location":"payments-core/com.stripe.android.model/-shipping-method/index.html","searchKeys":["ShippingMethod"]},{"name":"Source","description":null,"location":"payments-core/com.stripe.android.model/-source/index.html","searchKeys":["Source"]},{"name":"SourceOrder","description":null,"location":"payments-core/com.stripe.android.model/-source-order/index.html","searchKeys":["SourceOrder"]},{"name":"SourceOrderParams","description":null,"location":"payments-core/com.stripe.android.model/-source-order-params/index.html","searchKeys":["SourceOrderParams"]},{"name":"SourceParams","description":null,"location":"payments-core/com.stripe.android.model/-source-params/index.html","searchKeys":["SourceParams"]},{"name":"SourceTypeModel","description":null,"location":"payments-core/com.stripe.android.model/-source-type-model/index.html","searchKeys":["SourceTypeModel"]},{"name":"StripeFile","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file/index.html","searchKeys":["StripeFile"]},{"name":"StripeFileParams","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-params/index.html","searchKeys":["StripeFileParams"]},{"name":"StripeFilePurpose","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/index.html","searchKeys":["StripeFilePurpose"]},{"name":"BusinessIcon","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/index.html","searchKeys":["BusinessIcon"]},{"name":"BusinessLogo","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/index.html","searchKeys":["BusinessLogo"]},{"name":"CustomerSignature","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/index.html","searchKeys":["CustomerSignature"]},{"name":"DisputeEvidence","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/index.html","searchKeys":["DisputeEvidence"]},{"name":"IdentityDocument","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/index.html","searchKeys":["IdentityDocument"]},{"name":"PciDocument","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/index.html","searchKeys":["PciDocument"]},{"name":"TaxDocumentUserUpload","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/index.html","searchKeys":["TaxDocumentUserUpload"]},{"name":"StripeIntent","description":null,"location":"payments-core/com.stripe.android.model/-stripe-intent/index.html","searchKeys":["StripeIntent"]},{"name":"StripeModel","description":null,"location":"payments-core/com.stripe.android.model/-stripe-model/index.html","searchKeys":["StripeModel"]},{"name":"StripeParamsModel","description":null,"location":"payments-core/com.stripe.android.model/-stripe-params-model/index.html","searchKeys":["StripeParamsModel"]},{"name":"StripePaymentSource","description":null,"location":"payments-core/com.stripe.android.model/-stripe-payment-source/index.html","searchKeys":["StripePaymentSource"]},{"name":"Token","description":null,"location":"payments-core/com.stripe.android.model/-token/index.html","searchKeys":["Token"]},{"name":"TokenizationMethod","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/index.html","searchKeys":["TokenizationMethod"]},{"name":"ApplePay","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/index.html","searchKeys":["ApplePay"]},{"name":"GooglePay","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/index.html","searchKeys":["GooglePay"]},{"name":"Masterpass","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/index.html","searchKeys":["Masterpass"]},{"name":"VisaCheckout","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/index.html","searchKeys":["VisaCheckout"]},{"name":"TokenParams","description":null,"location":"payments-core/com.stripe.android.model/-token-params/index.html","searchKeys":["TokenParams"]},{"name":"WeChat","description":null,"location":"payments-core/com.stripe.android.model/-we-chat/index.html","searchKeys":["WeChat"]},{"name":"WeChatPayNextAction","description":null,"location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/index.html","searchKeys":["WeChatPayNextAction"]},{"name":"com.stripe.android.model.parsers","description":null,"location":"payments-core/com.stripe.android.model.parsers/index.html","searchKeys":["com.stripe.android.model.parsers"]},{"name":"PaymentIntentJsonParser","description":null,"location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/index.html","searchKeys":["PaymentIntentJsonParser"]},{"name":"com.stripe.android.model.wallets","description":null,"location":"payments-core/com.stripe.android.model.wallets/index.html","searchKeys":["com.stripe.android.model.wallets"]},{"name":"Wallet","description":null,"location":"payments-core/com.stripe.android.model.wallets/-wallet/index.html","searchKeys":["Wallet"]},{"name":"com.stripe.android.networking","description":null,"location":"payments-core/com.stripe.android.networking/index.html","searchKeys":["com.stripe.android.networking"]},{"name":"ApiRequest","description":null,"location":"payments-core/com.stripe.android.networking/-api-request/index.html","searchKeys":["ApiRequest"]},{"name":"StripeRequest","description":null,"location":"payments-core/com.stripe.android.networking/-stripe-request/index.html","searchKeys":["StripeRequest"]},{"name":"com.stripe.android.payments","description":null,"location":"payments-core/com.stripe.android.payments/index.html","searchKeys":["com.stripe.android.payments"]},{"name":"PaymentFlowResult","description":null,"location":"payments-core/com.stripe.android.payments/-payment-flow-result/index.html","searchKeys":["PaymentFlowResult"]},{"name":"com.stripe.android.payments.core","description":null,"location":"payments-core/com.stripe.android.payments.core/index.html","searchKeys":["com.stripe.android.payments.core"]},{"name":"ActivityResultLauncherHost","description":null,"location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/index.html","searchKeys":["ActivityResultLauncherHost"]},{"name":"com.stripe.android.payments.core.authentication","description":null,"location":"payments-core/com.stripe.android.payments.core.authentication/index.html","searchKeys":["com.stripe.android.payments.core.authentication"]},{"name":"PaymentAuthenticator","description":null,"location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/index.html","searchKeys":["PaymentAuthenticator"]},{"name":"com.stripe.android.payments.core.injection","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/index.html","searchKeys":["com.stripe.android.payments.core.injection"]},{"name":"ENABLE_LOGGING","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-e-n-a-b-l-e_-l-o-g-g-i-n-g.html","searchKeys":["ENABLE_LOGGING"]},{"name":"IntentAuthenticatorKey","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/index.html","searchKeys":["IntentAuthenticatorKey"]},{"name":"IntentAuthenticatorMap","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/index.html","searchKeys":["IntentAuthenticatorMap"]},{"name":"IOContext","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/index.html","searchKeys":["IOContext"]},{"name":"UIContext","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/index.html","searchKeys":["UIContext"]},{"name":"com.stripe.android.paymentsheet","description":null,"location":"payments-core/com.stripe.android.paymentsheet/index.html","searchKeys":["com.stripe.android.paymentsheet"]},{"name":"PaymentOptionCallback","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/index.html","searchKeys":["PaymentOptionCallback"]},{"name":"PaymentSheet","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html","searchKeys":["PaymentSheet"]},{"name":"PaymentSheetContract","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/index.html","searchKeys":["PaymentSheetContract"]},{"name":"PaymentSheetResult","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/index.html","searchKeys":["PaymentSheetResult"]},{"name":"PaymentSheetResultCallback","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/index.html","searchKeys":["PaymentSheetResultCallback"]},{"name":"com.stripe.android.paymentsheet.model","description":null,"location":"payments-core/com.stripe.android.paymentsheet.model/index.html","searchKeys":["com.stripe.android.paymentsheet.model"]},{"name":"PaymentOption","description":null,"location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/index.html","searchKeys":["PaymentOption"]},{"name":"com.stripe.android.view","description":null,"location":"payments-core/com.stripe.android.view/index.html","searchKeys":["com.stripe.android.view"]},{"name":"ActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-activity-starter/index.html","searchKeys":["ActivityStarter"]},{"name":"AddPaymentMethodActivity","description":null,"location":"payments-core/com.stripe.android.view/-add-payment-method-activity/index.html","searchKeys":["AddPaymentMethodActivity"]},{"name":"AddPaymentMethodActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/index.html","searchKeys":["AddPaymentMethodActivityStarter"]},{"name":"AuthActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-auth-activity-starter/index.html","searchKeys":["AuthActivityStarter"]},{"name":"AuthActivityStarterHost","description":null,"location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/index.html","searchKeys":["AuthActivityStarterHost"]},{"name":"BecsDebitMandateAcceptanceTextFactory","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/index.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory"]},{"name":"BecsDebitMandateAcceptanceTextView","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/index.html","searchKeys":["BecsDebitMandateAcceptanceTextView"]},{"name":"BecsDebitWidget","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-widget/index.html","searchKeys":["BecsDebitWidget"]},{"name":"BillingAddressFields","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/index.html","searchKeys":["BillingAddressFields"]},{"name":"Full","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/index.html","searchKeys":["Full"]},{"name":"None","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/index.html","searchKeys":["None"]},{"name":"PostalCode","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/index.html","searchKeys":["PostalCode"]},{"name":"CardFormView","description":null,"location":"payments-core/com.stripe.android.view/-card-form-view/index.html","searchKeys":["CardFormView"]},{"name":"CardInputListener","description":null,"location":"payments-core/com.stripe.android.view/-card-input-listener/index.html","searchKeys":["CardInputListener"]},{"name":"CardInputWidget","description":null,"location":"payments-core/com.stripe.android.view/-card-input-widget/index.html","searchKeys":["CardInputWidget"]},{"name":"CardMultilineWidget","description":null,"location":"payments-core/com.stripe.android.view/-card-multiline-widget/index.html","searchKeys":["CardMultilineWidget"]},{"name":"CardNumberEditText","description":null,"location":"payments-core/com.stripe.android.view/-card-number-edit-text/index.html","searchKeys":["CardNumberEditText"]},{"name":"CardValidCallback","description":null,"location":"payments-core/com.stripe.android.view/-card-valid-callback/index.html","searchKeys":["CardValidCallback"]},{"name":"CvcEditText","description":null,"location":"payments-core/com.stripe.android.view/-cvc-edit-text/index.html","searchKeys":["CvcEditText"]},{"name":"ExpiryDateEditText","description":null,"location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/index.html","searchKeys":["ExpiryDateEditText"]},{"name":"PaymentAuthWebViewActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/index.html","searchKeys":["PaymentAuthWebViewActivity"]},{"name":"PaymentFlowActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-activity/index.html","searchKeys":["PaymentFlowActivity"]},{"name":"PaymentFlowActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/index.html","searchKeys":["PaymentFlowActivityStarter"]},{"name":"PaymentFlowViewPager","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/index.html","searchKeys":["PaymentFlowViewPager"]},{"name":"PaymentMethodsActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-methods-activity/index.html","searchKeys":["PaymentMethodsActivity"]},{"name":"PaymentMethodsActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/index.html","searchKeys":["PaymentMethodsActivityStarter"]},{"name":"PaymentUtils","description":null,"location":"payments-core/com.stripe.android.view/-payment-utils/index.html","searchKeys":["PaymentUtils"]},{"name":"PostalCodeEditText","description":null,"location":"payments-core/com.stripe.android.view/-postal-code-edit-text/index.html","searchKeys":["PostalCodeEditText"]},{"name":"ShippingInfoWidget","description":null,"location":"payments-core/com.stripe.android.view/-shipping-info-widget/index.html","searchKeys":["ShippingInfoWidget"]},{"name":"StripeActivity","description":null,"location":"payments-core/com.stripe.android.view/-stripe-activity/index.html","searchKeys":["StripeActivity"]},{"name":"StripeEditText","description":null,"location":"payments-core/com.stripe.android.view/-stripe-edit-text/index.html","searchKeys":["StripeEditText"]},{"name":"com.stripe.android.view.i18n","description":null,"location":"payments-core/com.stripe.android.view.i18n/index.html","searchKeys":["com.stripe.android.view.i18n"]},{"name":"ErrorMessageTranslator","description":null,"location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/index.html","searchKeys":["ErrorMessageTranslator"]},{"name":"TranslatorManager","description":null,"location":"payments-core/com.stripe.android.view.i18n/-translator-manager/index.html","searchKeys":["TranslatorManager"]},{"name":"paymentsheet","description":null,"location":"paymentsheet/index.html","searchKeys":["paymentsheet"]},{"name":"com.stripe.android.paymentsheet.forms","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/index.html","searchKeys":["com.stripe.android.paymentsheet.forms"]},{"name":"FormFieldEntry","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/index.html","searchKeys":["FormFieldEntry"]},{"name":"FormFieldValues","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/index.html","searchKeys":["FormFieldValues"]},{"name":"FormViewModel","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html","searchKeys":["FormViewModel"]},{"name":"com.stripe.android.paymentsheet.model","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/index.html","searchKeys":["com.stripe.android.paymentsheet.model"]},{"name":"SupportedPaymentMethod","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html","searchKeys":["SupportedPaymentMethod"]},{"name":"Bancontact","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/index.html","searchKeys":["Bancontact"]},{"name":"Card","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/index.html","searchKeys":["Card"]},{"name":"Ideal","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/index.html","searchKeys":["Ideal"]},{"name":"SepaDebit","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit"]},{"name":"Sofort","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html","searchKeys":["Sofort"]},{"name":"com.stripe.android.paymentsheet.paymentdatacollection","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/index.html","searchKeys":["com.stripe.android.paymentsheet.paymentdatacollection"]},{"name":"ComposeFormDataCollectionFragment","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/index.html","searchKeys":["ComposeFormDataCollectionFragment"]},{"name":"com.stripe.android.paymentsheet.specifications","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/index.html","searchKeys":["com.stripe.android.paymentsheet.specifications"]},{"name":"FormItemSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/index.html","searchKeys":["FormItemSpec"]},{"name":"FormSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/index.html","searchKeys":["FormSpec"]},{"name":"IdentifierSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/index.html","searchKeys":["IdentifierSpec"]},{"name":"LayoutSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/index.html","searchKeys":["LayoutSpec"]},{"name":"RequiredItemSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/index.html","searchKeys":["RequiredItemSpec"]},{"name":"SectionFieldSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html","searchKeys":["SectionFieldSpec"]}] \ No newline at end of file +[{"name":"payments-core","description":null,"location":"payments-core/index.html","searchKeys":["payments-core"]},{"name":"com.stripe.android","description":null,"location":"payments-core/com.stripe.android/index.html","searchKeys":["com.stripe.android"]},{"name":"AlipayAuthenticator","description":null,"location":"payments-core/com.stripe.android/-alipay-authenticator/index.html","searchKeys":["AlipayAuthenticator"]},{"name":"ApiResultCallback","description":null,"location":"payments-core/com.stripe.android/-api-result-callback/index.html","searchKeys":["ApiResultCallback"]},{"name":"AppInfo","description":null,"location":"payments-core/com.stripe.android/-app-info/index.html","searchKeys":["AppInfo"]},{"name":"confirmAlipayPayment()","description":null,"location":"payments-core/com.stripe.android/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment()"]},{"name":"confirmPaymentIntent()","description":null,"location":"payments-core/com.stripe.android/confirm-payment-intent.html","searchKeys":["confirmPaymentIntent()"]},{"name":"confirmSetupIntent()","description":null,"location":"payments-core/com.stripe.android/confirm-setup-intent.html","searchKeys":["confirmSetupIntent()"]},{"name":"confirmWeChatPayPayment()","description":null,"location":"payments-core/com.stripe.android/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment()"]},{"name":"createAccountToken()","description":null,"location":"payments-core/com.stripe.android/create-account-token.html","searchKeys":["createAccountToken()"]},{"name":"createBankAccountToken()","description":null,"location":"payments-core/com.stripe.android/create-bank-account-token.html","searchKeys":["createBankAccountToken()"]},{"name":"createCardToken()","description":null,"location":"payments-core/com.stripe.android/create-card-token.html","searchKeys":["createCardToken()"]},{"name":"createCvcUpdateToken()","description":null,"location":"payments-core/com.stripe.android/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken()"]},{"name":"createFile()","description":null,"location":"payments-core/com.stripe.android/create-file.html","searchKeys":["createFile()"]},{"name":"createPaymentMethod()","description":null,"location":"payments-core/com.stripe.android/create-payment-method.html","searchKeys":["createPaymentMethod()"]},{"name":"createPersonToken()","description":null,"location":"payments-core/com.stripe.android/create-person-token.html","searchKeys":["createPersonToken()"]},{"name":"createPiiToken()","description":null,"location":"payments-core/com.stripe.android/create-pii-token.html","searchKeys":["createPiiToken()"]},{"name":"createRadarSession()","description":null,"location":"payments-core/com.stripe.android/create-radar-session.html","searchKeys":["createRadarSession()"]},{"name":"createSource()","description":null,"location":"payments-core/com.stripe.android/create-source.html","searchKeys":["createSource()"]},{"name":"CustomerSession","description":null,"location":"payments-core/com.stripe.android/-customer-session/index.html","searchKeys":["CustomerSession"]},{"name":"EphemeralKey","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key/index.html","searchKeys":["EphemeralKey"]},{"name":"EphemeralKeyProvider","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key-provider/index.html","searchKeys":["EphemeralKeyProvider"]},{"name":"EphemeralKeyUpdateListener","description":null,"location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/index.html","searchKeys":["EphemeralKeyUpdateListener"]},{"name":"getAuthenticateSourceResult()","description":null,"location":"payments-core/com.stripe.android/get-authenticate-source-result.html","searchKeys":["getAuthenticateSourceResult()"]},{"name":"getPaymentIntentResult()","description":null,"location":"payments-core/com.stripe.android/get-payment-intent-result.html","searchKeys":["getPaymentIntentResult()"]},{"name":"getSetupIntentResult()","description":null,"location":"payments-core/com.stripe.android/get-setup-intent-result.html","searchKeys":["getSetupIntentResult()"]},{"name":"GooglePayConfig","description":null,"location":"payments-core/com.stripe.android/-google-pay-config/index.html","searchKeys":["GooglePayConfig"]},{"name":"GooglePayJsonFactory","description":null,"location":"payments-core/com.stripe.android/-google-pay-json-factory/index.html","searchKeys":["GooglePayJsonFactory"]},{"name":"IssuingCardPinService","description":null,"location":"payments-core/com.stripe.android/-issuing-card-pin-service/index.html","searchKeys":["IssuingCardPinService"]},{"name":"Logger","description":null,"location":"payments-core/com.stripe.android/-logger/index.html","searchKeys":["Logger"]},{"name":"PaymentAuthConfig","description":null,"location":"payments-core/com.stripe.android/-payment-auth-config/index.html","searchKeys":["PaymentAuthConfig"]},{"name":"PaymentConfiguration","description":null,"location":"payments-core/com.stripe.android/-payment-configuration/index.html","searchKeys":["PaymentConfiguration"]},{"name":"PaymentIntentResult","description":null,"location":"payments-core/com.stripe.android/-payment-intent-result/index.html","searchKeys":["PaymentIntentResult"]},{"name":"PaymentSession","description":null,"location":"payments-core/com.stripe.android/-payment-session/index.html","searchKeys":["PaymentSession"]},{"name":"PaymentSessionConfig","description":null,"location":"payments-core/com.stripe.android/-payment-session-config/index.html","searchKeys":["PaymentSessionConfig"]},{"name":"PaymentSessionData","description":null,"location":"payments-core/com.stripe.android/-payment-session-data/index.html","searchKeys":["PaymentSessionData"]},{"name":"PayWithGoogleUtils","description":null,"location":"payments-core/com.stripe.android/-pay-with-google-utils/index.html","searchKeys":["PayWithGoogleUtils"]},{"name":"retrievePaymentIntent()","description":null,"location":"payments-core/com.stripe.android/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent()"]},{"name":"retrieveSetupIntent()","description":null,"location":"payments-core/com.stripe.android/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent()"]},{"name":"retrieveSource()","description":null,"location":"payments-core/com.stripe.android/retrieve-source.html","searchKeys":["retrieveSource()"]},{"name":"SetupIntentResult","description":null,"location":"payments-core/com.stripe.android/-setup-intent-result/index.html","searchKeys":["SetupIntentResult"]},{"name":"Stripe","description":null,"location":"payments-core/com.stripe.android/-stripe/index.html","searchKeys":["Stripe"]},{"name":"StripeApiBeta","description":null,"location":"payments-core/com.stripe.android/-stripe-api-beta/index.html","searchKeys":["StripeApiBeta"]},{"name":"WeChatPayV1","description":null,"location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/index.html","searchKeys":["WeChatPayV1"]},{"name":"StripeError","description":null,"location":"payments-core/com.stripe.android/-stripe-error/index.html","searchKeys":["StripeError"]},{"name":"StripeIntentResult","description":null,"location":"payments-core/com.stripe.android/-stripe-intent-result/index.html","searchKeys":["StripeIntentResult"]},{"name":"com.stripe.android.exception","description":null,"location":"payments-core/com.stripe.android.exception/index.html","searchKeys":["com.stripe.android.exception"]},{"name":"APIConnectionException","description":null,"location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/index.html","searchKeys":["APIConnectionException"]},{"name":"APIException","description":null,"location":"payments-core/com.stripe.android.exception/-a-p-i-exception/index.html","searchKeys":["APIException"]},{"name":"AuthenticationException","description":null,"location":"payments-core/com.stripe.android.exception/-authentication-exception/index.html","searchKeys":["AuthenticationException"]},{"name":"CardException","description":null,"location":"payments-core/com.stripe.android.exception/-card-exception/index.html","searchKeys":["CardException"]},{"name":"InvalidRequestException","description":null,"location":"payments-core/com.stripe.android.exception/-invalid-request-exception/index.html","searchKeys":["InvalidRequestException"]},{"name":"PermissionException","description":null,"location":"payments-core/com.stripe.android.exception/-permission-exception/index.html","searchKeys":["PermissionException"]},{"name":"RateLimitException","description":null,"location":"payments-core/com.stripe.android.exception/-rate-limit-exception/index.html","searchKeys":["RateLimitException"]},{"name":"StripeException","description":null,"location":"payments-core/com.stripe.android.exception/-stripe-exception/index.html","searchKeys":["StripeException"]},{"name":"com.stripe.android.googlepaylauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/index.html","searchKeys":["com.stripe.android.googlepaylauncher"]},{"name":"GooglePayEnvironment","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/index.html","searchKeys":["GooglePayEnvironment"]},{"name":"Production","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/index.html","searchKeys":["Production"]},{"name":"Test","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/index.html","searchKeys":["Test"]},{"name":"GooglePayLauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/index.html","searchKeys":["GooglePayLauncher"]},{"name":"GooglePayLauncherContract","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/index.html","searchKeys":["GooglePayLauncherContract"]},{"name":"GooglePayLauncherModule","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-module/index.html","searchKeys":["GooglePayLauncherModule"]},{"name":"GooglePayPaymentMethodLauncher","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html","searchKeys":["GooglePayPaymentMethodLauncher"]},{"name":"GooglePayPaymentMethodLauncherContract","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html","searchKeys":["GooglePayPaymentMethodLauncherContract"]},{"name":"GooglePayPaymentMethodLauncherFactory","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-factory/index.html","searchKeys":["GooglePayPaymentMethodLauncherFactory"]},{"name":"GooglePayRepository","description":null,"location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/index.html","searchKeys":["GooglePayRepository"]},{"name":"com.stripe.android.model","description":null,"location":"payments-core/com.stripe.android.model/index.html","searchKeys":["com.stripe.android.model"]},{"name":"AccountParams","description":null,"location":"payments-core/com.stripe.android.model/-account-params/index.html","searchKeys":["AccountParams"]},{"name":"Address","description":null,"location":"payments-core/com.stripe.android.model/-address/index.html","searchKeys":["Address"]},{"name":"AddressJapanParams","description":null,"location":"payments-core/com.stripe.android.model/-address-japan-params/index.html","searchKeys":["AddressJapanParams"]},{"name":"BankAccount","description":null,"location":"payments-core/com.stripe.android.model/-bank-account/index.html","searchKeys":["BankAccount"]},{"name":"BankAccountTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-bank-account-token-params/index.html","searchKeys":["BankAccountTokenParams"]},{"name":"BankAccountTokenParamsFixtures","description":null,"location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/index.html","searchKeys":["BankAccountTokenParamsFixtures"]},{"name":"Card","description":null,"location":"payments-core/com.stripe.android.model/-card/index.html","searchKeys":["Card"]},{"name":"CardBrand","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/index.html","searchKeys":["CardBrand"]},{"name":"AmericanExpress","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-american-express/index.html","searchKeys":["AmericanExpress"]},{"name":"DinersClub","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/index.html","searchKeys":["DinersClub"]},{"name":"Discover","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-discover/index.html","searchKeys":["Discover"]},{"name":"JCB","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/index.html","searchKeys":["JCB"]},{"name":"MasterCard","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-master-card/index.html","searchKeys":["MasterCard"]},{"name":"UnionPay","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/index.html","searchKeys":["UnionPay"]},{"name":"Unknown","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-unknown/index.html","searchKeys":["Unknown"]},{"name":"Visa","description":null,"location":"payments-core/com.stripe.android.model/-card-brand/-visa/index.html","searchKeys":["Visa"]},{"name":"CardFunding","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/index.html","searchKeys":["CardFunding"]},{"name":"Credit","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-credit/index.html","searchKeys":["Credit"]},{"name":"Debit","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-debit/index.html","searchKeys":["Debit"]},{"name":"Prepaid","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/index.html","searchKeys":["Prepaid"]},{"name":"Unknown","description":null,"location":"payments-core/com.stripe.android.model/-card-funding/-unknown/index.html","searchKeys":["Unknown"]},{"name":"CardParams","description":null,"location":"payments-core/com.stripe.android.model/-card-params/index.html","searchKeys":["CardParams"]},{"name":"ConfirmPaymentIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/index.html","searchKeys":["ConfirmPaymentIntentParams"]},{"name":"ConfirmSetupIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/index.html","searchKeys":["ConfirmSetupIntentParams"]},{"name":"ConfirmStripeIntentParams","description":null,"location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/index.html","searchKeys":["ConfirmStripeIntentParams"]},{"name":"Customer","description":null,"location":"payments-core/com.stripe.android.model/-customer/index.html","searchKeys":["Customer"]},{"name":"CustomerBankAccount","description":null,"location":"payments-core/com.stripe.android.model/-customer-bank-account/index.html","searchKeys":["CustomerBankAccount"]},{"name":"CustomerCard","description":null,"location":"payments-core/com.stripe.android.model/-customer-card/index.html","searchKeys":["CustomerCard"]},{"name":"CustomerPaymentSource","description":null,"location":"payments-core/com.stripe.android.model/-customer-payment-source/index.html","searchKeys":["CustomerPaymentSource"]},{"name":"CustomerSource","description":null,"location":"payments-core/com.stripe.android.model/-customer-source/index.html","searchKeys":["CustomerSource"]},{"name":"CvcTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-cvc-token-params/index.html","searchKeys":["CvcTokenParams"]},{"name":"DateOfBirth","description":null,"location":"payments-core/com.stripe.android.model/-date-of-birth/index.html","searchKeys":["DateOfBirth"]},{"name":"ExpirationDate","description":null,"location":"payments-core/com.stripe.android.model/-expiration-date/index.html","searchKeys":["ExpirationDate"]},{"name":"getRequestCode()","description":null,"location":"payments-core/com.stripe.android.model/get-request-code.html","searchKeys":["getRequestCode()"]},{"name":"GooglePayResult","description":null,"location":"payments-core/com.stripe.android.model/-google-pay-result/index.html","searchKeys":["GooglePayResult"]},{"name":"IssuingCardPin","description":null,"location":"payments-core/com.stripe.android.model/-issuing-card-pin/index.html","searchKeys":["IssuingCardPin"]},{"name":"KlarnaSourceParams","description":null,"location":"payments-core/com.stripe.android.model/-klarna-source-params/index.html","searchKeys":["KlarnaSourceParams"]},{"name":"MandateDataParams","description":null,"location":"payments-core/com.stripe.android.model/-mandate-data-params/index.html","searchKeys":["MandateDataParams"]},{"name":"PaymentIntent","description":null,"location":"payments-core/com.stripe.android.model/-payment-intent/index.html","searchKeys":["PaymentIntent"]},{"name":"PaymentMethod","description":null,"location":"payments-core/com.stripe.android.model/-payment-method/index.html","searchKeys":["PaymentMethod"]},{"name":"PaymentMethodCreateParams","description":null,"location":"payments-core/com.stripe.android.model/-payment-method-create-params/index.html","searchKeys":["PaymentMethodCreateParams"]},{"name":"PaymentMethodOptionsParams","description":null,"location":"payments-core/com.stripe.android.model/-payment-method-options-params/index.html","searchKeys":["PaymentMethodOptionsParams"]},{"name":"PersonTokenParams","description":null,"location":"payments-core/com.stripe.android.model/-person-token-params/index.html","searchKeys":["PersonTokenParams"]},{"name":"RadarSession","description":null,"location":"payments-core/com.stripe.android.model/-radar-session/index.html","searchKeys":["RadarSession"]},{"name":"SetupIntent","description":null,"location":"payments-core/com.stripe.android.model/-setup-intent/index.html","searchKeys":["SetupIntent"]},{"name":"ShippingInformation","description":null,"location":"payments-core/com.stripe.android.model/-shipping-information/index.html","searchKeys":["ShippingInformation"]},{"name":"ShippingMethod","description":null,"location":"payments-core/com.stripe.android.model/-shipping-method/index.html","searchKeys":["ShippingMethod"]},{"name":"Source","description":null,"location":"payments-core/com.stripe.android.model/-source/index.html","searchKeys":["Source"]},{"name":"SourceOrder","description":null,"location":"payments-core/com.stripe.android.model/-source-order/index.html","searchKeys":["SourceOrder"]},{"name":"SourceOrderParams","description":null,"location":"payments-core/com.stripe.android.model/-source-order-params/index.html","searchKeys":["SourceOrderParams"]},{"name":"SourceParams","description":null,"location":"payments-core/com.stripe.android.model/-source-params/index.html","searchKeys":["SourceParams"]},{"name":"SourceTypeModel","description":null,"location":"payments-core/com.stripe.android.model/-source-type-model/index.html","searchKeys":["SourceTypeModel"]},{"name":"StripeFile","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file/index.html","searchKeys":["StripeFile"]},{"name":"StripeFileParams","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-params/index.html","searchKeys":["StripeFileParams"]},{"name":"StripeFilePurpose","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/index.html","searchKeys":["StripeFilePurpose"]},{"name":"BusinessIcon","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/index.html","searchKeys":["BusinessIcon"]},{"name":"BusinessLogo","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/index.html","searchKeys":["BusinessLogo"]},{"name":"CustomerSignature","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/index.html","searchKeys":["CustomerSignature"]},{"name":"DisputeEvidence","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/index.html","searchKeys":["DisputeEvidence"]},{"name":"IdentityDocument","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/index.html","searchKeys":["IdentityDocument"]},{"name":"PciDocument","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/index.html","searchKeys":["PciDocument"]},{"name":"TaxDocumentUserUpload","description":null,"location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/index.html","searchKeys":["TaxDocumentUserUpload"]},{"name":"StripeIntent","description":null,"location":"payments-core/com.stripe.android.model/-stripe-intent/index.html","searchKeys":["StripeIntent"]},{"name":"StripeModel","description":null,"location":"payments-core/com.stripe.android.model/-stripe-model/index.html","searchKeys":["StripeModel"]},{"name":"StripeParamsModel","description":null,"location":"payments-core/com.stripe.android.model/-stripe-params-model/index.html","searchKeys":["StripeParamsModel"]},{"name":"StripePaymentSource","description":null,"location":"payments-core/com.stripe.android.model/-stripe-payment-source/index.html","searchKeys":["StripePaymentSource"]},{"name":"Token","description":null,"location":"payments-core/com.stripe.android.model/-token/index.html","searchKeys":["Token"]},{"name":"TokenizationMethod","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/index.html","searchKeys":["TokenizationMethod"]},{"name":"ApplePay","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/index.html","searchKeys":["ApplePay"]},{"name":"GooglePay","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/index.html","searchKeys":["GooglePay"]},{"name":"Masterpass","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/index.html","searchKeys":["Masterpass"]},{"name":"VisaCheckout","description":null,"location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/index.html","searchKeys":["VisaCheckout"]},{"name":"TokenParams","description":null,"location":"payments-core/com.stripe.android.model/-token-params/index.html","searchKeys":["TokenParams"]},{"name":"WeChat","description":null,"location":"payments-core/com.stripe.android.model/-we-chat/index.html","searchKeys":["WeChat"]},{"name":"WeChatPayNextAction","description":null,"location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/index.html","searchKeys":["WeChatPayNextAction"]},{"name":"com.stripe.android.model.parsers","description":null,"location":"payments-core/com.stripe.android.model.parsers/index.html","searchKeys":["com.stripe.android.model.parsers"]},{"name":"PaymentIntentJsonParser","description":null,"location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/index.html","searchKeys":["PaymentIntentJsonParser"]},{"name":"com.stripe.android.model.wallets","description":null,"location":"payments-core/com.stripe.android.model.wallets/index.html","searchKeys":["com.stripe.android.model.wallets"]},{"name":"Wallet","description":null,"location":"payments-core/com.stripe.android.model.wallets/-wallet/index.html","searchKeys":["Wallet"]},{"name":"com.stripe.android.networking","description":null,"location":"payments-core/com.stripe.android.networking/index.html","searchKeys":["com.stripe.android.networking"]},{"name":"AnalyticsRequest","description":null,"location":"payments-core/com.stripe.android.networking/-analytics-request/index.html","searchKeys":["AnalyticsRequest"]},{"name":"AnalyticsRequestExecutor","description":null,"location":"payments-core/com.stripe.android.networking/-analytics-request-executor/index.html","searchKeys":["AnalyticsRequestExecutor"]},{"name":"AnalyticsRequestFactory","description":null,"location":"payments-core/com.stripe.android.networking/-analytics-request-factory/index.html","searchKeys":["AnalyticsRequestFactory"]},{"name":"ApiRequest","description":null,"location":"payments-core/com.stripe.android.networking/-api-request/index.html","searchKeys":["ApiRequest"]},{"name":"StripeRequest","description":null,"location":"payments-core/com.stripe.android.networking/-stripe-request/index.html","searchKeys":["StripeRequest"]},{"name":"com.stripe.android.payments","description":null,"location":"payments-core/com.stripe.android.payments/index.html","searchKeys":["com.stripe.android.payments"]},{"name":"PaymentFlowResult","description":null,"location":"payments-core/com.stripe.android.payments/-payment-flow-result/index.html","searchKeys":["PaymentFlowResult"]},{"name":"com.stripe.android.payments.core","description":null,"location":"payments-core/com.stripe.android.payments.core/index.html","searchKeys":["com.stripe.android.payments.core"]},{"name":"ActivityResultLauncherHost","description":null,"location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/index.html","searchKeys":["ActivityResultLauncherHost"]},{"name":"com.stripe.android.payments.core.authentication","description":null,"location":"payments-core/com.stripe.android.payments.core.authentication/index.html","searchKeys":["com.stripe.android.payments.core.authentication"]},{"name":"PaymentAuthenticator","description":null,"location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/index.html","searchKeys":["PaymentAuthenticator"]},{"name":"com.stripe.android.payments.core.injection","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/index.html","searchKeys":["com.stripe.android.payments.core.injection"]},{"name":"ENABLE_LOGGING","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-e-n-a-b-l-e_-l-o-g-g-i-n-g.html","searchKeys":["ENABLE_LOGGING"]},{"name":"InjectorKey","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-injector-key/index.html","searchKeys":["InjectorKey"]},{"name":"IntentAuthenticatorKey","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/index.html","searchKeys":["IntentAuthenticatorKey"]},{"name":"IntentAuthenticatorMap","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/index.html","searchKeys":["IntentAuthenticatorMap"]},{"name":"IOContext","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/index.html","searchKeys":["IOContext"]},{"name":"PRODUCT_USAGE","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-p-r-o-d-u-c-t_-u-s-a-g-e.html","searchKeys":["PRODUCT_USAGE"]},{"name":"UIContext","description":null,"location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/index.html","searchKeys":["UIContext"]},{"name":"com.stripe.android.paymentsheet","description":null,"location":"payments-core/com.stripe.android.paymentsheet/index.html","searchKeys":["com.stripe.android.paymentsheet"]},{"name":"PaymentOptionCallback","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/index.html","searchKeys":["PaymentOptionCallback"]},{"name":"PaymentSheet","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html","searchKeys":["PaymentSheet"]},{"name":"PaymentSheetContract","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/index.html","searchKeys":["PaymentSheetContract"]},{"name":"PaymentSheetResult","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/index.html","searchKeys":["PaymentSheetResult"]},{"name":"PaymentSheetResultCallback","description":null,"location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/index.html","searchKeys":["PaymentSheetResultCallback"]},{"name":"com.stripe.android.paymentsheet.model","description":null,"location":"payments-core/com.stripe.android.paymentsheet.model/index.html","searchKeys":["com.stripe.android.paymentsheet.model"]},{"name":"PaymentOption","description":null,"location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/index.html","searchKeys":["PaymentOption"]},{"name":"com.stripe.android.view","description":null,"location":"payments-core/com.stripe.android.view/index.html","searchKeys":["com.stripe.android.view"]},{"name":"ActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-activity-starter/index.html","searchKeys":["ActivityStarter"]},{"name":"AddPaymentMethodActivity","description":null,"location":"payments-core/com.stripe.android.view/-add-payment-method-activity/index.html","searchKeys":["AddPaymentMethodActivity"]},{"name":"AddPaymentMethodActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/index.html","searchKeys":["AddPaymentMethodActivityStarter"]},{"name":"AuthActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-auth-activity-starter/index.html","searchKeys":["AuthActivityStarter"]},{"name":"AuthActivityStarterHost","description":null,"location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/index.html","searchKeys":["AuthActivityStarterHost"]},{"name":"BecsDebitMandateAcceptanceTextFactory","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/index.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory"]},{"name":"BecsDebitMandateAcceptanceTextView","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/index.html","searchKeys":["BecsDebitMandateAcceptanceTextView"]},{"name":"BecsDebitWidget","description":null,"location":"payments-core/com.stripe.android.view/-becs-debit-widget/index.html","searchKeys":["BecsDebitWidget"]},{"name":"BillingAddressFields","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/index.html","searchKeys":["BillingAddressFields"]},{"name":"Full","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/index.html","searchKeys":["Full"]},{"name":"None","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/index.html","searchKeys":["None"]},{"name":"PostalCode","description":null,"location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/index.html","searchKeys":["PostalCode"]},{"name":"CardFormView","description":null,"location":"payments-core/com.stripe.android.view/-card-form-view/index.html","searchKeys":["CardFormView"]},{"name":"CardInputListener","description":null,"location":"payments-core/com.stripe.android.view/-card-input-listener/index.html","searchKeys":["CardInputListener"]},{"name":"CardInputWidget","description":null,"location":"payments-core/com.stripe.android.view/-card-input-widget/index.html","searchKeys":["CardInputWidget"]},{"name":"CardMultilineWidget","description":null,"location":"payments-core/com.stripe.android.view/-card-multiline-widget/index.html","searchKeys":["CardMultilineWidget"]},{"name":"CardNumberEditText","description":null,"location":"payments-core/com.stripe.android.view/-card-number-edit-text/index.html","searchKeys":["CardNumberEditText"]},{"name":"CardValidCallback","description":null,"location":"payments-core/com.stripe.android.view/-card-valid-callback/index.html","searchKeys":["CardValidCallback"]},{"name":"CvcEditText","description":null,"location":"payments-core/com.stripe.android.view/-cvc-edit-text/index.html","searchKeys":["CvcEditText"]},{"name":"ExpiryDateEditText","description":null,"location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/index.html","searchKeys":["ExpiryDateEditText"]},{"name":"PaymentAuthWebViewActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/index.html","searchKeys":["PaymentAuthWebViewActivity"]},{"name":"PaymentFlowActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-activity/index.html","searchKeys":["PaymentFlowActivity"]},{"name":"PaymentFlowActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/index.html","searchKeys":["PaymentFlowActivityStarter"]},{"name":"PaymentFlowViewPager","description":null,"location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/index.html","searchKeys":["PaymentFlowViewPager"]},{"name":"PaymentMethodsActivity","description":null,"location":"payments-core/com.stripe.android.view/-payment-methods-activity/index.html","searchKeys":["PaymentMethodsActivity"]},{"name":"PaymentMethodsActivityStarter","description":null,"location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/index.html","searchKeys":["PaymentMethodsActivityStarter"]},{"name":"PaymentUtils","description":null,"location":"payments-core/com.stripe.android.view/-payment-utils/index.html","searchKeys":["PaymentUtils"]},{"name":"PostalCodeEditText","description":null,"location":"payments-core/com.stripe.android.view/-postal-code-edit-text/index.html","searchKeys":["PostalCodeEditText"]},{"name":"ShippingInfoWidget","description":null,"location":"payments-core/com.stripe.android.view/-shipping-info-widget/index.html","searchKeys":["ShippingInfoWidget"]},{"name":"StripeActivity","description":null,"location":"payments-core/com.stripe.android.view/-stripe-activity/index.html","searchKeys":["StripeActivity"]},{"name":"StripeEditText","description":null,"location":"payments-core/com.stripe.android.view/-stripe-edit-text/index.html","searchKeys":["StripeEditText"]},{"name":"com.stripe.android.view.i18n","description":null,"location":"payments-core/com.stripe.android.view.i18n/index.html","searchKeys":["com.stripe.android.view.i18n"]},{"name":"ErrorMessageTranslator","description":null,"location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/index.html","searchKeys":["ErrorMessageTranslator"]},{"name":"TranslatorManager","description":null,"location":"payments-core/com.stripe.android.view.i18n/-translator-manager/index.html","searchKeys":["TranslatorManager"]},{"name":"paymentsheet","description":null,"location":"paymentsheet/index.html","searchKeys":["paymentsheet"]},{"name":"com.stripe.android.paymentsheet.forms","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/index.html","searchKeys":["com.stripe.android.paymentsheet.forms"]},{"name":"FormFieldEntry","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/index.html","searchKeys":["FormFieldEntry"]},{"name":"FormFieldValues","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/index.html","searchKeys":["FormFieldValues"]},{"name":"FormViewModel","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html","searchKeys":["FormViewModel"]},{"name":"com.stripe.android.paymentsheet.model","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/index.html","searchKeys":["com.stripe.android.paymentsheet.model"]},{"name":"SupportedPaymentMethod","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html","searchKeys":["SupportedPaymentMethod"]},{"name":"Bancontact","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/index.html","searchKeys":["Bancontact"]},{"name":"Card","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/index.html","searchKeys":["Card"]},{"name":"Eps","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/index.html","searchKeys":["Eps"]},{"name":"Giropay","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/index.html","searchKeys":["Giropay"]},{"name":"Ideal","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/index.html","searchKeys":["Ideal"]},{"name":"P24","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/index.html","searchKeys":["P24"]},{"name":"SepaDebit","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit"]},{"name":"Sofort","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html","searchKeys":["Sofort"]},{"name":"com.stripe.android.paymentsheet.paymentdatacollection","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/index.html","searchKeys":["com.stripe.android.paymentsheet.paymentdatacollection"]},{"name":"ComposeFormDataCollectionFragment","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/index.html","searchKeys":["ComposeFormDataCollectionFragment"]},{"name":"com.stripe.android.paymentsheet.specifications","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/index.html","searchKeys":["com.stripe.android.paymentsheet.specifications"]},{"name":"DropdownItem","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-dropdown-item/index.html","searchKeys":["DropdownItem"]},{"name":"FormItemSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/index.html","searchKeys":["FormItemSpec"]},{"name":"FormSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/index.html","searchKeys":["FormSpec"]},{"name":"IdentifierSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/index.html","searchKeys":["IdentifierSpec"]},{"name":"LayoutSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/index.html","searchKeys":["LayoutSpec"]},{"name":"RequiredItemSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/index.html","searchKeys":["RequiredItemSpec"]},{"name":"SectionFieldSpec","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html","searchKeys":["SectionFieldSpec"]},{"name":"SupportedBankType","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/index.html","searchKeys":["SupportedBankType"]},{"name":"Eps","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-eps/index.html","searchKeys":["Eps"]},{"name":"Ideal","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-ideal/index.html","searchKeys":["Ideal"]},{"name":"P24","description":null,"location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-p24/index.html","searchKeys":["P24"]}] \ No newline at end of file diff --git a/docs/scripts/pages.json b/docs/scripts/pages.json index 8f276aa4d1d..953896b4840 100644 --- a/docs/scripts/pages.json +++ b/docs/scripts/pages.json @@ -1 +1 @@ -[{"name":"Abandoned(\"abandoned\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/index.html","searchKeys":["Abandoned","Abandoned(\"abandoned\")","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned"]},{"name":"Abandoned(\"abandoned\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/index.html","searchKeys":["Abandoned","Abandoned(\"abandoned\")","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned"]},{"name":"Account(\"account\")","description":"com.stripe.android.model.Token.Type.Account","location":"payments-core/com.stripe.android.model/-token/-type/-account/index.html","searchKeys":["Account","Account(\"account\")","com.stripe.android.model.Token.Type.Account"]},{"name":"AfterpayClearpay(\"afterpay_clearpay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/index.html","searchKeys":["AfterpayClearpay","AfterpayClearpay(\"afterpay_clearpay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay"]},{"name":"Alipay(\"alipay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Alipay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/index.html","searchKeys":["Alipay","Alipay(\"alipay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Alipay"]},{"name":"AlipayRedirect(\"alipay_handle_redirect\")","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/index.html","searchKeys":["AlipayRedirect","AlipayRedirect(\"alipay_handle_redirect\")","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect"]},{"name":"AmericanExpress(\"amex\", \"American Express\", R.drawable.stripe_ic_amex, cvcIcon, R.drawable.stripe_ic_cvc_amex, errorIcon, R.drawable.stripe_ic_error_amex, cvcLength, setOf(3, 4), defaultMaxLength, 15, pattern, Pattern.compile(\"^(34|37)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ))","description":"com.stripe.android.model.CardBrand.AmericanExpress","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/index.html","searchKeys":["AmericanExpress","AmericanExpress(\"amex\", \"American Express\", R.drawable.stripe_ic_amex, cvcIcon, R.drawable.stripe_ic_cvc_amex, errorIcon, R.drawable.stripe_ic_error_amex, cvcLength, setOf(3, 4), defaultMaxLength, 15, pattern, Pattern.compile(\"^(34|37)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ))","com.stripe.android.model.CardBrand.AmericanExpress"]},{"name":"ApiConnectionError(\"api_connection_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/index.html","searchKeys":["ApiConnectionError","ApiConnectionError(\"api_connection_error\")","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError"]},{"name":"ApiConnectionError(\"api_connection_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/index.html","searchKeys":["ApiConnectionError","ApiConnectionError(\"api_connection_error\")","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError"]},{"name":"ApiError(\"api_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/index.html","searchKeys":["ApiError","ApiError(\"api_error\")","com.stripe.android.model.PaymentIntent.Error.Type.ApiError"]},{"name":"ApiError(\"api_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/index.html","searchKeys":["ApiError","ApiError(\"api_error\")","com.stripe.android.model.SetupIntent.Error.Type.ApiError"]},{"name":"ApplePay(setOf(\"apple_pay\"))","description":"com.stripe.android.model.TokenizationMethod.ApplePay","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/index.html","searchKeys":["ApplePay","ApplePay(setOf(\"apple_pay\"))","com.stripe.android.model.TokenizationMethod.ApplePay"]},{"name":"AuBecsDebit(\"au_becs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","AuBecsDebit(\"au_becs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit"]},{"name":"AuthenticationError(\"authentication_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/index.html","searchKeys":["AuthenticationError","AuthenticationError(\"authentication_error\")","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError"]},{"name":"AuthenticationError(\"authentication_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/index.html","searchKeys":["AuthenticationError","AuthenticationError(\"authentication_error\")","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic"]},{"name":"BacsDebit(\"bacs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/index.html","searchKeys":["BacsDebit","BacsDebit(\"bacs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.BacsDebit"]},{"name":"Bancontact(\"bancontact\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/index.html","searchKeys":["Bancontact","Bancontact(\"bancontact\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Bancontact"]},{"name":"BankAccount(\"bank_account\")","description":"com.stripe.android.model.Token.Type.BankAccount","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/index.html","searchKeys":["BankAccount","BankAccount(\"bank_account\")","com.stripe.android.model.Token.Type.BankAccount"]},{"name":"Blik(\"blik\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Blik","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/index.html","searchKeys":["Blik","Blik(\"blik\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Blik"]},{"name":"BlikAuthorize(\"blik_authorize\")","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/index.html","searchKeys":["BlikAuthorize","BlikAuthorize(\"blik_authorize\")","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize"]},{"name":"Book(\"book\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/index.html","searchKeys":["Book","Book(\"book\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book"]},{"name":"BusinessIcon(\"business_icon\")","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/index.html","searchKeys":["BusinessIcon","BusinessIcon(\"business_icon\")","com.stripe.android.model.StripeFilePurpose.BusinessIcon"]},{"name":"BusinessLogo(\"business_logo\")","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/index.html","searchKeys":["BusinessLogo","BusinessLogo(\"business_logo\")","com.stripe.android.model.StripeFilePurpose.BusinessLogo"]},{"name":"Buy(\"buy\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/index.html","searchKeys":["Buy","Buy(\"buy\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy"]},{"name":"CANCEL()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/index.html","searchKeys":["CANCEL","CANCEL()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL"]},{"name":"CONTINUE()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/index.html","searchKeys":["CONTINUE","CONTINUE()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE"]},{"name":"Canceled(\"canceled\")","description":"com.stripe.android.model.Source.Status.Canceled","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/index.html","searchKeys":["Canceled","Canceled(\"canceled\")","com.stripe.android.model.Source.Status.Canceled"]},{"name":"Canceled(\"canceled\")","description":"com.stripe.android.model.StripeIntent.Status.Canceled","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/index.html","searchKeys":["Canceled","Canceled(\"canceled\")","com.stripe.android.model.StripeIntent.Status.Canceled"]},{"name":"Card(\"card\")","description":"com.stripe.android.model.Token.Type.Card","location":"payments-core/com.stripe.android.model/-token/-type/-card/index.html","searchKeys":["Card","Card(\"card\")","com.stripe.android.model.Token.Type.Card"]},{"name":"Card(\"card\", isReusable, true, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Card","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/index.html","searchKeys":["Card","Card(\"card\", isReusable, true, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Card"]},{"name":"CardError(\"card_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/index.html","searchKeys":["CardError","CardError(\"card_error\")","com.stripe.android.model.PaymentIntent.Error.Type.CardError"]},{"name":"CardError(\"card_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/index.html","searchKeys":["CardError","CardError(\"card_error\")","com.stripe.android.model.SetupIntent.Error.Type.CardError"]},{"name":"CardNumber()","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/index.html","searchKeys":["CardNumber","CardNumber()","com.stripe.android.view.CardInputListener.FocusField.CardNumber"]},{"name":"CardPresent(\"card_present\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/index.html","searchKeys":["CardPresent","CardPresent(\"card_present\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.CardPresent"]},{"name":"Chargeable(\"chargeable\")","description":"com.stripe.android.model.Source.Status.Chargeable","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/index.html","searchKeys":["Chargeable","Chargeable(\"chargeable\")","com.stripe.android.model.Source.Status.Chargeable"]},{"name":"City()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/index.html","searchKeys":["City","City()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City"]},{"name":"CodeVerification(\"code_verification\")","description":"com.stripe.android.model.Source.Flow.CodeVerification","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/index.html","searchKeys":["CodeVerification","CodeVerification(\"code_verification\")","com.stripe.android.model.Source.Flow.CodeVerification"]},{"name":"CodeVerification(\"code_verification\")","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/index.html","searchKeys":["CodeVerification","CodeVerification(\"code_verification\")","com.stripe.android.model.SourceParams.Flow.CodeVerification"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.AccountParams.BusinessType.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.AccountParams.BusinessType.Company"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.BankAccount.Type.Company","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.BankAccount.Type.Company"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.BankAccountTokenParams.Type.Company"]},{"name":"CompleteImmediatePurchase(\"COMPLETE_IMMEDIATE_PURCHASE\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/index.html","searchKeys":["CompleteImmediatePurchase","CompleteImmediatePurchase(\"COMPLETE_IMMEDIATE_PURCHASE\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase"]},{"name":"Consumed(\"consumed\")","description":"com.stripe.android.model.Source.Status.Consumed","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/index.html","searchKeys":["Consumed","Consumed(\"consumed\")","com.stripe.android.model.Source.Status.Consumed"]},{"name":"Continue(\"continue\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/index.html","searchKeys":["Continue","Continue(\"continue\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue"]},{"name":"Credit(\"credit\")","description":"com.stripe.android.model.CardFunding.Credit","location":"payments-core/com.stripe.android.model/-card-funding/-credit/index.html","searchKeys":["Credit","Credit(\"credit\")","com.stripe.android.model.CardFunding.Credit"]},{"name":"CustomerSignature(\"customer_signature\")","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/index.html","searchKeys":["CustomerSignature","CustomerSignature(\"customer_signature\")","com.stripe.android.model.StripeFilePurpose.CustomerSignature"]},{"name":"Cvc()","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/index.html","searchKeys":["Cvc","Cvc()","com.stripe.android.view.CardInputListener.FocusField.Cvc"]},{"name":"Cvc()","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/index.html","searchKeys":["Cvc","Cvc()","com.stripe.android.view.CardValidCallback.Fields.Cvc"]},{"name":"CvcUpdate(\"cvc_update\")","description":"com.stripe.android.model.Token.Type.CvcUpdate","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/index.html","searchKeys":["CvcUpdate","CvcUpdate(\"cvc_update\")","com.stripe.android.model.Token.Type.CvcUpdate"]},{"name":"Debit(\"debit\")","description":"com.stripe.android.model.CardFunding.Debit","location":"payments-core/com.stripe.android.model/-card-funding/-debit/index.html","searchKeys":["Debit","Debit(\"debit\")","com.stripe.android.model.CardFunding.Debit"]},{"name":"Default(\"DEFAULT\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/index.html","searchKeys":["Default","Default(\"DEFAULT\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default"]},{"name":"DinersClub(\"diners\", \"Diners Club\", R.drawable.stripe_ic_diners, defaultMaxLength, 16, pattern, Pattern.compile(\"^(36|30|38|39)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ), variantMaxLength, mapOf(\n Pattern.compile(\"^(36)[0-9]*$\") to 14\n ))","description":"com.stripe.android.model.CardBrand.DinersClub","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/index.html","searchKeys":["DinersClub","DinersClub(\"diners\", \"Diners Club\", R.drawable.stripe_ic_diners, defaultMaxLength, 16, pattern, Pattern.compile(\"^(36|30|38|39)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ), variantMaxLength, mapOf(\n Pattern.compile(\"^(36)[0-9]*$\") to 14\n ))","com.stripe.android.model.CardBrand.DinersClub"]},{"name":"Discover(\"discover\", \"Discover\", R.drawable.stripe_ic_discover, pattern, Pattern.compile(\"^(60|64|65)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6$\")\n ))","description":"com.stripe.android.model.CardBrand.Discover","location":"payments-core/com.stripe.android.model/-card-brand/-discover/index.html","searchKeys":["Discover","Discover(\"discover\", \"Discover\", R.drawable.stripe_ic_discover, pattern, Pattern.compile(\"^(60|64|65)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6$\")\n ))","com.stripe.android.model.CardBrand.Discover"]},{"name":"DisplayOxxoDetails(\"oxxo_display_details\")","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/index.html","searchKeys":["DisplayOxxoDetails","DisplayOxxoDetails(\"oxxo_display_details\")","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails"]},{"name":"DisputeEvidence(\"dispute_evidence\")","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/index.html","searchKeys":["DisputeEvidence","DisputeEvidence(\"dispute_evidence\")","com.stripe.android.model.StripeFilePurpose.DisputeEvidence"]},{"name":"Download(\"download\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/index.html","searchKeys":["Download","Download(\"download\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download"]},{"name":"Duplicate(\"duplicate\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/index.html","searchKeys":["Duplicate","Duplicate(\"duplicate\")","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate"]},{"name":"Duplicate(\"duplicate\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/index.html","searchKeys":["Duplicate","Duplicate(\"duplicate\")","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate"]},{"name":"EPHEMERAL_KEY_ERROR()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/index.html","searchKeys":["EPHEMERAL_KEY_ERROR","EPHEMERAL_KEY_ERROR()","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR"]},{"name":"Eps(\"eps\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Eps","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/index.html","searchKeys":["Eps","Eps(\"eps\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Eps"]},{"name":"Errored(\"errored\")","description":"com.stripe.android.model.BankAccount.Status.Errored","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/index.html","searchKeys":["Errored","Errored(\"errored\")","com.stripe.android.model.BankAccount.Status.Errored"]},{"name":"Estimated(\"ESTIMATED\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/index.html","searchKeys":["Estimated","Estimated(\"ESTIMATED\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated"]},{"name":"Expiry()","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/index.html","searchKeys":["Expiry","Expiry()","com.stripe.android.view.CardValidCallback.Fields.Expiry"]},{"name":"ExpiryDate()","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/index.html","searchKeys":["ExpiryDate","ExpiryDate()","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.CodeVerification.Status.Failed"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.Redirect.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.Redirect.Status.Failed"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.Status.Failed"]},{"name":"FailedInvoice(\"failed_invoice\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/index.html","searchKeys":["FailedInvoice","FailedInvoice(\"failed_invoice\")","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice"]},{"name":"Final(\"FINAL\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/index.html","searchKeys":["Final","Final(\"FINAL\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final"]},{"name":"Fpx(\"fpx\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Fpx","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/index.html","searchKeys":["Fpx","Fpx(\"fpx\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Fpx"]},{"name":"Fraudulent(\"fraudulent\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/index.html","searchKeys":["Fraudulent","Fraudulent(\"fraudulent\")","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full"]},{"name":"Full()","description":"com.stripe.android.view.BillingAddressFields.Full","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/index.html","searchKeys":["Full","Full()","com.stripe.android.view.BillingAddressFields.Full"]},{"name":"Giropay(\"giropay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Giropay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/index.html","searchKeys":["Giropay","Giropay(\"giropay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Giropay"]},{"name":"GooglePay(setOf(\"android_pay\", \"google\"))","description":"com.stripe.android.model.TokenizationMethod.GooglePay","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/index.html","searchKeys":["GooglePay","GooglePay(setOf(\"android_pay\", \"google\"))","com.stripe.android.model.TokenizationMethod.GooglePay"]},{"name":"GrabPay(\"grabpay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/index.html","searchKeys":["GrabPay","GrabPay(\"grabpay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.GrabPay"]},{"name":"Ideal(\"ideal\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Ideal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/index.html","searchKeys":["Ideal","Ideal(\"ideal\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Ideal"]},{"name":"IdempotencyError(\"idempotency_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/index.html","searchKeys":["IdempotencyError","IdempotencyError(\"idempotency_error\")","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError"]},{"name":"IdempotencyError(\"idempotency_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/index.html","searchKeys":["IdempotencyError","IdempotencyError(\"idempotency_error\")","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError"]},{"name":"IdentityDocument(\"identity_document\")","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/index.html","searchKeys":["IdentityDocument","IdentityDocument(\"identity_document\")","com.stripe.android.model.StripeFilePurpose.IdentityDocument"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.AccountParams.BusinessType.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.AccountParams.BusinessType.Individual"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.BankAccount.Type.Individual","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.BankAccount.Type.Individual"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.BankAccountTokenParams.Type.Individual"]},{"name":"Installments(\"installments\")","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/index.html","searchKeys":["Installments","Installments(\"installments\")","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments"]},{"name":"InvalidRequestError(\"invalid_request_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/index.html","searchKeys":["InvalidRequestError","InvalidRequestError(\"invalid_request_error\")","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError"]},{"name":"InvalidRequestError(\"invalid_request_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/index.html","searchKeys":["InvalidRequestError","InvalidRequestError(\"invalid_request_error\")","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError"]},{"name":"JCB(\"jcb\", \"JCB\", R.drawable.stripe_ic_jcb, pattern, Pattern.compile(\"^(352[89]|35[3-8][0-9])[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\"),\n 2 to Pattern.compile(\"^(35)$\"),\n 3 to Pattern.compile(\"^(35[2-8])$\")\n ))","description":"com.stripe.android.model.CardBrand.JCB","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/index.html","searchKeys":["JCB","JCB(\"jcb\", \"JCB\", R.drawable.stripe_ic_jcb, pattern, Pattern.compile(\"^(352[89]|35[3-8][0-9])[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\"),\n 2 to Pattern.compile(\"^(35)$\"),\n 3 to Pattern.compile(\"^(35[2-8])$\")\n ))","com.stripe.android.model.CardBrand.JCB"]},{"name":"Line1()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/index.html","searchKeys":["Line1","Line1()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1"]},{"name":"Line2()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/index.html","searchKeys":["Line2","Line2()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2"]},{"name":"Manual(\"manual\")","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/index.html","searchKeys":["Manual","Manual(\"manual\")","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual"]},{"name":"Manual(\"manual\")","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/index.html","searchKeys":["Manual","Manual(\"manual\")","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual"]},{"name":"MasterCard(\"mastercard\", \"Mastercard\", R.drawable.stripe_ic_mastercard, pattern, Pattern.compile(\"^(2221|2222|2223|2224|2225|2226|2227|2228|2229|222|223|224|225|226|227|228|229|23|24|25|26|270|271|2720|50|51|52|53|54|55|56|57|58|59|67)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^2|5|6$\"),\n 2 to Pattern.compile(\"^(22|23|24|25|26|27|50|51|52|53|54|55|56|57|58|59|67)$\")\n ))","description":"com.stripe.android.model.CardBrand.MasterCard","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/index.html","searchKeys":["MasterCard","MasterCard(\"mastercard\", \"Mastercard\", R.drawable.stripe_ic_mastercard, pattern, Pattern.compile(\"^(2221|2222|2223|2224|2225|2226|2227|2228|2229|222|223|224|225|226|227|228|229|23|24|25|26|270|271|2720|50|51|52|53|54|55|56|57|58|59|67)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^2|5|6$\"),\n 2 to Pattern.compile(\"^(22|23|24|25|26|27|50|51|52|53|54|55|56|57|58|59|67)$\")\n ))","com.stripe.android.model.CardBrand.MasterCard"]},{"name":"Masterpass(setOf(\"masterpass\"))","description":"com.stripe.android.model.TokenizationMethod.Masterpass","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/index.html","searchKeys":["Masterpass","Masterpass(setOf(\"masterpass\"))","com.stripe.android.model.TokenizationMethod.Masterpass"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min"]},{"name":"NEXT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/index.html","searchKeys":["NEXT","NEXT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT"]},{"name":"Netbanking(\"netbanking\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/index.html","searchKeys":["Netbanking","Netbanking(\"netbanking\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Netbanking"]},{"name":"New(\"new\")","description":"com.stripe.android.model.BankAccount.Status.New","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/index.html","searchKeys":["New","New(\"new\")","com.stripe.android.model.BankAccount.Status.New"]},{"name":"None(\"none\")","description":"com.stripe.android.model.Source.Flow.None","location":"payments-core/com.stripe.android.model/-source/-flow/-none/index.html","searchKeys":["None","None(\"none\")","com.stripe.android.model.Source.Flow.None"]},{"name":"None(\"none\")","description":"com.stripe.android.model.SourceParams.Flow.None","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/index.html","searchKeys":["None","None(\"none\")","com.stripe.android.model.SourceParams.Flow.None"]},{"name":"None()","description":"com.stripe.android.view.BillingAddressFields.None","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/index.html","searchKeys":["None","None()","com.stripe.android.view.BillingAddressFields.None"]},{"name":"NotCurrentlyKnown(\"NOT_CURRENTLY_KNOWN\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/index.html","searchKeys":["NotCurrentlyKnown","NotCurrentlyKnown(\"NOT_CURRENTLY_KNOWN\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown"]},{"name":"NotRequired(\"not_required\")","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/index.html","searchKeys":["NotRequired","NotRequired(\"not_required\")","com.stripe.android.model.Source.Redirect.Status.NotRequired"]},{"name":"NotSupported(\"not_supported\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/index.html","searchKeys":["NotSupported","NotSupported(\"not_supported\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported"]},{"name":"Number()","description":"com.stripe.android.view.CardValidCallback.Fields.Number","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/index.html","searchKeys":["Number","Number()","com.stripe.android.view.CardValidCallback.Fields.Number"]},{"name":"ONE_TIME_CODE_ALREADY_REDEEMED()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/index.html","searchKeys":["ONE_TIME_CODE_ALREADY_REDEEMED","ONE_TIME_CODE_ALREADY_REDEEMED()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED"]},{"name":"ONE_TIME_CODE_EXPIRED()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/index.html","searchKeys":["ONE_TIME_CODE_EXPIRED","ONE_TIME_CODE_EXPIRED()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED"]},{"name":"ONE_TIME_CODE_INCORRECT()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/index.html","searchKeys":["ONE_TIME_CODE_INCORRECT","ONE_TIME_CODE_INCORRECT()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT"]},{"name":"ONE_TIME_CODE_TOO_MANY_ATTEMPTS()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/index.html","searchKeys":["ONE_TIME_CODE_TOO_MANY_ATTEMPTS","ONE_TIME_CODE_TOO_MANY_ATTEMPTS()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS"]},{"name":"OffSession(\"off_session\")","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/index.html","searchKeys":["OffSession","OffSession(\"off_session\")","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession"]},{"name":"OffSession(\"off_session\")","description":"com.stripe.android.model.StripeIntent.Usage.OffSession","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/index.html","searchKeys":["OffSession","OffSession(\"off_session\")","com.stripe.android.model.StripeIntent.Usage.OffSession"]},{"name":"OnSession(\"on_session\")","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/index.html","searchKeys":["OnSession","OnSession(\"on_session\")","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession"]},{"name":"OnSession(\"on_session\")","description":"com.stripe.android.model.StripeIntent.Usage.OnSession","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/index.html","searchKeys":["OnSession","OnSession(\"on_session\")","com.stripe.android.model.StripeIntent.Usage.OnSession"]},{"name":"OneTime(\"one_time\")","description":"com.stripe.android.model.StripeIntent.Usage.OneTime","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/index.html","searchKeys":["OneTime","OneTime(\"one_time\")","com.stripe.android.model.StripeIntent.Usage.OneTime"]},{"name":"Optional(\"optional\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/index.html","searchKeys":["Optional","Optional(\"optional\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional"]},{"name":"Order(\"order\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/index.html","searchKeys":["Order","Order(\"order\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order"]},{"name":"Oxxo(\"oxxo\", isReusable, false, isVoucher, true, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/index.html","searchKeys":["Oxxo","Oxxo(\"oxxo\", isReusable, false, isVoucher, true, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Oxxo"]},{"name":"P24(\"p24\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.P24","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/index.html","searchKeys":["P24","P24(\"p24\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.P24"]},{"name":"PayIn4(\"payin4\")","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/index.html","searchKeys":["PayIn4","PayIn4(\"payin4\")","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4"]},{"name":"PayPal(\"paypal\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.PayPal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/index.html","searchKeys":["PayPal","PayPal(\"paypal\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.PayPal"]},{"name":"PciDocument(\"pci_document\")","description":"com.stripe.android.model.StripeFilePurpose.PciDocument","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/index.html","searchKeys":["PciDocument","PciDocument(\"pci_document\")","com.stripe.android.model.StripeFilePurpose.PciDocument"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.CodeVerification.Status.Pending"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.Redirect.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.Redirect.Status.Pending"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.Status.Pending"]},{"name":"Person(\"person\")","description":"com.stripe.android.model.Token.Type.Person","location":"payments-core/com.stripe.android.model/-token/-type/-person/index.html","searchKeys":["Person","Person(\"person\")","com.stripe.android.model.Token.Type.Person"]},{"name":"Phone()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/index.html","searchKeys":["Phone","Phone()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone"]},{"name":"Pii(\"pii\")","description":"com.stripe.android.model.Token.Type.Pii","location":"payments-core/com.stripe.android.model/-token/-type/-pii/index.html","searchKeys":["Pii","Pii(\"pii\")","com.stripe.android.model.Token.Type.Pii"]},{"name":"Postal()","description":"com.stripe.android.view.CardValidCallback.Fields.Postal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/index.html","searchKeys":["Postal","Postal()","com.stripe.android.view.CardValidCallback.Fields.Postal"]},{"name":"PostalCode()","description":"com.stripe.android.view.BillingAddressFields.PostalCode","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.BillingAddressFields.PostalCode"]},{"name":"PostalCode()","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.CardInputListener.FocusField.PostalCode"]},{"name":"PostalCode()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode"]},{"name":"Prepaid(\"prepaid\")","description":"com.stripe.android.model.CardFunding.Prepaid","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/index.html","searchKeys":["Prepaid","Prepaid(\"prepaid\")","com.stripe.android.model.CardFunding.Prepaid"]},{"name":"Processing(\"processing\")","description":"com.stripe.android.model.StripeIntent.Status.Processing","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/index.html","searchKeys":["Processing","Processing(\"processing\")","com.stripe.android.model.StripeIntent.Status.Processing"]},{"name":"Production()","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/index.html","searchKeys":["Production","Production()","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production"]},{"name":"Production(WalletConstants.ENVIRONMENT_PRODUCTION)","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/index.html","searchKeys":["Production","Production(WalletConstants.ENVIRONMENT_PRODUCTION)","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production"]},{"name":"RESEND()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/index.html","searchKeys":["RESEND","RESEND()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND"]},{"name":"RateLimitError(\"rate_limit_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/index.html","searchKeys":["RateLimitError","RateLimitError(\"rate_limit_error\")","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError"]},{"name":"RateLimitError(\"rate_limit_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/index.html","searchKeys":["RateLimitError","RateLimitError(\"rate_limit_error\")","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError"]},{"name":"Receiver(\"receiver\")","description":"com.stripe.android.model.Source.Flow.Receiver","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/index.html","searchKeys":["Receiver","Receiver(\"receiver\")","com.stripe.android.model.Source.Flow.Receiver"]},{"name":"Receiver(\"receiver\")","description":"com.stripe.android.model.SourceParams.Flow.Receiver","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/index.html","searchKeys":["Receiver","Receiver(\"receiver\")","com.stripe.android.model.SourceParams.Flow.Receiver"]},{"name":"Recommended(\"recommended\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/index.html","searchKeys":["Recommended","Recommended(\"recommended\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended"]},{"name":"Redirect(\"redirect\")","description":"com.stripe.android.model.Source.Flow.Redirect","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/index.html","searchKeys":["Redirect","Redirect(\"redirect\")","com.stripe.android.model.Source.Flow.Redirect"]},{"name":"Redirect(\"redirect\")","description":"com.stripe.android.model.SourceParams.Flow.Redirect","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/index.html","searchKeys":["Redirect","Redirect(\"redirect\")","com.stripe.android.model.SourceParams.Flow.Redirect"]},{"name":"RedirectToUrl(\"redirect_to_url\")","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/index.html","searchKeys":["RedirectToUrl","RedirectToUrl(\"redirect_to_url\")","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl"]},{"name":"Rent(\"rent\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/index.html","searchKeys":["Rent","Rent(\"rent\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent"]},{"name":"RequestedByCustomer(\"requested_by_customer\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/index.html","searchKeys":["RequestedByCustomer","RequestedByCustomer(\"requested_by_customer\")","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer"]},{"name":"RequestedByCustomer(\"requested_by_customer\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/index.html","searchKeys":["RequestedByCustomer","RequestedByCustomer(\"requested_by_customer\")","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer"]},{"name":"Required(\"required\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/index.html","searchKeys":["Required","Required(\"required\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required"]},{"name":"RequiresAction(\"requires_action\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/index.html","searchKeys":["RequiresAction","RequiresAction(\"requires_action\")","com.stripe.android.model.StripeIntent.Status.RequiresAction"]},{"name":"RequiresCapture(\"requires_capture\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/index.html","searchKeys":["RequiresCapture","RequiresCapture(\"requires_capture\")","com.stripe.android.model.StripeIntent.Status.RequiresCapture"]},{"name":"RequiresConfirmation(\"requires_confirmation\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/index.html","searchKeys":["RequiresConfirmation","RequiresConfirmation(\"requires_confirmation\")","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation"]},{"name":"RequiresPaymentMethod(\"requires_payment_method\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/index.html","searchKeys":["RequiresPaymentMethod","RequiresPaymentMethod(\"requires_payment_method\")","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod"]},{"name":"Reusable(\"reusable\")","description":"com.stripe.android.model.Source.Usage.Reusable","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/index.html","searchKeys":["Reusable","Reusable(\"reusable\")","com.stripe.android.model.Source.Usage.Reusable"]},{"name":"SELECT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/index.html","searchKeys":["SELECT","SELECT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT"]},{"name":"SUBMIT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/index.html","searchKeys":["SUBMIT","SUBMIT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT"]},{"name":"SepaDebit(\"sepa_debit\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/index.html","searchKeys":["SepaDebit","SepaDebit(\"sepa_debit\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.SepaDebit"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.SourceOrder.Item.Type.Shipping"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping"]},{"name":"SingleUse(\"single_use\")","description":"com.stripe.android.model.Source.Usage.SingleUse","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/index.html","searchKeys":["SingleUse","SingleUse(\"single_use\")","com.stripe.android.model.Source.Usage.SingleUse"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.SourceOrder.Item.Type.Sku"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.SourceOrderParams.Item.Type.Sku"]},{"name":"Sofort(\"sofort\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Sofort","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/index.html","searchKeys":["Sofort","Sofort(\"sofort\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Sofort"]},{"name":"State()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/index.html","searchKeys":["State","State()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State"]},{"name":"Subscribe(\"subscribe\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/index.html","searchKeys":["Subscribe","Subscribe(\"subscribe\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.Source.CodeVerification.Status.Succeeded"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.Source.Redirect.Status.Succeeded"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.StripeIntent.Status.Succeeded","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.StripeIntent.Status.Succeeded"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.SourceOrder.Item.Type.Tax"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.SourceOrderParams.Item.Type.Tax"]},{"name":"TaxDocumentUserUpload(\"tax_document_user_upload\")","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/index.html","searchKeys":["TaxDocumentUserUpload","TaxDocumentUserUpload(\"tax_document_user_upload\")","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload"]},{"name":"Test()","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/index.html","searchKeys":["Test","Test()","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test"]},{"name":"Test(WalletConstants.ENVIRONMENT_TEST)","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/index.html","searchKeys":["Test","Test(WalletConstants.ENVIRONMENT_TEST)","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test"]},{"name":"UNKNOWN_ERROR()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/index.html","searchKeys":["UNKNOWN_ERROR","UNKNOWN_ERROR()","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR"]},{"name":"UnionPay(\"unionpay\", \"UnionPay\", R.drawable.stripe_ic_unionpay, pattern, Pattern.compile(\"^(62|81)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6|8$\"),\n ))","description":"com.stripe.android.model.CardBrand.UnionPay","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/index.html","searchKeys":["UnionPay","UnionPay(\"unionpay\", \"UnionPay\", R.drawable.stripe_ic_unionpay, pattern, Pattern.compile(\"^(62|81)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6|8$\"),\n ))","com.stripe.android.model.CardBrand.UnionPay"]},{"name":"Unknown(\"unknown\")","description":"com.stripe.android.model.CardFunding.Unknown","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\")","com.stripe.android.model.CardFunding.Unknown"]},{"name":"Unknown(\"unknown\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown"]},{"name":"Unknown(\"unknown\", \"Unknown\", R.drawable.stripe_ic_unknown, cvcLength, setOf(3, 4), partialPatterns, emptyMap())","description":"com.stripe.android.model.CardBrand.Unknown","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\", \"Unknown\", R.drawable.stripe_ic_unknown, cvcLength, setOf(3, 4), partialPatterns, emptyMap())","com.stripe.android.model.CardBrand.Unknown"]},{"name":"Upi(\"upi\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Upi","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/index.html","searchKeys":["Upi","Upi(\"upi\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Upi"]},{"name":"UseStripeSdk(\"use_stripe_sdk\")","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/index.html","searchKeys":["UseStripeSdk","UseStripeSdk(\"use_stripe_sdk\")","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk"]},{"name":"Validated(\"validated\")","description":"com.stripe.android.model.BankAccount.Status.Validated","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/index.html","searchKeys":["Validated","Validated(\"validated\")","com.stripe.android.model.BankAccount.Status.Validated"]},{"name":"VerificationFailed(\"verification_failed\")","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/index.html","searchKeys":["VerificationFailed","VerificationFailed(\"verification_failed\")","com.stripe.android.model.BankAccount.Status.VerificationFailed"]},{"name":"Verified(\"verified\")","description":"com.stripe.android.model.BankAccount.Status.Verified","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/index.html","searchKeys":["Verified","Verified(\"verified\")","com.stripe.android.model.BankAccount.Status.Verified"]},{"name":"Visa(\"visa\", \"Visa\", R.drawable.stripe_ic_visa, pattern, Pattern.compile(\"^(4)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^4$\")\n ))","description":"com.stripe.android.model.CardBrand.Visa","location":"payments-core/com.stripe.android.model/-card-brand/-visa/index.html","searchKeys":["Visa","Visa(\"visa\", \"Visa\", R.drawable.stripe_ic_visa, pattern, Pattern.compile(\"^(4)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^4$\")\n ))","com.stripe.android.model.CardBrand.Visa"]},{"name":"VisaCheckout(setOf(\"visa_checkout\"))","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/index.html","searchKeys":["VisaCheckout","VisaCheckout(setOf(\"visa_checkout\"))","com.stripe.android.model.TokenizationMethod.VisaCheckout"]},{"name":"VoidInvoice(\"void_invoice\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/index.html","searchKeys":["VoidInvoice","VoidInvoice(\"void_invoice\")","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice"]},{"name":"WeChatPay(\"wechat_pay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/index.html","searchKeys":["WeChatPay","WeChatPay(\"wechat_pay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.WeChatPay"]},{"name":"WeChatPayRedirect(\"wechat_pay_redirect_to_android_app\")","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/index.html","searchKeys":["WeChatPayRedirect","WeChatPayRedirect(\"wechat_pay_redirect_to_android_app\")","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect"]},{"name":"WeChatPayV1(\"wechat_pay_beta=v1\")","description":"com.stripe.android.StripeApiBeta.WeChatPayV1","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/index.html","searchKeys":["WeChatPayV1","WeChatPayV1(\"wechat_pay_beta=v1\")","com.stripe.android.StripeApiBeta.WeChatPayV1"]},{"name":"abstract class ActivityStarter","description":"com.stripe.android.view.ActivityStarter","location":"payments-core/com.stripe.android.view/-activity-starter/index.html","searchKeys":["ActivityStarter","abstract class ActivityStarter","com.stripe.android.view.ActivityStarter"]},{"name":"abstract class StripeActivity : AppCompatActivity","description":"com.stripe.android.view.StripeActivity","location":"payments-core/com.stripe.android.view/-stripe-activity/index.html","searchKeys":["StripeActivity","abstract class StripeActivity : AppCompatActivity","com.stripe.android.view.StripeActivity"]},{"name":"abstract class StripeException(stripeError: StripeError?, requestId: String?, statusCode: Int, cause: Throwable?, message: String?) : Exception","description":"com.stripe.android.exception.StripeException","location":"payments-core/com.stripe.android.exception/-stripe-exception/index.html","searchKeys":["StripeException","abstract class StripeException(stripeError: StripeError?, requestId: String?, statusCode: Int, cause: Throwable?, message: String?) : Exception","com.stripe.android.exception.StripeException"]},{"name":"abstract class StripeIntentResult : StripeModel","description":"com.stripe.android.StripeIntentResult","location":"payments-core/com.stripe.android/-stripe-intent-result/index.html","searchKeys":["StripeIntentResult","abstract class StripeIntentResult : StripeModel","com.stripe.android.StripeIntentResult"]},{"name":"abstract class StripeRequest","description":"com.stripe.android.networking.StripeRequest","location":"payments-core/com.stripe.android.networking/-stripe-request/index.html","searchKeys":["StripeRequest","abstract class StripeRequest","com.stripe.android.networking.StripeRequest"]},{"name":"abstract class TokenParams(tokenType: Token.Type, attribution: Set) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.TokenParams","location":"payments-core/com.stripe.android.model/-token-params/index.html","searchKeys":["TokenParams","abstract class TokenParams(tokenType: Token.Type, attribution: Set) : StripeParamsModel, Parcelable","com.stripe.android.model.TokenParams"]},{"name":"abstract fun configureWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithPaymentIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/configure-with-payment-intent.html","searchKeys":["configureWithPaymentIntent","abstract fun configureWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithPaymentIntent"]},{"name":"abstract fun configureWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithSetupIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/configure-with-setup-intent.html","searchKeys":["configureWithSetupIntent","abstract fun configureWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithSetupIntent"]},{"name":"abstract fun confirm()","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.confirm","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/confirm.html","searchKeys":["confirm","abstract fun confirm()","com.stripe.android.paymentsheet.PaymentSheet.FlowController.confirm"]},{"name":"abstract fun create(shippingInformation: ShippingInformation): List","description":"com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory.create","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-methods-factory/create.html","searchKeys":["create","abstract fun create(shippingInformation: ShippingInformation): List","com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory.create"]},{"name":"abstract fun createEphemeralKey(apiVersion: String, keyUpdateListener: EphemeralKeyUpdateListener)","description":"com.stripe.android.EphemeralKeyProvider.createEphemeralKey","location":"payments-core/com.stripe.android/-ephemeral-key-provider/create-ephemeral-key.html","searchKeys":["createEphemeralKey","abstract fun createEphemeralKey(apiVersion: String, keyUpdateListener: EphemeralKeyUpdateListener)","com.stripe.android.EphemeralKeyProvider.createEphemeralKey"]},{"name":"abstract fun displayErrorMessage(message: String?)","description":"com.stripe.android.view.StripeEditText.ErrorMessageListener.displayErrorMessage","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-error-message-listener/display-error-message.html","searchKeys":["displayErrorMessage","abstract fun displayErrorMessage(message: String?)","com.stripe.android.view.StripeEditText.ErrorMessageListener.displayErrorMessage"]},{"name":"abstract fun getErrorMessage(shippingInformation: ShippingInformation): String","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.getErrorMessage","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/get-error-message.html","searchKeys":["getErrorMessage","abstract fun getErrorMessage(shippingInformation: ShippingInformation): String","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.getErrorMessage"]},{"name":"abstract fun getPaymentOption(): PaymentOption?","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.getPaymentOption","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/get-payment-option.html","searchKeys":["getPaymentOption","abstract fun getPaymentOption(): PaymentOption?","com.stripe.android.paymentsheet.PaymentSheet.FlowController.getPaymentOption"]},{"name":"abstract fun isReady(): Flow","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.isReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/is-ready.html","searchKeys":["isReady","abstract fun isReady(): Flow","com.stripe.android.googlepaylauncher.GooglePayRepository.isReady"]},{"name":"abstract fun isValid(shippingInformation: ShippingInformation): Boolean","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.isValid","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/is-valid.html","searchKeys":["isValid","abstract fun isValid(shippingInformation: ShippingInformation): Boolean","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.isValid"]},{"name":"abstract fun onAuthenticationRequest(data: String): Map","description":"com.stripe.android.AlipayAuthenticator.onAuthenticationRequest","location":"payments-core/com.stripe.android/-alipay-authenticator/on-authentication-request.html","searchKeys":["onAuthenticationRequest","abstract fun onAuthenticationRequest(data: String): Map","com.stripe.android.AlipayAuthenticator.onAuthenticationRequest"]},{"name":"abstract fun onCardComplete()","description":"com.stripe.android.view.CardInputListener.onCardComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-card-complete.html","searchKeys":["onCardComplete","abstract fun onCardComplete()","com.stripe.android.view.CardInputListener.onCardComplete"]},{"name":"abstract fun onCommunicatingStateChanged(isCommunicating: Boolean)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onCommunicatingStateChanged","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-communicating-state-changed.html","searchKeys":["onCommunicatingStateChanged","abstract fun onCommunicatingStateChanged(isCommunicating: Boolean)","com.stripe.android.PaymentSession.PaymentSessionListener.onCommunicatingStateChanged"]},{"name":"abstract fun onConfigured(success: Boolean, error: Throwable?)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback.onConfigured","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-config-callback/on-configured.html","searchKeys":["onConfigured","abstract fun onConfigured(success: Boolean, error: Throwable?)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback.onConfigured"]},{"name":"abstract fun onCustomerRetrieved(customer: Customer)","description":"com.stripe.android.CustomerSession.CustomerRetrievalListener.onCustomerRetrieved","location":"payments-core/com.stripe.android/-customer-session/-customer-retrieval-listener/on-customer-retrieved.html","searchKeys":["onCustomerRetrieved","abstract fun onCustomerRetrieved(customer: Customer)","com.stripe.android.CustomerSession.CustomerRetrievalListener.onCustomerRetrieved"]},{"name":"abstract fun onCvcComplete()","description":"com.stripe.android.view.CardInputListener.onCvcComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-cvc-complete.html","searchKeys":["onCvcComplete","abstract fun onCvcComplete()","com.stripe.android.view.CardInputListener.onCvcComplete"]},{"name":"abstract fun onDeleteEmpty()","description":"com.stripe.android.view.StripeEditText.DeleteEmptyListener.onDeleteEmpty","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-delete-empty-listener/on-delete-empty.html","searchKeys":["onDeleteEmpty","abstract fun onDeleteEmpty()","com.stripe.android.view.StripeEditText.DeleteEmptyListener.onDeleteEmpty"]},{"name":"abstract fun onError(e: Exception)","description":"com.stripe.android.ApiResultCallback.onError","location":"payments-core/com.stripe.android/-api-result-callback/on-error.html","searchKeys":["onError","abstract fun onError(e: Exception)","com.stripe.android.ApiResultCallback.onError"]},{"name":"abstract fun onError(errorCode: Int, errorMessage: String)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onError","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: Int, errorMessage: String)","com.stripe.android.PaymentSession.PaymentSessionListener.onError"]},{"name":"abstract fun onError(errorCode: Int, errorMessage: String, stripeError: StripeError?)","description":"com.stripe.android.CustomerSession.RetrievalListener.onError","location":"payments-core/com.stripe.android/-customer-session/-retrieval-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: Int, errorMessage: String, stripeError: StripeError?)","com.stripe.android.CustomerSession.RetrievalListener.onError"]},{"name":"abstract fun onError(errorCode: IssuingCardPinService.CardPinActionError, errorMessage: String?, exception: Throwable?)","description":"com.stripe.android.IssuingCardPinService.Listener.onError","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: IssuingCardPinService.CardPinActionError, errorMessage: String?, exception: Throwable?)","com.stripe.android.IssuingCardPinService.Listener.onError"]},{"name":"abstract fun onExpirationComplete()","description":"com.stripe.android.view.CardInputListener.onExpirationComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-expiration-complete.html","searchKeys":["onExpirationComplete","abstract fun onExpirationComplete()","com.stripe.android.view.CardInputListener.onExpirationComplete"]},{"name":"abstract fun onFocusChange(focusField: CardInputListener.FocusField)","description":"com.stripe.android.view.CardInputListener.onFocusChange","location":"payments-core/com.stripe.android.view/-card-input-listener/on-focus-change.html","searchKeys":["onFocusChange","abstract fun onFocusChange(focusField: CardInputListener.FocusField)","com.stripe.android.view.CardInputListener.onFocusChange"]},{"name":"abstract fun onInputChanged(isValid: Boolean)","description":"com.stripe.android.view.BecsDebitWidget.ValidParamsCallback.onInputChanged","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-valid-params-callback/on-input-changed.html","searchKeys":["onInputChanged","abstract fun onInputChanged(isValid: Boolean)","com.stripe.android.view.BecsDebitWidget.ValidParamsCallback.onInputChanged"]},{"name":"abstract fun onInputChanged(isValid: Boolean, invalidFields: Set)","description":"com.stripe.android.view.CardValidCallback.onInputChanged","location":"payments-core/com.stripe.android.view/-card-valid-callback/on-input-changed.html","searchKeys":["onInputChanged","abstract fun onInputChanged(isValid: Boolean, invalidFields: Set)","com.stripe.android.view.CardValidCallback.onInputChanged"]},{"name":"abstract fun onIssuingCardPinRetrieved(pin: String)","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener.onIssuingCardPinRetrieved","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-retrieval-listener/on-issuing-card-pin-retrieved.html","searchKeys":["onIssuingCardPinRetrieved","abstract fun onIssuingCardPinRetrieved(pin: String)","com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener.onIssuingCardPinRetrieved"]},{"name":"abstract fun onIssuingCardPinUpdated()","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener.onIssuingCardPinUpdated","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-update-listener/on-issuing-card-pin-updated.html","searchKeys":["onIssuingCardPinUpdated","abstract fun onIssuingCardPinUpdated()","com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener.onIssuingCardPinUpdated"]},{"name":"abstract fun onKeyUpdate(stripeResponseJson: String)","description":"com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdate","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/on-key-update.html","searchKeys":["onKeyUpdate","abstract fun onKeyUpdate(stripeResponseJson: String)","com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdate"]},{"name":"abstract fun onKeyUpdateFailure(responseCode: Int, message: String)","description":"com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdateFailure","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/on-key-update-failure.html","searchKeys":["onKeyUpdateFailure","abstract fun onKeyUpdateFailure(responseCode: Int, message: String)","com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdateFailure"]},{"name":"abstract fun onPaymentMethodRetrieved(paymentMethod: PaymentMethod)","description":"com.stripe.android.CustomerSession.PaymentMethodRetrievalListener.onPaymentMethodRetrieved","location":"payments-core/com.stripe.android/-customer-session/-payment-method-retrieval-listener/on-payment-method-retrieved.html","searchKeys":["onPaymentMethodRetrieved","abstract fun onPaymentMethodRetrieved(paymentMethod: PaymentMethod)","com.stripe.android.CustomerSession.PaymentMethodRetrievalListener.onPaymentMethodRetrieved"]},{"name":"abstract fun onPaymentMethodsRetrieved(paymentMethods: List)","description":"com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener.onPaymentMethodsRetrieved","location":"payments-core/com.stripe.android/-customer-session/-payment-methods-retrieval-listener/on-payment-methods-retrieved.html","searchKeys":["onPaymentMethodsRetrieved","abstract fun onPaymentMethodsRetrieved(paymentMethods: List)","com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener.onPaymentMethodsRetrieved"]},{"name":"abstract fun onPaymentOption(paymentOption: PaymentOption?)","description":"com.stripe.android.paymentsheet.PaymentOptionCallback.onPaymentOption","location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/on-payment-option.html","searchKeys":["onPaymentOption","abstract fun onPaymentOption(paymentOption: PaymentOption?)","com.stripe.android.paymentsheet.PaymentOptionCallback.onPaymentOption"]},{"name":"abstract fun onPaymentSessionDataChanged(data: PaymentSessionData)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onPaymentSessionDataChanged","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-payment-session-data-changed.html","searchKeys":["onPaymentSessionDataChanged","abstract fun onPaymentSessionDataChanged(data: PaymentSessionData)","com.stripe.android.PaymentSession.PaymentSessionListener.onPaymentSessionDataChanged"]},{"name":"abstract fun onPaymentSheetResult(paymentSheetResult: PaymentSheetResult)","description":"com.stripe.android.paymentsheet.PaymentSheetResultCallback.onPaymentSheetResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/on-payment-sheet-result.html","searchKeys":["onPaymentSheetResult","abstract fun onPaymentSheetResult(paymentSheetResult: PaymentSheetResult)","com.stripe.android.paymentsheet.PaymentSheetResultCallback.onPaymentSheetResult"]},{"name":"abstract fun onReady(isReady: Boolean)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback.onReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-ready-callback/on-ready.html","searchKeys":["onReady","abstract fun onReady(isReady: Boolean)","com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback.onReady"]},{"name":"abstract fun onReady(isReady: Boolean)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback.onReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-ready-callback/on-ready.html","searchKeys":["onReady","abstract fun onReady(isReady: Boolean)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback.onReady"]},{"name":"abstract fun onResult(result: GooglePayLauncher.Result)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback.onResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result-callback/on-result.html","searchKeys":["onResult","abstract fun onResult(result: GooglePayLauncher.Result)","com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback.onResult"]},{"name":"abstract fun onResult(result: GooglePayPaymentMethodLauncher.Result)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback.onResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result-callback/on-result.html","searchKeys":["onResult","abstract fun onResult(result: GooglePayPaymentMethodLauncher.Result)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback.onResult"]},{"name":"abstract fun onSourceRetrieved(source: Source)","description":"com.stripe.android.CustomerSession.SourceRetrievalListener.onSourceRetrieved","location":"payments-core/com.stripe.android/-customer-session/-source-retrieval-listener/on-source-retrieved.html","searchKeys":["onSourceRetrieved","abstract fun onSourceRetrieved(source: Source)","com.stripe.android.CustomerSession.SourceRetrievalListener.onSourceRetrieved"]},{"name":"abstract fun onSuccess(result: ResultType)","description":"com.stripe.android.ApiResultCallback.onSuccess","location":"payments-core/com.stripe.android/-api-result-callback/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: ResultType)","com.stripe.android.ApiResultCallback.onSuccess"]},{"name":"abstract fun onTextChanged(text: String)","description":"com.stripe.android.view.StripeEditText.AfterTextChangedListener.onTextChanged","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-after-text-changed-listener/on-text-changed.html","searchKeys":["onTextChanged","abstract fun onTextChanged(text: String)","com.stripe.android.view.StripeEditText.AfterTextChangedListener.onTextChanged"]},{"name":"abstract fun presentPaymentOptions()","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.presentPaymentOptions","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/present-payment-options.html","searchKeys":["presentPaymentOptions","abstract fun presentPaymentOptions()","com.stripe.android.paymentsheet.PaymentSheet.FlowController.presentPaymentOptions"]},{"name":"abstract fun requiresAction(): Boolean","description":"com.stripe.android.model.StripeIntent.requiresAction","location":"payments-core/com.stripe.android.model/-stripe-intent/requires-action.html","searchKeys":["requiresAction","abstract fun requiresAction(): Boolean","com.stripe.android.model.StripeIntent.requiresAction"]},{"name":"abstract fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.StripeIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-stripe-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","abstract fun requiresConfirmation(): Boolean","com.stripe.android.model.StripeIntent.requiresConfirmation"]},{"name":"abstract fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmStripeIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","abstract fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmStripeIntentParams.shouldUseStripeSdk"]},{"name":"abstract fun start(args: ArgsType)","description":"com.stripe.android.view.AuthActivityStarter.start","location":"payments-core/com.stripe.android.view/-auth-activity-starter/start.html","searchKeys":["start","abstract fun start(args: ArgsType)","com.stripe.android.view.AuthActivityStarter.start"]},{"name":"abstract fun startActivityForResult(target: Class<*>, extras: Bundle, requestCode: Int)","description":"com.stripe.android.view.AuthActivityStarterHost.startActivityForResult","location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/start-activity-for-result.html","searchKeys":["startActivityForResult","abstract fun startActivityForResult(target: Class<*>, extras: Bundle, requestCode: Int)","com.stripe.android.view.AuthActivityStarterHost.startActivityForResult"]},{"name":"abstract fun toBundle(): Bundle","description":"com.stripe.android.view.ActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","abstract fun toBundle(): Bundle","com.stripe.android.view.ActivityStarter.Result.toBundle"]},{"name":"abstract fun toParamMap(): Map","description":"com.stripe.android.model.StripeParamsModel.toParamMap","location":"payments-core/com.stripe.android.model/-stripe-params-model/to-param-map.html","searchKeys":["toParamMap","abstract fun toParamMap(): Map","com.stripe.android.model.StripeParamsModel.toParamMap"]},{"name":"abstract fun translate(httpCode: Int, errorMessage: String?, stripeError: StripeError?): String","description":"com.stripe.android.view.i18n.ErrorMessageTranslator.translate","location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/translate.html","searchKeys":["translate","abstract fun translate(httpCode: Int, errorMessage: String?, stripeError: StripeError?): String","com.stripe.android.view.i18n.ErrorMessageTranslator.translate"]},{"name":"abstract fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmStripeIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","abstract fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmStripeIntentParams","com.stripe.android.model.ConfirmStripeIntentParams.withShouldUseStripeSdk"]},{"name":"abstract operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.model.StripeModel.equals","location":"payments-core/com.stripe.android.model/-stripe-model/equals.html","searchKeys":["equals","abstract operator override fun equals(other: Any?): Boolean","com.stripe.android.model.StripeModel.equals"]},{"name":"abstract override fun hashCode(): Int","description":"com.stripe.android.model.StripeModel.hashCode","location":"payments-core/com.stripe.android.model/-stripe-model/hash-code.html","searchKeys":["hashCode","abstract override fun hashCode(): Int","com.stripe.android.model.StripeModel.hashCode"]},{"name":"abstract suspend fun authenticate(host: AuthActivityStarterHost, authenticatable: Authenticatable, requestOptions: ApiRequest.Options)","description":"com.stripe.android.payments.core.authentication.PaymentAuthenticator.authenticate","location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/authenticate.html","searchKeys":["authenticate","abstract suspend fun authenticate(host: AuthActivityStarterHost, authenticatable: Authenticatable, requestOptions: ApiRequest.Options)","com.stripe.android.payments.core.authentication.PaymentAuthenticator.authenticate"]},{"name":"abstract val baseUrl: String","description":"com.stripe.android.networking.StripeRequest.baseUrl","location":"payments-core/com.stripe.android.networking/-stripe-request/base-url.html","searchKeys":["baseUrl","abstract val baseUrl: String","com.stripe.android.networking.StripeRequest.baseUrl"]},{"name":"abstract val clientSecret: String","description":"com.stripe.android.model.ConfirmStripeIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/client-secret.html","searchKeys":["clientSecret","abstract val clientSecret: String","com.stripe.android.model.ConfirmStripeIntentParams.clientSecret"]},{"name":"abstract val clientSecret: String?","description":"com.stripe.android.model.StripeIntent.clientSecret","location":"payments-core/com.stripe.android.model/-stripe-intent/client-secret.html","searchKeys":["clientSecret","abstract val clientSecret: String?","com.stripe.android.model.StripeIntent.clientSecret"]},{"name":"abstract val created: Long","description":"com.stripe.android.model.StripeIntent.created","location":"payments-core/com.stripe.android.model/-stripe-intent/created.html","searchKeys":["created","abstract val created: Long","com.stripe.android.model.StripeIntent.created"]},{"name":"abstract val description: String?","description":"com.stripe.android.model.StripeIntent.description","location":"payments-core/com.stripe.android.model/-stripe-intent/description.html","searchKeys":["description","abstract val description: String?","com.stripe.android.model.StripeIntent.description"]},{"name":"abstract val failureMessage: String?","description":"com.stripe.android.StripeIntentResult.failureMessage","location":"payments-core/com.stripe.android/-stripe-intent-result/failure-message.html","searchKeys":["failureMessage","abstract val failureMessage: String?","com.stripe.android.StripeIntentResult.failureMessage"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.CustomerPaymentSource.id","location":"payments-core/com.stripe.android.model/-customer-payment-source/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.CustomerPaymentSource.id"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.StripeIntent.id","location":"payments-core/com.stripe.android.model/-stripe-intent/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.StripeIntent.id"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.StripePaymentSource.id","location":"payments-core/com.stripe.android.model/-stripe-payment-source/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.StripePaymentSource.id"]},{"name":"abstract val intent: T","description":"com.stripe.android.StripeIntentResult.intent","location":"payments-core/com.stripe.android/-stripe-intent-result/intent.html","searchKeys":["intent","abstract val intent: T","com.stripe.android.StripeIntentResult.intent"]},{"name":"abstract val isConfirmed: Boolean","description":"com.stripe.android.model.StripeIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-stripe-intent/is-confirmed.html","searchKeys":["isConfirmed","abstract val isConfirmed: Boolean","com.stripe.android.model.StripeIntent.isConfirmed"]},{"name":"abstract val isLiveMode: Boolean","description":"com.stripe.android.model.StripeIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-stripe-intent/is-live-mode.html","searchKeys":["isLiveMode","abstract val isLiveMode: Boolean","com.stripe.android.model.StripeIntent.isLiveMode"]},{"name":"abstract val lastErrorMessage: String?","description":"com.stripe.android.model.StripeIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-stripe-intent/last-error-message.html","searchKeys":["lastErrorMessage","abstract val lastErrorMessage: String?","com.stripe.android.model.StripeIntent.lastErrorMessage"]},{"name":"abstract val nextActionData: StripeIntent.NextActionData?","description":"com.stripe.android.model.StripeIntent.nextActionData","location":"payments-core/com.stripe.android.model/-stripe-intent/next-action-data.html","searchKeys":["nextActionData","abstract val nextActionData: StripeIntent.NextActionData?","com.stripe.android.model.StripeIntent.nextActionData"]},{"name":"abstract val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.StripeIntent.nextActionType","location":"payments-core/com.stripe.android.model/-stripe-intent/next-action-type.html","searchKeys":["nextActionType","abstract val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.StripeIntent.nextActionType"]},{"name":"abstract val params: Map?","description":"com.stripe.android.networking.StripeRequest.params","location":"payments-core/com.stripe.android.networking/-stripe-request/params.html","searchKeys":["params","abstract val params: Map?","com.stripe.android.networking.StripeRequest.params"]},{"name":"abstract val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/params-list.html","searchKeys":["paramsList","abstract val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.paramsList"]},{"name":"abstract val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.StripeIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method.html","searchKeys":["paymentMethod","abstract val paymentMethod: PaymentMethod?","com.stripe.android.model.StripeIntent.paymentMethod"]},{"name":"abstract val paymentMethodId: String?","description":"com.stripe.android.model.StripeIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method-id.html","searchKeys":["paymentMethodId","abstract val paymentMethodId: String?","com.stripe.android.model.StripeIntent.paymentMethodId"]},{"name":"abstract val paymentMethodTypes: List","description":"com.stripe.android.model.StripeIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","abstract val paymentMethodTypes: List","com.stripe.android.model.StripeIntent.paymentMethodTypes"]},{"name":"abstract val status: StripeIntent.Status?","description":"com.stripe.android.model.StripeIntent.status","location":"payments-core/com.stripe.android.model/-stripe-intent/status.html","searchKeys":["status","abstract val status: StripeIntent.Status?","com.stripe.android.model.StripeIntent.status"]},{"name":"abstract val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerPaymentSource.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-payment-source/tokenization-method.html","searchKeys":["tokenizationMethod","abstract val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerPaymentSource.tokenizationMethod"]},{"name":"abstract val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.TypeData.type","location":"payments-core/com.stripe.android.model/-payment-method/-type-data/type.html","searchKeys":["type","abstract val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.TypeData.type"]},{"name":"abstract val typeDataParams: Map","description":"com.stripe.android.model.TokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-token-params/type-data-params.html","searchKeys":["typeDataParams","abstract val typeDataParams: Map","com.stripe.android.model.TokenParams.typeDataParams"]},{"name":"abstract var returnUrl: String?","description":"com.stripe.android.model.ConfirmStripeIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/return-url.html","searchKeys":["returnUrl","abstract var returnUrl: String?","com.stripe.android.model.ConfirmStripeIntentParams.returnUrl"]},{"name":"annotation class IOContext","description":"com.stripe.android.payments.core.injection.IOContext","location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/index.html","searchKeys":["IOContext","annotation class IOContext","com.stripe.android.payments.core.injection.IOContext"]},{"name":"annotation class IntentAuthenticatorKey(value: KClass)","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/index.html","searchKeys":["IntentAuthenticatorKey","annotation class IntentAuthenticatorKey(value: KClass)","com.stripe.android.payments.core.injection.IntentAuthenticatorKey"]},{"name":"annotation class IntentAuthenticatorMap","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorMap","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/index.html","searchKeys":["IntentAuthenticatorMap","annotation class IntentAuthenticatorMap","com.stripe.android.payments.core.injection.IntentAuthenticatorMap"]},{"name":"annotation class Outcome","description":"com.stripe.android.StripeIntentResult.Outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/index.html","searchKeys":["Outcome","annotation class Outcome","com.stripe.android.StripeIntentResult.Outcome"]},{"name":"annotation class SourceType","description":"com.stripe.android.model.Source.SourceType","location":"payments-core/com.stripe.android.model/-source/-source-type/index.html","searchKeys":["SourceType","annotation class SourceType","com.stripe.android.model.Source.SourceType"]},{"name":"annotation class UIContext","description":"com.stripe.android.payments.core.injection.UIContext","location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/index.html","searchKeys":["UIContext","annotation class UIContext","com.stripe.android.payments.core.injection.UIContext"]},{"name":"class APIConnectionException(message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.APIConnectionException","location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/index.html","searchKeys":["APIConnectionException","class APIConnectionException(message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.APIConnectionException"]},{"name":"class APIException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.APIException","location":"payments-core/com.stripe.android.exception/-a-p-i-exception/index.html","searchKeys":["APIException","class APIException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.APIException"]},{"name":"class AddPaymentMethodActivity : StripeActivity","description":"com.stripe.android.view.AddPaymentMethodActivity","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/index.html","searchKeys":["AddPaymentMethodActivity","class AddPaymentMethodActivity : StripeActivity","com.stripe.android.view.AddPaymentMethodActivity"]},{"name":"class AddPaymentMethodActivityStarter : ActivityStarter ","description":"com.stripe.android.view.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/index.html","searchKeys":["AddPaymentMethodActivityStarter","class AddPaymentMethodActivityStarter : ActivityStarter ","com.stripe.android.view.AddPaymentMethodActivityStarter"]},{"name":"class AuthenticationException : StripeException","description":"com.stripe.android.exception.AuthenticationException","location":"payments-core/com.stripe.android.exception/-authentication-exception/index.html","searchKeys":["AuthenticationException","class AuthenticationException : StripeException","com.stripe.android.exception.AuthenticationException"]},{"name":"class BecsDebitMandateAcceptanceTextFactory(context: Context)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/index.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory","class BecsDebitMandateAcceptanceTextFactory(context: Context)","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory"]},{"name":"class BecsDebitMandateAcceptanceTextView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : AppCompatTextView","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/index.html","searchKeys":["BecsDebitMandateAcceptanceTextView","class BecsDebitMandateAcceptanceTextView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : AppCompatTextView","com.stripe.android.view.BecsDebitMandateAcceptanceTextView"]},{"name":"class BecsDebitWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, companyName: String) : FrameLayout","description":"com.stripe.android.view.BecsDebitWidget","location":"payments-core/com.stripe.android.view/-becs-debit-widget/index.html","searchKeys":["BecsDebitWidget","class BecsDebitWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, companyName: String) : FrameLayout","com.stripe.android.view.BecsDebitWidget"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder
","description":"com.stripe.android.model.Address.Builder","location":"payments-core/com.stripe.android.model/-address/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder
","com.stripe.android.model.Address.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AddressJapanParams.Builder","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AddressJapanParams.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethod.BillingDetails.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethod.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethod.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentSessionConfig.Builder","location":"payments-core/com.stripe.android/-payment-session-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentSessionConfig.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PersonTokenParams.Relationship.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PersonTokenParams.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PersonTokenParams.Builder"]},{"name":"class CardException(stripeError: StripeError, requestId: String?) : StripeException","description":"com.stripe.android.exception.CardException","location":"payments-core/com.stripe.android.exception/-card-exception/index.html","searchKeys":["CardException","class CardException(stripeError: StripeError, requestId: String?) : StripeException","com.stripe.android.exception.CardException"]},{"name":"class CardFormView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","description":"com.stripe.android.view.CardFormView","location":"payments-core/com.stripe.android.view/-card-form-view/index.html","searchKeys":["CardFormView","class CardFormView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","com.stripe.android.view.CardFormView"]},{"name":"class CardInputWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout, CardWidget","description":"com.stripe.android.view.CardInputWidget","location":"payments-core/com.stripe.android.view/-card-input-widget/index.html","searchKeys":["CardInputWidget","class CardInputWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout, CardWidget","com.stripe.android.view.CardInputWidget"]},{"name":"class CardMultilineWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, shouldShowPostalCode: Boolean) : LinearLayout, CardWidget","description":"com.stripe.android.view.CardMultilineWidget","location":"payments-core/com.stripe.android.view/-card-multiline-widget/index.html","searchKeys":["CardMultilineWidget","class CardMultilineWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, shouldShowPostalCode: Boolean) : LinearLayout, CardWidget","com.stripe.android.view.CardMultilineWidget"]},{"name":"class CardNumberEditText : StripeEditText","description":"com.stripe.android.view.CardNumberEditText","location":"payments-core/com.stripe.android.view/-card-number-edit-text/index.html","searchKeys":["CardNumberEditText","class CardNumberEditText : StripeEditText","com.stripe.android.view.CardNumberEditText"]},{"name":"class CustomerSession","description":"com.stripe.android.CustomerSession","location":"payments-core/com.stripe.android/-customer-session/index.html","searchKeys":["CustomerSession","class CustomerSession","com.stripe.android.CustomerSession"]},{"name":"class CvcEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.CvcEditText","location":"payments-core/com.stripe.android.view/-cvc-edit-text/index.html","searchKeys":["CvcEditText","class CvcEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.CvcEditText"]},{"name":"class ExpiryDateEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.ExpiryDateEditText","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/index.html","searchKeys":["ExpiryDateEditText","class ExpiryDateEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.ExpiryDateEditText"]},{"name":"class Factory(appInfo: AppInfo?, apiVersion: String, sdkVersion: String)","description":"com.stripe.android.networking.ApiRequest.Factory","location":"payments-core/com.stripe.android.networking/-api-request/-factory/index.html","searchKeys":["Factory","class Factory(appInfo: AppInfo?, apiVersion: String, sdkVersion: String)","com.stripe.android.networking.ApiRequest.Factory"]},{"name":"class Failure(error: Throwable) : PaymentSheet.FlowController.Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/index.html","searchKeys":["Failure","class Failure(error: Throwable) : PaymentSheet.FlowController.Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure"]},{"name":"class GooglePayConfig constructor(publishableKey: String, connectedAccountId: String?)","description":"com.stripe.android.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/index.html","searchKeys":["GooglePayConfig","class GooglePayConfig constructor(publishableKey: String, connectedAccountId: String?)","com.stripe.android.GooglePayConfig"]},{"name":"class GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean)","description":"com.stripe.android.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/index.html","searchKeys":["GooglePayJsonFactory","class GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean)","com.stripe.android.GooglePayJsonFactory"]},{"name":"class GooglePayLauncher","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/index.html","searchKeys":["GooglePayLauncher","class GooglePayLauncher","com.stripe.android.googlepaylauncher.GooglePayLauncher"]},{"name":"class GooglePayLauncherContract : ActivityResultContract ","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/index.html","searchKeys":["GooglePayLauncherContract","class GooglePayLauncherContract : ActivityResultContract ","com.stripe.android.googlepaylauncher.GooglePayLauncherContract"]},{"name":"class GooglePayPaymentMethodLauncher","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html","searchKeys":["GooglePayPaymentMethodLauncher","class GooglePayPaymentMethodLauncher","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher"]},{"name":"class GooglePayPaymentMethodLauncherContract : ActivityResultContract ","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html","searchKeys":["GooglePayPaymentMethodLauncherContract","class GooglePayPaymentMethodLauncherContract : ActivityResultContract ","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract"]},{"name":"class InvalidRequestException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.InvalidRequestException","location":"payments-core/com.stripe.android.exception/-invalid-request-exception/index.html","searchKeys":["InvalidRequestException","class InvalidRequestException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.InvalidRequestException"]},{"name":"class IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService","location":"payments-core/com.stripe.android/-issuing-card-pin-service/index.html","searchKeys":["IssuingCardPinService","class IssuingCardPinService","com.stripe.android.IssuingCardPinService"]},{"name":"class PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig","location":"payments-core/com.stripe.android/-payment-auth-config/index.html","searchKeys":["PaymentAuthConfig","class PaymentAuthConfig","com.stripe.android.PaymentAuthConfig"]},{"name":"class PaymentAuthWebViewActivity : AppCompatActivity","description":"com.stripe.android.view.PaymentAuthWebViewActivity","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/index.html","searchKeys":["PaymentAuthWebViewActivity","class PaymentAuthWebViewActivity : AppCompatActivity","com.stripe.android.view.PaymentAuthWebViewActivity"]},{"name":"class PaymentFlowActivity : StripeActivity","description":"com.stripe.android.view.PaymentFlowActivity","location":"payments-core/com.stripe.android.view/-payment-flow-activity/index.html","searchKeys":["PaymentFlowActivity","class PaymentFlowActivity : StripeActivity","com.stripe.android.view.PaymentFlowActivity"]},{"name":"class PaymentFlowActivityStarter : ActivityStarter ","description":"com.stripe.android.view.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/index.html","searchKeys":["PaymentFlowActivityStarter","class PaymentFlowActivityStarter : ActivityStarter ","com.stripe.android.view.PaymentFlowActivityStarter"]},{"name":"class PaymentFlowViewPager constructor(context: Context, attrs: AttributeSet?, isSwipingAllowed: Boolean) : ViewPager","description":"com.stripe.android.view.PaymentFlowViewPager","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/index.html","searchKeys":["PaymentFlowViewPager","class PaymentFlowViewPager constructor(context: Context, attrs: AttributeSet?, isSwipingAllowed: Boolean) : ViewPager","com.stripe.android.view.PaymentFlowViewPager"]},{"name":"class PaymentIntentJsonParser : ModelJsonParser ","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/index.html","searchKeys":["PaymentIntentJsonParser","class PaymentIntentJsonParser : ModelJsonParser ","com.stripe.android.model.parsers.PaymentIntentJsonParser"]},{"name":"class PaymentMethodsActivity : AppCompatActivity","description":"com.stripe.android.view.PaymentMethodsActivity","location":"payments-core/com.stripe.android.view/-payment-methods-activity/index.html","searchKeys":["PaymentMethodsActivity","class PaymentMethodsActivity : AppCompatActivity","com.stripe.android.view.PaymentMethodsActivity"]},{"name":"class PaymentMethodsActivityStarter : ActivityStarter ","description":"com.stripe.android.view.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/index.html","searchKeys":["PaymentMethodsActivityStarter","class PaymentMethodsActivityStarter : ActivityStarter ","com.stripe.android.view.PaymentMethodsActivityStarter"]},{"name":"class PaymentSession","description":"com.stripe.android.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/index.html","searchKeys":["PaymentSession","class PaymentSession","com.stripe.android.PaymentSession"]},{"name":"class PaymentSheet","description":"com.stripe.android.paymentsheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html","searchKeys":["PaymentSheet","class PaymentSheet","com.stripe.android.paymentsheet.PaymentSheet"]},{"name":"class PaymentSheetContract : ActivityResultContract ","description":"com.stripe.android.paymentsheet.PaymentSheetContract","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/index.html","searchKeys":["PaymentSheetContract","class PaymentSheetContract : ActivityResultContract ","com.stripe.android.paymentsheet.PaymentSheetContract"]},{"name":"class PermissionException(stripeError: StripeError, requestId: String?) : StripeException","description":"com.stripe.android.exception.PermissionException","location":"payments-core/com.stripe.android.exception/-permission-exception/index.html","searchKeys":["PermissionException","class PermissionException(stripeError: StripeError, requestId: String?) : StripeException","com.stripe.android.exception.PermissionException"]},{"name":"class PostalCodeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.PostalCodeEditText","location":"payments-core/com.stripe.android.view/-postal-code-edit-text/index.html","searchKeys":["PostalCodeEditText","class PostalCodeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.PostalCodeEditText"]},{"name":"class RateLimitException(stripeError: StripeError?, requestId: String?, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.RateLimitException","location":"payments-core/com.stripe.android.exception/-rate-limit-exception/index.html","searchKeys":["RateLimitException","class RateLimitException(stripeError: StripeError?, requestId: String?, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.RateLimitException"]},{"name":"class ShippingInfoWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","description":"com.stripe.android.view.ShippingInfoWidget","location":"payments-core/com.stripe.android.view/-shipping-info-widget/index.html","searchKeys":["ShippingInfoWidget","class ShippingInfoWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","com.stripe.android.view.ShippingInfoWidget"]},{"name":"class Stripe","description":"com.stripe.android.Stripe","location":"payments-core/com.stripe.android/-stripe/index.html","searchKeys":["Stripe","class Stripe","com.stripe.android.Stripe"]},{"name":"const val ALIPAY: String","description":"com.stripe.android.model.Source.SourceType.Companion.ALIPAY","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-a-l-i-p-a-y.html","searchKeys":["ALIPAY","const val ALIPAY: String","com.stripe.android.model.Source.SourceType.Companion.ALIPAY"]},{"name":"const val BANCONTACT: String","description":"com.stripe.android.model.Source.SourceType.Companion.BANCONTACT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-b-a-n-c-o-n-t-a-c-t.html","searchKeys":["BANCONTACT","const val BANCONTACT: String","com.stripe.android.model.Source.SourceType.Companion.BANCONTACT"]},{"name":"const val CANCELED: Int = 3","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.CANCELED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-c-a-n-c-e-l-e-d.html","searchKeys":["CANCELED","const val CANCELED: Int = 3","com.stripe.android.StripeIntentResult.Outcome.Companion.CANCELED"]},{"name":"const val CARD: String","description":"com.stripe.android.model.Source.SourceType.Companion.CARD","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-c-a-r-d.html","searchKeys":["CARD","const val CARD: String","com.stripe.android.model.Source.SourceType.Companion.CARD"]},{"name":"const val ENABLE_LOGGING: String","description":"com.stripe.android.payments.core.injection.ENABLE_LOGGING","location":"payments-core/com.stripe.android.payments.core.injection/-e-n-a-b-l-e_-l-o-g-g-i-n-g.html","searchKeys":["ENABLE_LOGGING","const val ENABLE_LOGGING: String","com.stripe.android.payments.core.injection.ENABLE_LOGGING"]},{"name":"const val EPS: String","description":"com.stripe.android.model.Source.SourceType.Companion.EPS","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-e-p-s.html","searchKeys":["EPS","const val EPS: String","com.stripe.android.model.Source.SourceType.Companion.EPS"]},{"name":"const val FAILED: Int = 2","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.FAILED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-f-a-i-l-e-d.html","searchKeys":["FAILED","const val FAILED: Int = 2","com.stripe.android.StripeIntentResult.Outcome.Companion.FAILED"]},{"name":"const val GIROPAY: String","description":"com.stripe.android.model.Source.SourceType.Companion.GIROPAY","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-g-i-r-o-p-a-y.html","searchKeys":["GIROPAY","const val GIROPAY: String","com.stripe.android.model.Source.SourceType.Companion.GIROPAY"]},{"name":"const val IDEAL: String","description":"com.stripe.android.model.Source.SourceType.Companion.IDEAL","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-i-d-e-a-l.html","searchKeys":["IDEAL","const val IDEAL: String","com.stripe.android.model.Source.SourceType.Companion.IDEAL"]},{"name":"const val KLARNA: String","description":"com.stripe.android.model.Source.SourceType.Companion.KLARNA","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-k-l-a-r-n-a.html","searchKeys":["KLARNA","const val KLARNA: String","com.stripe.android.model.Source.SourceType.Companion.KLARNA"]},{"name":"const val MULTIBANCO: String","description":"com.stripe.android.model.Source.SourceType.Companion.MULTIBANCO","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-m-u-l-t-i-b-a-n-c-o.html","searchKeys":["MULTIBANCO","const val MULTIBANCO: String","com.stripe.android.model.Source.SourceType.Companion.MULTIBANCO"]},{"name":"const val P24: String","description":"com.stripe.android.model.Source.SourceType.Companion.P24","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-p24.html","searchKeys":["P24","const val P24: String","com.stripe.android.model.Source.SourceType.Companion.P24"]},{"name":"const val REQUEST_CODE: Int = 6000","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6000","com.stripe.android.view.PaymentMethodsActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val REQUEST_CODE: Int = 6001","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6001","com.stripe.android.view.AddPaymentMethodActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val REQUEST_CODE: Int = 6002","description":"com.stripe.android.view.PaymentFlowActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6002","com.stripe.android.view.PaymentFlowActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val SEPA_DEBIT: String","description":"com.stripe.android.model.Source.SourceType.Companion.SEPA_DEBIT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-s-e-p-a_-d-e-b-i-t.html","searchKeys":["SEPA_DEBIT","const val SEPA_DEBIT: String","com.stripe.android.model.Source.SourceType.Companion.SEPA_DEBIT"]},{"name":"const val SOFORT: String","description":"com.stripe.android.model.Source.SourceType.Companion.SOFORT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-s-o-f-o-r-t.html","searchKeys":["SOFORT","const val SOFORT: String","com.stripe.android.model.Source.SourceType.Companion.SOFORT"]},{"name":"const val SUCCEEDED: Int = 1","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.SUCCEEDED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-s-u-c-c-e-e-d-e-d.html","searchKeys":["SUCCEEDED","const val SUCCEEDED: Int = 1","com.stripe.android.StripeIntentResult.Outcome.Companion.SUCCEEDED"]},{"name":"const val THREE_D_SECURE: String","description":"com.stripe.android.model.Source.SourceType.Companion.THREE_D_SECURE","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-t-h-r-e-e_-d_-s-e-c-u-r-e.html","searchKeys":["THREE_D_SECURE","const val THREE_D_SECURE: String","com.stripe.android.model.Source.SourceType.Companion.THREE_D_SECURE"]},{"name":"const val TIMEDOUT: Int = 4","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.TIMEDOUT","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-t-i-m-e-d-o-u-t.html","searchKeys":["TIMEDOUT","const val TIMEDOUT: Int = 4","com.stripe.android.StripeIntentResult.Outcome.Companion.TIMEDOUT"]},{"name":"const val UNDEFINED_PUBLISHABLE_KEY: String","description":"com.stripe.android.networking.ApiRequest.Options.Companion.UNDEFINED_PUBLISHABLE_KEY","location":"payments-core/com.stripe.android.networking/-api-request/-options/-companion/-u-n-d-e-f-i-n-e-d_-p-u-b-l-i-s-h-a-b-l-e_-k-e-y.html","searchKeys":["UNDEFINED_PUBLISHABLE_KEY","const val UNDEFINED_PUBLISHABLE_KEY: String","com.stripe.android.networking.ApiRequest.Options.Companion.UNDEFINED_PUBLISHABLE_KEY"]},{"name":"const val UNKNOWN: Int = 0","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.UNKNOWN","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-u-n-k-n-o-w-n.html","searchKeys":["UNKNOWN","const val UNKNOWN: Int = 0","com.stripe.android.StripeIntentResult.Outcome.Companion.UNKNOWN"]},{"name":"const val UNKNOWN: String","description":"com.stripe.android.model.Source.SourceType.Companion.UNKNOWN","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-u-n-k-n-o-w-n.html","searchKeys":["UNKNOWN","const val UNKNOWN: String","com.stripe.android.model.Source.SourceType.Companion.UNKNOWN"]},{"name":"const val VERSION: String","description":"com.stripe.android.Stripe.Companion.VERSION","location":"payments-core/com.stripe.android/-stripe/-companion/-v-e-r-s-i-o-n.html","searchKeys":["VERSION","const val VERSION: String","com.stripe.android.Stripe.Companion.VERSION"]},{"name":"const val WECHAT: String","description":"com.stripe.android.model.Source.SourceType.Companion.WECHAT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-w-e-c-h-a-t.html","searchKeys":["WECHAT","const val WECHAT: String","com.stripe.android.model.Source.SourceType.Companion.WECHAT"]},{"name":"data class AccountParams : TokenParams","description":"com.stripe.android.model.AccountParams","location":"payments-core/com.stripe.android.model/-account-params/index.html","searchKeys":["AccountParams","data class AccountParams : TokenParams","com.stripe.android.model.AccountParams"]},{"name":"data class Address : StripeModel, StripeParamsModel","description":"com.stripe.android.model.Address","location":"payments-core/com.stripe.android.model/-address/index.html","searchKeys":["Address","data class Address : StripeModel, StripeParamsModel","com.stripe.android.model.Address"]},{"name":"data class AddressJapanParams(city: String?, country: String?, line1: String?, line2: String?, postalCode: String?, state: String?, town: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AddressJapanParams","location":"payments-core/com.stripe.android.model/-address-japan-params/index.html","searchKeys":["AddressJapanParams","data class AddressJapanParams(city: String?, country: String?, line1: String?, line2: String?, postalCode: String?, state: String?, town: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AddressJapanParams"]},{"name":"data class AmexExpressCheckoutWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-amex-express-checkout-wallet/index.html","searchKeys":["AmexExpressCheckoutWallet","data class AmexExpressCheckoutWallet : Wallet","com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet"]},{"name":"data class ApiRequest : StripeRequest","description":"com.stripe.android.networking.ApiRequest","location":"payments-core/com.stripe.android.networking/-api-request/index.html","searchKeys":["ApiRequest","data class ApiRequest : StripeRequest","com.stripe.android.networking.ApiRequest"]},{"name":"data class AppInfo : Parcelable","description":"com.stripe.android.AppInfo","location":"payments-core/com.stripe.android/-app-info/index.html","searchKeys":["AppInfo","data class AppInfo : Parcelable","com.stripe.android.AppInfo"]},{"name":"data class ApplePayWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.ApplePayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-apple-pay-wallet/index.html","searchKeys":["ApplePayWallet","data class ApplePayWallet : Wallet","com.stripe.android.model.wallets.Wallet.ApplePayWallet"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.AddPaymentMethodActivityStarter.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.PaymentMethodsActivityStarter.Args"]},{"name":"data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html","searchKeys":["Args","data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args"]},{"name":"data class AuBecsDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","data class AuBecsDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.AuBecsDebit"]},{"name":"data class AuBecsDebit(bsbNumber: String, accountNumber: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","data class AuBecsDebit(bsbNumber: String, accountNumber: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit"]},{"name":"data class BacsDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/index.html","searchKeys":["BacsDebit","data class BacsDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.BacsDebit"]},{"name":"data class BacsDebit(accountNumber: String, sortCode: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/index.html","searchKeys":["BacsDebit","data class BacsDebit(accountNumber: String, sortCode: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit"]},{"name":"data class BankAccount : StripeModel, StripePaymentSource","description":"com.stripe.android.model.BankAccount","location":"payments-core/com.stripe.android.model/-bank-account/index.html","searchKeys":["BankAccount","data class BankAccount : StripeModel, StripePaymentSource","com.stripe.android.model.BankAccount"]},{"name":"data class BankAccountTokenParams constructor(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type?, accountHolderName: String?, routingNumber: String?) : TokenParams","description":"com.stripe.android.model.BankAccountTokenParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/index.html","searchKeys":["BankAccountTokenParams","data class BankAccountTokenParams constructor(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type?, accountHolderName: String?, routingNumber: String?) : TokenParams","com.stripe.android.model.BankAccountTokenParams"]},{"name":"data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/index.html","searchKeys":["BillingAddressConfig","data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig"]},{"name":"data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/index.html","searchKeys":["BillingAddressConfig","data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig"]},{"name":"data class BillingAddressParameters constructor(isRequired: Boolean, format: GooglePayJsonFactory.BillingAddressParameters.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/index.html","searchKeys":["BillingAddressParameters","data class BillingAddressParameters constructor(isRequired: Boolean, format: GooglePayJsonFactory.BillingAddressParameters.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters"]},{"name":"data class BillingDetails constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeModel, StripeParamsModel","description":"com.stripe.android.model.PaymentMethod.BillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/index.html","searchKeys":["BillingDetails","data class BillingDetails constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeModel, StripeParamsModel","com.stripe.android.model.PaymentMethod.BillingDetails"]},{"name":"data class Blik(code: String) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/index.html","searchKeys":["Blik","data class Blik(code: String) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.Blik"]},{"name":"data class Card : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Card","location":"payments-core/com.stripe.android.model/-payment-method/-card/index.html","searchKeys":["Card","data class Card : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Card"]},{"name":"data class Card : SourceTypeModel","description":"com.stripe.android.model.SourceTypeModel.Card","location":"payments-core/com.stripe.android.model/-source-type-model/-card/index.html","searchKeys":["Card","data class Card : SourceTypeModel","com.stripe.android.model.SourceTypeModel.Card"]},{"name":"data class Card : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Card","location":"payments-core/com.stripe.android.model/-card/index.html","searchKeys":["Card","data class Card : StripeModel, StripePaymentSource","com.stripe.android.model.Card"]},{"name":"data class Card : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Card","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/index.html","searchKeys":["Card","data class Card : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Card"]},{"name":"data class Card(cvc: String?, network: String?) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/index.html","searchKeys":["Card","data class Card(cvc: String?, network: String?) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.Card"]},{"name":"data class CardParams : TokenParams","description":"com.stripe.android.model.CardParams","location":"payments-core/com.stripe.android.model/-card-params/index.html","searchKeys":["CardParams","data class CardParams : TokenParams","com.stripe.android.model.CardParams"]},{"name":"data class CardPresent : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.CardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-card-present/index.html","searchKeys":["CardPresent","data class CardPresent : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.CardPresent"]},{"name":"data class Checks : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.Checks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/index.html","searchKeys":["Checks","data class Checks : StripeModel","com.stripe.android.model.PaymentMethod.Card.Checks"]},{"name":"data class CodeVerification : StripeModel","description":"com.stripe.android.model.Source.CodeVerification","location":"payments-core/com.stripe.android.model/-source/-code-verification/index.html","searchKeys":["CodeVerification","data class CodeVerification : StripeModel","com.stripe.android.model.Source.CodeVerification"]},{"name":"data class Company(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, directorsProvided: Boolean?, executivesProvided: Boolean?, name: String?, nameKana: String?, nameKanji: String?, ownersProvided: Boolean?, phone: String?, taxId: String?, taxIdRegistrar: String?, vatId: String?, verification: AccountParams.BusinessTypeParams.Company.Verification?) : AccountParams.BusinessTypeParams","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/index.html","searchKeys":["Company","data class Company(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, directorsProvided: Boolean?, executivesProvided: Boolean?, name: String?, nameKana: String?, nameKanji: String?, ownersProvided: Boolean?, phone: String?, taxId: String?, taxIdRegistrar: String?, vatId: String?, verification: AccountParams.BusinessTypeParams.Company.Verification?) : AccountParams.BusinessTypeParams","com.stripe.android.model.AccountParams.BusinessTypeParams.Company"]},{"name":"data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html","searchKeys":["Completed","data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed"]},{"name":"data class Configuration constructor(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration?, googlePay: PaymentSheet.GooglePayConfiguration?, primaryButtonColor: ColorStateList?) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/index.html","searchKeys":["Configuration","data class Configuration constructor(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration?, googlePay: PaymentSheet.GooglePayConfiguration?, primaryButtonColor: ColorStateList?) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.Configuration"]},{"name":"data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/index.html","searchKeys":["Config","data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config"]},{"name":"data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/index.html","searchKeys":["Config","data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config"]},{"name":"data class ConfirmPaymentIntentParams : ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/index.html","searchKeys":["ConfirmPaymentIntentParams","data class ConfirmPaymentIntentParams : ConfirmStripeIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams"]},{"name":"data class ConfirmSetupIntentParams : ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/index.html","searchKeys":["ConfirmSetupIntentParams","data class ConfirmSetupIntentParams : ConfirmStripeIntentParams","com.stripe.android.model.ConfirmSetupIntentParams"]},{"name":"data class Customer : StripeModel","description":"com.stripe.android.model.Customer","location":"payments-core/com.stripe.android.model/-customer/index.html","searchKeys":["Customer","data class Customer : StripeModel","com.stripe.android.model.Customer"]},{"name":"data class CustomerBankAccount(bankAccount: BankAccount) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerBankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/index.html","searchKeys":["CustomerBankAccount","data class CustomerBankAccount(bankAccount: BankAccount) : CustomerPaymentSource","com.stripe.android.model.CustomerBankAccount"]},{"name":"data class CustomerCard(card: Card) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerCard","location":"payments-core/com.stripe.android.model/-customer-card/index.html","searchKeys":["CustomerCard","data class CustomerCard(card: Card) : CustomerPaymentSource","com.stripe.android.model.CustomerCard"]},{"name":"data class CustomerConfiguration(id: String, ephemeralKeySecret: String) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/index.html","searchKeys":["CustomerConfiguration","data class CustomerConfiguration(id: String, ephemeralKeySecret: String) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration"]},{"name":"data class CustomerSource(source: Source) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerSource","location":"payments-core/com.stripe.android.model/-customer-source/index.html","searchKeys":["CustomerSource","data class CustomerSource(source: Source) : CustomerPaymentSource","com.stripe.android.model.CustomerSource"]},{"name":"data class CvcTokenParams(cvc: String) : TokenParams","description":"com.stripe.android.model.CvcTokenParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/index.html","searchKeys":["CvcTokenParams","data class CvcTokenParams(cvc: String) : TokenParams","com.stripe.android.model.CvcTokenParams"]},{"name":"data class DateOfBirth(day: Int, month: Int, year: Int) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.DateOfBirth","location":"payments-core/com.stripe.android.model/-date-of-birth/index.html","searchKeys":["DateOfBirth","data class DateOfBirth(day: Int, month: Int, year: Int) : StripeParamsModel, Parcelable","com.stripe.android.model.DateOfBirth"]},{"name":"data class DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?) : Parcelable","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/index.html","searchKeys":["DirectoryServerEncryption","data class DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?) : Parcelable","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption"]},{"name":"data class DisplayOxxoDetails(expiresAfter: Int, number: String?, hostedVoucherUrl: String?) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/index.html","searchKeys":["DisplayOxxoDetails","data class DisplayOxxoDetails(expiresAfter: Int, number: String?, hostedVoucherUrl: String?) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Document","location":"payments-core/com.stripe.android.model/-person-token-params/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Document"]},{"name":"data class EphemeralKey : StripeModel","description":"com.stripe.android.EphemeralKey","location":"payments-core/com.stripe.android/-ephemeral-key/index.html","searchKeys":["EphemeralKey","data class EphemeralKey : StripeModel","com.stripe.android.EphemeralKey"]},{"name":"data class Error : StripeModel","description":"com.stripe.android.model.PaymentIntent.Error","location":"payments-core/com.stripe.android.model/-payment-intent/-error/index.html","searchKeys":["Error","data class Error : StripeModel","com.stripe.android.model.PaymentIntent.Error"]},{"name":"data class Error : StripeModel","description":"com.stripe.android.model.SetupIntent.Error","location":"payments-core/com.stripe.android.model/-setup-intent/-error/index.html","searchKeys":["Error","data class Error : StripeModel","com.stripe.android.model.SetupIntent.Error"]},{"name":"data class Failed(error: Throwable) : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable) : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed"]},{"name":"data class Failed(error: Throwable) : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable) : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed"]},{"name":"data class Failed(error: Throwable) : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable) : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Failed"]},{"name":"data class Failure : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-failure/index.html","searchKeys":["Failure","data class Failure : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure"]},{"name":"data class FileLink constructor(create: Boolean, expiresAt: Long?, metadata: Map?) : Parcelable","description":"com.stripe.android.model.StripeFileParams.FileLink","location":"payments-core/com.stripe.android.model/-stripe-file-params/-file-link/index.html","searchKeys":["FileLink","data class FileLink constructor(create: Boolean, expiresAt: Long?, metadata: Map?) : Parcelable","com.stripe.android.model.StripeFileParams.FileLink"]},{"name":"data class Fpx : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Fpx","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/index.html","searchKeys":["Fpx","data class Fpx : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Fpx"]},{"name":"data class Fpx(bank: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/index.html","searchKeys":["Fpx","data class Fpx(bank: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Fpx"]},{"name":"data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html","searchKeys":["GooglePayConfiguration","data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration"]},{"name":"data class GooglePayResult : Parcelable","description":"com.stripe.android.model.GooglePayResult","location":"payments-core/com.stripe.android.model/-google-pay-result/index.html","searchKeys":["GooglePayResult","data class GooglePayResult : Parcelable","com.stripe.android.model.GooglePayResult"]},{"name":"data class GooglePayWallet : Wallet, Parcelable","description":"com.stripe.android.model.wallets.Wallet.GooglePayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-google-pay-wallet/index.html","searchKeys":["GooglePayWallet","data class GooglePayWallet : Wallet, Parcelable","com.stripe.android.model.wallets.Wallet.GooglePayWallet"]},{"name":"data class Ideal : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Ideal","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/index.html","searchKeys":["Ideal","data class Ideal : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Ideal"]},{"name":"data class Ideal(bank: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/index.html","searchKeys":["Ideal","data class Ideal(bank: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Ideal"]},{"name":"data class Individual(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, ssnLast4: String?, verification: AccountParams.BusinessTypeParams.Individual.Verification?) : AccountParams.BusinessTypeParams","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/index.html","searchKeys":["Individual","data class Individual(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, ssnLast4: String?, verification: AccountParams.BusinessTypeParams.Individual.Verification?) : AccountParams.BusinessTypeParams","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual"]},{"name":"data class IssuingCardPin(pin: String) : StripeModel","description":"com.stripe.android.model.IssuingCardPin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/index.html","searchKeys":["IssuingCardPin","data class IssuingCardPin(pin: String) : StripeModel","com.stripe.android.model.IssuingCardPin"]},{"name":"data class Item : StripeModel","description":"com.stripe.android.model.SourceOrder.Item","location":"payments-core/com.stripe.android.model/-source-order/-item/index.html","searchKeys":["Item","data class Item : StripeModel","com.stripe.android.model.SourceOrder.Item"]},{"name":"data class Item(type: SourceOrderParams.Item.Type?, amount: Int?, currency: String?, description: String?, parent: String?, quantity: Int?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams.Item","location":"payments-core/com.stripe.android.model/-source-order-params/-item/index.html","searchKeys":["Item","data class Item(type: SourceOrderParams.Item.Type?, amount: Int?, currency: String?, description: String?, parent: String?, quantity: Int?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams.Item"]},{"name":"data class Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set) : StripeModel","description":"com.stripe.android.model.Source.Klarna","location":"payments-core/com.stripe.android.model/-source/-klarna/index.html","searchKeys":["Klarna","data class Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set) : StripeModel","com.stripe.android.model.Source.Klarna"]},{"name":"data class KlarnaSourceParams constructor(purchaseCountry: String, lineItems: List, customPaymentMethods: Set, billingEmail: String?, billingPhone: String?, billingAddress: Address?, billingFirstName: String?, billingLastName: String?, billingDob: DateOfBirth?, pageOptions: KlarnaSourceParams.PaymentPageOptions?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.KlarnaSourceParams","location":"payments-core/com.stripe.android.model/-klarna-source-params/index.html","searchKeys":["KlarnaSourceParams","data class KlarnaSourceParams constructor(purchaseCountry: String, lineItems: List, customPaymentMethods: Set, billingEmail: String?, billingPhone: String?, billingAddress: Address?, billingFirstName: String?, billingLastName: String?, billingDob: DateOfBirth?, pageOptions: KlarnaSourceParams.PaymentPageOptions?) : StripeParamsModel, Parcelable","com.stripe.android.model.KlarnaSourceParams"]},{"name":"data class LineItem constructor(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int?) : Parcelable","description":"com.stripe.android.model.KlarnaSourceParams.LineItem","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/index.html","searchKeys":["LineItem","data class LineItem constructor(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int?) : Parcelable","com.stripe.android.model.KlarnaSourceParams.LineItem"]},{"name":"data class MandateDataParams(type: MandateDataParams.Type) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.MandateDataParams","location":"payments-core/com.stripe.android.model/-mandate-data-params/index.html","searchKeys":["MandateDataParams","data class MandateDataParams(type: MandateDataParams.Type) : StripeParamsModel, Parcelable","com.stripe.android.model.MandateDataParams"]},{"name":"data class MasterpassWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/index.html","searchKeys":["MasterpassWallet","data class MasterpassWallet : Wallet","com.stripe.android.model.wallets.Wallet.MasterpassWallet"]},{"name":"data class MerchantInfo(merchantName: String?) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.MerchantInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-merchant-info/index.html","searchKeys":["MerchantInfo","data class MerchantInfo(merchantName: String?) : Parcelable","com.stripe.android.GooglePayJsonFactory.MerchantInfo"]},{"name":"data class Netbanking : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/index.html","searchKeys":["Netbanking","data class Netbanking : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Netbanking"]},{"name":"data class Netbanking(bank: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/index.html","searchKeys":["Netbanking","data class Netbanking(bank: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Netbanking"]},{"name":"data class Networks(available: Set, selectionMandatory: Boolean, preferred: String?) : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.Networks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/index.html","searchKeys":["Networks","data class Networks(available: Set, selectionMandatory: Boolean, preferred: String?) : StripeModel","com.stripe.android.model.PaymentMethod.Card.Networks"]},{"name":"data class Online : MandateDataParams.Type","description":"com.stripe.android.model.MandateDataParams.Type.Online","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/index.html","searchKeys":["Online","data class Online : MandateDataParams.Type","com.stripe.android.model.MandateDataParams.Type.Online"]},{"name":"data class Options(apiKey: String, stripeAccount: String?, idempotencyKey: String?) : Parcelable","description":"com.stripe.android.networking.ApiRequest.Options","location":"payments-core/com.stripe.android.networking/-api-request/-options/index.html","searchKeys":["Options","data class Options(apiKey: String, stripeAccount: String?, idempotencyKey: String?) : Parcelable","com.stripe.android.networking.ApiRequest.Options"]},{"name":"data class Owner : StripeModel","description":"com.stripe.android.model.Source.Owner","location":"payments-core/com.stripe.android.model/-source/-owner/index.html","searchKeys":["Owner","data class Owner : StripeModel","com.stripe.android.model.Source.Owner"]},{"name":"data class OwnerParams constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceParams.OwnerParams","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/index.html","searchKeys":["OwnerParams","data class OwnerParams constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceParams.OwnerParams"]},{"name":"data class PaymentConfiguration : Parcelable","description":"com.stripe.android.PaymentConfiguration","location":"payments-core/com.stripe.android/-payment-configuration/index.html","searchKeys":["PaymentConfiguration","data class PaymentConfiguration : Parcelable","com.stripe.android.PaymentConfiguration"]},{"name":"data class PaymentIntent : StripeIntent","description":"com.stripe.android.model.PaymentIntent","location":"payments-core/com.stripe.android.model/-payment-intent/index.html","searchKeys":["PaymentIntent","data class PaymentIntent : StripeIntent","com.stripe.android.model.PaymentIntent"]},{"name":"data class PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config) : GooglePayLauncherContract.Args","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-payment-intent-args/index.html","searchKeys":["PaymentIntentArgs","data class PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config) : GooglePayLauncherContract.Args","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs"]},{"name":"data class PaymentIntentResult : StripeIntentResult ","description":"com.stripe.android.PaymentIntentResult","location":"payments-core/com.stripe.android/-payment-intent-result/index.html","searchKeys":["PaymentIntentResult","data class PaymentIntentResult : StripeIntentResult ","com.stripe.android.PaymentIntentResult"]},{"name":"data class PaymentMethod : StripeModel","description":"com.stripe.android.model.PaymentMethod","location":"payments-core/com.stripe.android.model/-payment-method/index.html","searchKeys":["PaymentMethod","data class PaymentMethod : StripeModel","com.stripe.android.model.PaymentMethod"]},{"name":"data class PaymentMethodCreateParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-payment-method-create-params/index.html","searchKeys":["PaymentMethodCreateParams","data class PaymentMethodCreateParams : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams"]},{"name":"data class PaymentOption(drawableResourceId: Int, label: String)","description":"com.stripe.android.paymentsheet.model.PaymentOption","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/index.html","searchKeys":["PaymentOption","data class PaymentOption(drawableResourceId: Int, label: String)","com.stripe.android.paymentsheet.model.PaymentOption"]},{"name":"data class PaymentPageOptions(logoUrl: String?, backgroundImageUrl: String?, pageTitle: String?, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/index.html","searchKeys":["PaymentPageOptions","data class PaymentPageOptions(logoUrl: String?, backgroundImageUrl: String?, pageTitle: String?, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType?) : StripeParamsModel, Parcelable","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions"]},{"name":"data class PaymentSessionConfig : Parcelable","description":"com.stripe.android.PaymentSessionConfig","location":"payments-core/com.stripe.android/-payment-session-config/index.html","searchKeys":["PaymentSessionConfig","data class PaymentSessionConfig : Parcelable","com.stripe.android.PaymentSessionConfig"]},{"name":"data class PaymentSessionData : Parcelable","description":"com.stripe.android.PaymentSessionData","location":"payments-core/com.stripe.android/-payment-session-data/index.html","searchKeys":["PaymentSessionData","data class PaymentSessionData : Parcelable","com.stripe.android.PaymentSessionData"]},{"name":"data class PersonTokenParams(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, relationship: PersonTokenParams.Relationship?, ssnLast4: String?, verification: PersonTokenParams.Verification?) : TokenParams","description":"com.stripe.android.model.PersonTokenParams","location":"payments-core/com.stripe.android.model/-person-token-params/index.html","searchKeys":["PersonTokenParams","data class PersonTokenParams(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, relationship: PersonTokenParams.Relationship?, ssnLast4: String?, verification: PersonTokenParams.Verification?) : TokenParams","com.stripe.android.model.PersonTokenParams"]},{"name":"data class RadarSession(id: String) : StripeModel","description":"com.stripe.android.model.RadarSession","location":"payments-core/com.stripe.android.model/-radar-session/index.html","searchKeys":["RadarSession","data class RadarSession(id: String) : StripeModel","com.stripe.android.model.RadarSession"]},{"name":"data class Receiver : StripeModel","description":"com.stripe.android.model.Source.Receiver","location":"payments-core/com.stripe.android.model/-source/-receiver/index.html","searchKeys":["Receiver","data class Receiver : StripeModel","com.stripe.android.model.Source.Receiver"]},{"name":"data class Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?) : StripeModel","description":"com.stripe.android.model.Source.Redirect","location":"payments-core/com.stripe.android.model/-source/-redirect/index.html","searchKeys":["Redirect","data class Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?) : StripeModel","com.stripe.android.model.Source.Redirect"]},{"name":"data class RedirectToUrl(url: Uri, returnUrl: String?) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/index.html","searchKeys":["RedirectToUrl","data class RedirectToUrl(url: Uri, returnUrl: String?) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl"]},{"name":"data class Relationship(director: Boolean?, executive: Boolean?, owner: Boolean?, percentOwnership: Int?, representative: Boolean?, title: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Relationship","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/index.html","searchKeys":["Relationship","data class Relationship(director: Boolean?, executive: Boolean?, owner: Boolean?, percentOwnership: Int?, representative: Boolean?, title: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Relationship"]},{"name":"data class Result : ActivityStarter.Result","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/index.html","searchKeys":["Result","data class Result : ActivityStarter.Result","com.stripe.android.view.PaymentMethodsActivityStarter.Result"]},{"name":"data class SamsungPayWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.SamsungPayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-samsung-pay-wallet/index.html","searchKeys":["SamsungPayWallet","data class SamsungPayWallet : Wallet","com.stripe.android.model.wallets.Wallet.SamsungPayWallet"]},{"name":"data class SepaDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.SepaDebit"]},{"name":"data class SepaDebit : SourceTypeModel","description":"com.stripe.android.model.SourceTypeModel.SepaDebit","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit : SourceTypeModel","com.stripe.android.model.SourceTypeModel.SepaDebit"]},{"name":"data class SepaDebit(iban: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit(iban: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit"]},{"name":"data class SetupIntent : StripeIntent","description":"com.stripe.android.model.SetupIntent","location":"payments-core/com.stripe.android.model/-setup-intent/index.html","searchKeys":["SetupIntent","data class SetupIntent : StripeIntent","com.stripe.android.model.SetupIntent"]},{"name":"data class SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String) : GooglePayLauncherContract.Args","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-setup-intent-args/index.html","searchKeys":["SetupIntentArgs","data class SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String) : GooglePayLauncherContract.Args","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs"]},{"name":"data class SetupIntentResult : StripeIntentResult ","description":"com.stripe.android.SetupIntentResult","location":"payments-core/com.stripe.android/-setup-intent-result/index.html","searchKeys":["SetupIntentResult","data class SetupIntentResult : StripeIntentResult ","com.stripe.android.SetupIntentResult"]},{"name":"data class Shipping : StripeModel","description":"com.stripe.android.model.SourceOrder.Shipping","location":"payments-core/com.stripe.android.model/-source-order/-shipping/index.html","searchKeys":["Shipping","data class Shipping : StripeModel","com.stripe.android.model.SourceOrder.Shipping"]},{"name":"data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeModel","description":"com.stripe.android.model.PaymentIntent.Shipping","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/index.html","searchKeys":["Shipping","data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeModel","com.stripe.android.model.PaymentIntent.Shipping"]},{"name":"data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/index.html","searchKeys":["Shipping","data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams.Shipping"]},{"name":"data class ShippingAddressParameters constructor(isRequired: Boolean, allowedCountryCodes: Set, phoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-shipping-address-parameters/index.html","searchKeys":["ShippingAddressParameters","data class ShippingAddressParameters constructor(isRequired: Boolean, allowedCountryCodes: Set, phoneNumberRequired: Boolean) : Parcelable","com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters"]},{"name":"data class ShippingInformation(address: Address?, name: String?, phone: String?) : StripeModel, StripeParamsModel","description":"com.stripe.android.model.ShippingInformation","location":"payments-core/com.stripe.android.model/-shipping-information/index.html","searchKeys":["ShippingInformation","data class ShippingInformation(address: Address?, name: String?, phone: String?) : StripeModel, StripeParamsModel","com.stripe.android.model.ShippingInformation"]},{"name":"data class ShippingMethod constructor(label: String, identifier: String, amount: Long, currency: Currency, detail: String?) : StripeModel","description":"com.stripe.android.model.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/index.html","searchKeys":["ShippingMethod","data class ShippingMethod constructor(label: String, identifier: String, amount: Long, currency: Currency, detail: String?) : StripeModel","com.stripe.android.model.ShippingMethod"]},{"name":"data class Shipping constructor(address: Address, name: String, carrier: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/index.html","searchKeys":["Shipping","data class Shipping constructor(address: Address, name: String, carrier: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping"]},{"name":"data class Sofort : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Sofort","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/index.html","searchKeys":["Sofort","data class Sofort : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Sofort"]},{"name":"data class Sofort(country: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/index.html","searchKeys":["Sofort","data class Sofort(country: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Sofort"]},{"name":"data class Source : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Source","location":"payments-core/com.stripe.android.model/-source/index.html","searchKeys":["Source","data class Source : StripeModel, StripePaymentSource","com.stripe.android.model.Source"]},{"name":"data class SourceOrder : StripeModel","description":"com.stripe.android.model.SourceOrder","location":"payments-core/com.stripe.android.model/-source-order/index.html","searchKeys":["SourceOrder","data class SourceOrder : StripeModel","com.stripe.android.model.SourceOrder"]},{"name":"data class SourceOrderParams constructor(items: List?, shipping: SourceOrderParams.Shipping?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams","location":"payments-core/com.stripe.android.model/-source-order-params/index.html","searchKeys":["SourceOrderParams","data class SourceOrderParams constructor(items: List?, shipping: SourceOrderParams.Shipping?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams"]},{"name":"data class SourceParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceParams","location":"payments-core/com.stripe.android.model/-source-params/index.html","searchKeys":["SourceParams","data class SourceParams : StripeParamsModel, Parcelable","com.stripe.android.model.SourceParams"]},{"name":"data class Stripe3ds2ButtonCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/index.html","searchKeys":["Stripe3ds2ButtonCustomization","data class Stripe3ds2ButtonCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization"]},{"name":"data class Stripe3ds2Config : Parcelable","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/index.html","searchKeys":["Stripe3ds2Config","data class Stripe3ds2Config : Parcelable","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config"]},{"name":"data class Stripe3ds2LabelCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/index.html","searchKeys":["Stripe3ds2LabelCustomization","data class Stripe3ds2LabelCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization"]},{"name":"data class Stripe3ds2TextBoxCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/index.html","searchKeys":["Stripe3ds2TextBoxCustomization","data class Stripe3ds2TextBoxCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization"]},{"name":"data class Stripe3ds2ToolbarCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/index.html","searchKeys":["Stripe3ds2ToolbarCustomization","data class Stripe3ds2ToolbarCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization"]},{"name":"data class Stripe3ds2UiCustomization : Parcelable","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/index.html","searchKeys":["Stripe3ds2UiCustomization","data class Stripe3ds2UiCustomization : Parcelable","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization"]},{"name":"data class StripeError : StripeModel, Serializable","description":"com.stripe.android.StripeError","location":"payments-core/com.stripe.android/-stripe-error/index.html","searchKeys":["StripeError","data class StripeError : StripeModel, Serializable","com.stripe.android.StripeError"]},{"name":"data class StripeFile : StripeModel","description":"com.stripe.android.model.StripeFile","location":"payments-core/com.stripe.android.model/-stripe-file/index.html","searchKeys":["StripeFile","data class StripeFile : StripeModel","com.stripe.android.model.StripeFile"]},{"name":"data class StripeFileParams(file: File, purpose: StripeFilePurpose)","description":"com.stripe.android.model.StripeFileParams","location":"payments-core/com.stripe.android.model/-stripe-file-params/index.html","searchKeys":["StripeFileParams","data class StripeFileParams(file: File, purpose: StripeFilePurpose)","com.stripe.android.model.StripeFileParams"]},{"name":"data class Success : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-success/index.html","searchKeys":["Success","data class Success : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success"]},{"name":"data class ThreeDSecureUsage : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage","location":"payments-core/com.stripe.android.model/-payment-method/-card/-three-d-secure-usage/index.html","searchKeys":["ThreeDSecureUsage","data class ThreeDSecureUsage : StripeModel","com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage"]},{"name":"data class Token : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Token","location":"payments-core/com.stripe.android.model/-token/index.html","searchKeys":["Token","data class Token : StripeModel, StripePaymentSource","com.stripe.android.model.Token"]},{"name":"data class TransactionInfo constructor(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String?, transactionId: String?, totalPrice: Int?, totalPriceLabel: String?, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption?) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/index.html","searchKeys":["TransactionInfo","data class TransactionInfo constructor(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String?, transactionId: String?, totalPrice: Int?, totalPriceLabel: String?, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption?) : Parcelable","com.stripe.android.GooglePayJsonFactory.TransactionInfo"]},{"name":"data class Unvalidated(clientSecret: String?, flowOutcome: Int, exception: StripeException?, canCancelSource: Boolean, sourceId: String?, source: Source?, stripeAccountId: String?) : Parcelable","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/index.html","searchKeys":["Unvalidated","data class Unvalidated(clientSecret: String?, flowOutcome: Int, exception: StripeException?, canCancelSource: Boolean, sourceId: String?, source: Source?, stripeAccountId: String?) : Parcelable","com.stripe.android.payments.PaymentFlowResult.Unvalidated"]},{"name":"data class Upi : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Upi","location":"payments-core/com.stripe.android.model/-payment-method/-upi/index.html","searchKeys":["Upi","data class Upi : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Upi"]},{"name":"data class Upi(vpa: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/index.html","searchKeys":["Upi","data class Upi(vpa: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Upi"]},{"name":"data class Use3DS1(url: String) : StripeIntent.NextActionData.SdkData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/index.html","searchKeys":["Use3DS1","data class Use3DS1(url: String) : StripeIntent.NextActionData.SdkData","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1"]},{"name":"data class Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption) : StripeIntent.NextActionData.SdkData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/index.html","searchKeys":["Use3DS2","data class Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption) : StripeIntent.NextActionData.SdkData","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2"]},{"name":"data class Validated(month: Int, year: Int) : ExpirationDate","description":"com.stripe.android.model.ExpirationDate.Validated","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/index.html","searchKeys":["Validated","data class Validated(month: Int, year: Int) : ExpirationDate","com.stripe.android.model.ExpirationDate.Validated"]},{"name":"data class Verification(document: AccountParams.BusinessTypeParams.Company.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/index.html","searchKeys":["Verification","data class Verification(document: AccountParams.BusinessTypeParams.Company.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification"]},{"name":"data class Verification constructor(document: AccountParams.BusinessTypeParams.Individual.Document?, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/index.html","searchKeys":["Verification","data class Verification constructor(document: AccountParams.BusinessTypeParams.Individual.Document?, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification"]},{"name":"data class Verification constructor(document: PersonTokenParams.Document?, additionalDocument: PersonTokenParams.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Verification","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/index.html","searchKeys":["Verification","data class Verification constructor(document: PersonTokenParams.Document?, additionalDocument: PersonTokenParams.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Verification"]},{"name":"data class VisaCheckoutWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/index.html","searchKeys":["VisaCheckoutWallet","data class VisaCheckoutWallet : Wallet","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet"]},{"name":"data class WeChat(statementDescriptor: String?, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String?) : StripeModel","description":"com.stripe.android.model.WeChat","location":"payments-core/com.stripe.android.model/-we-chat/index.html","searchKeys":["WeChat","data class WeChat(statementDescriptor: String?, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String?) : StripeModel","com.stripe.android.model.WeChat"]},{"name":"data class WeChatPay(appId: String) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/index.html","searchKeys":["WeChatPay","data class WeChatPay(appId: String) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay"]},{"name":"data class WeChatPayNextAction : StripeModel","description":"com.stripe.android.model.WeChatPayNextAction","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/index.html","searchKeys":["WeChatPayNextAction","data class WeChatPayNextAction : StripeModel","com.stripe.android.model.WeChatPayNextAction"]},{"name":"data class WeChatPayRedirect(weChat: WeChat) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/index.html","searchKeys":["WeChatPayRedirect","data class WeChatPayRedirect(weChat: WeChat) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect"]},{"name":"enum BillingAddressFields : Enum ","description":"com.stripe.android.view.BillingAddressFields","location":"payments-core/com.stripe.android.view/-billing-address-fields/index.html","searchKeys":["BillingAddressFields","enum BillingAddressFields : Enum ","com.stripe.android.view.BillingAddressFields"]},{"name":"enum BusinessType : Enum ","description":"com.stripe.android.model.AccountParams.BusinessType","location":"payments-core/com.stripe.android.model/-account-params/-business-type/index.html","searchKeys":["BusinessType","enum BusinessType : Enum ","com.stripe.android.model.AccountParams.BusinessType"]},{"name":"enum ButtonType : Enum ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/index.html","searchKeys":["ButtonType","enum ButtonType : Enum ","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType"]},{"name":"enum CancellationReason : Enum ","description":"com.stripe.android.model.PaymentIntent.CancellationReason","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/index.html","searchKeys":["CancellationReason","enum CancellationReason : Enum ","com.stripe.android.model.PaymentIntent.CancellationReason"]},{"name":"enum CancellationReason : Enum ","description":"com.stripe.android.model.SetupIntent.CancellationReason","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/index.html","searchKeys":["CancellationReason","enum CancellationReason : Enum ","com.stripe.android.model.SetupIntent.CancellationReason"]},{"name":"enum CaptureMethod : Enum ","description":"com.stripe.android.model.PaymentIntent.CaptureMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/index.html","searchKeys":["CaptureMethod","enum CaptureMethod : Enum ","com.stripe.android.model.PaymentIntent.CaptureMethod"]},{"name":"enum CardBrand : Enum ","description":"com.stripe.android.model.CardBrand","location":"payments-core/com.stripe.android.model/-card-brand/index.html","searchKeys":["CardBrand","enum CardBrand : Enum ","com.stripe.android.model.CardBrand"]},{"name":"enum CardFunding : Enum ","description":"com.stripe.android.model.CardFunding","location":"payments-core/com.stripe.android.model/-card-funding/index.html","searchKeys":["CardFunding","enum CardFunding : Enum ","com.stripe.android.model.CardFunding"]},{"name":"enum CardPinActionError : Enum ","description":"com.stripe.android.IssuingCardPinService.CardPinActionError","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/index.html","searchKeys":["CardPinActionError","enum CardPinActionError : Enum ","com.stripe.android.IssuingCardPinService.CardPinActionError"]},{"name":"enum CheckoutOption : Enum ","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/index.html","searchKeys":["CheckoutOption","enum CheckoutOption : Enum ","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption"]},{"name":"enum ConfirmationMethod : Enum ","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/index.html","searchKeys":["ConfirmationMethod","enum ConfirmationMethod : Enum ","com.stripe.android.model.PaymentIntent.ConfirmationMethod"]},{"name":"enum CustomPaymentMethods : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/index.html","searchKeys":["CustomPaymentMethods","enum CustomPaymentMethods : Enum ","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods"]},{"name":"enum CustomizableShippingField : Enum ","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/index.html","searchKeys":["CustomizableShippingField","enum CustomizableShippingField : Enum ","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField"]},{"name":"enum Environment : Enum ","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/index.html","searchKeys":["Environment","enum Environment : Enum ","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment"]},{"name":"enum Fields : Enum ","description":"com.stripe.android.view.CardValidCallback.Fields","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/index.html","searchKeys":["Fields","enum Fields : Enum ","com.stripe.android.view.CardValidCallback.Fields"]},{"name":"enum Flow : Enum ","description":"com.stripe.android.model.Source.Flow","location":"payments-core/com.stripe.android.model/-source/-flow/index.html","searchKeys":["Flow","enum Flow : Enum ","com.stripe.android.model.Source.Flow"]},{"name":"enum Flow : Enum ","description":"com.stripe.android.model.SourceParams.Flow","location":"payments-core/com.stripe.android.model/-source-params/-flow/index.html","searchKeys":["Flow","enum Flow : Enum ","com.stripe.android.model.SourceParams.Flow"]},{"name":"enum FocusField : Enum ","description":"com.stripe.android.view.CardInputListener.FocusField","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/index.html","searchKeys":["FocusField","enum FocusField : Enum ","com.stripe.android.view.CardInputListener.FocusField"]},{"name":"enum Format : Enum ","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format"]},{"name":"enum Format : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format"]},{"name":"enum Format : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format"]},{"name":"enum GooglePayEnvironment : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/index.html","searchKeys":["GooglePayEnvironment","enum GooglePayEnvironment : Enum ","com.stripe.android.googlepaylauncher.GooglePayEnvironment"]},{"name":"enum NextActionType : Enum ","description":"com.stripe.android.model.StripeIntent.NextActionType","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/index.html","searchKeys":["NextActionType","enum NextActionType : Enum ","com.stripe.android.model.StripeIntent.NextActionType"]},{"name":"enum PurchaseType : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/index.html","searchKeys":["PurchaseType","enum PurchaseType : Enum ","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType"]},{"name":"enum SetupFutureUsage : Enum ","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/index.html","searchKeys":["SetupFutureUsage","enum SetupFutureUsage : Enum ","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.BankAccount.Status","location":"payments-core/com.stripe.android.model/-bank-account/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.BankAccount.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.CodeVerification.Status","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.CodeVerification.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.Redirect.Status","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.Redirect.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.Status","location":"payments-core/com.stripe.android.model/-source/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.StripeIntent.Status","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.StripeIntent.Status"]},{"name":"enum StripeApiBeta : Enum ","description":"com.stripe.android.StripeApiBeta","location":"payments-core/com.stripe.android/-stripe-api-beta/index.html","searchKeys":["StripeApiBeta","enum StripeApiBeta : Enum ","com.stripe.android.StripeApiBeta"]},{"name":"enum StripeFilePurpose : Enum ","description":"com.stripe.android.model.StripeFilePurpose","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/index.html","searchKeys":["StripeFilePurpose","enum StripeFilePurpose : Enum ","com.stripe.android.model.StripeFilePurpose"]},{"name":"enum ThreeDSecureStatus : Enum ","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/index.html","searchKeys":["ThreeDSecureStatus","enum ThreeDSecureStatus : Enum ","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus"]},{"name":"enum TokenizationMethod : Enum ","description":"com.stripe.android.model.TokenizationMethod","location":"payments-core/com.stripe.android.model/-tokenization-method/index.html","searchKeys":["TokenizationMethod","enum TokenizationMethod : Enum ","com.stripe.android.model.TokenizationMethod"]},{"name":"enum TotalPriceStatus : Enum ","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/index.html","searchKeys":["TotalPriceStatus","enum TotalPriceStatus : Enum ","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.BankAccount.Type","location":"payments-core/com.stripe.android.model/-bank-account/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.BankAccount.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.BankAccountTokenParams.Type","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.BankAccountTokenParams.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.KlarnaSourceParams.LineItem.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.PaymentIntent.Error.Type","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.PaymentIntent.Error.Type"]},{"name":"enum Type : Enum , Parcelable","description":"com.stripe.android.model.PaymentMethod.Type","location":"payments-core/com.stripe.android.model/-payment-method/-type/index.html","searchKeys":["Type","enum Type : Enum , Parcelable","com.stripe.android.model.PaymentMethod.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SetupIntent.Error.Type","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SetupIntent.Error.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SourceOrder.Item.Type","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SourceOrder.Item.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SourceOrderParams.Item.Type","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SourceOrderParams.Item.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.Token.Type","location":"payments-core/com.stripe.android.model/-token/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.Token.Type"]},{"name":"enum Usage : Enum ","description":"com.stripe.android.model.Source.Usage","location":"payments-core/com.stripe.android.model/-source/-usage/index.html","searchKeys":["Usage","enum Usage : Enum ","com.stripe.android.model.Source.Usage"]},{"name":"enum Usage : Enum ","description":"com.stripe.android.model.StripeIntent.Usage","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/index.html","searchKeys":["Usage","enum Usage : Enum ","com.stripe.android.model.StripeIntent.Usage"]},{"name":"fun APIConnectionException(message: String? = null, cause: Throwable? = null)","description":"com.stripe.android.exception.APIConnectionException.APIConnectionException","location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/-a-p-i-connection-exception.html","searchKeys":["APIConnectionException","fun APIConnectionException(message: String? = null, cause: Throwable? = null)","com.stripe.android.exception.APIConnectionException.APIConnectionException"]},{"name":"fun APIException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.APIException.APIException","location":"payments-core/com.stripe.android.exception/-a-p-i-exception/-a-p-i-exception.html","searchKeys":["APIException","fun APIException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.APIException.APIException"]},{"name":"fun AddPaymentMethodActivity()","description":"com.stripe.android.view.AddPaymentMethodActivity.AddPaymentMethodActivity","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/-add-payment-method-activity.html","searchKeys":["AddPaymentMethodActivity","fun AddPaymentMethodActivity()","com.stripe.android.view.AddPaymentMethodActivity.AddPaymentMethodActivity"]},{"name":"fun AddPaymentMethodActivityStarter(activity: Activity)","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-add-payment-method-activity-starter.html","searchKeys":["AddPaymentMethodActivityStarter","fun AddPaymentMethodActivityStarter(activity: Activity)","com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter"]},{"name":"fun AddPaymentMethodActivityStarter(fragment: Fragment)","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-add-payment-method-activity-starter.html","searchKeys":["AddPaymentMethodActivityStarter","fun AddPaymentMethodActivityStarter(fragment: Fragment)","com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter"]},{"name":"fun AddressJapanParams(city: String? = null, country: String? = null, line1: String? = null, line2: String? = null, postalCode: String? = null, state: String? = null, town: String? = null)","description":"com.stripe.android.model.AddressJapanParams.AddressJapanParams","location":"payments-core/com.stripe.android.model/-address-japan-params/-address-japan-params.html","searchKeys":["AddressJapanParams","fun AddressJapanParams(city: String? = null, country: String? = null, line1: String? = null, line2: String? = null, postalCode: String? = null, state: String? = null, town: String? = null)","com.stripe.android.model.AddressJapanParams.AddressJapanParams"]},{"name":"fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html","searchKeys":["Args","fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args"]},{"name":"fun AuBecsDebit(bsbNumber: String, accountNumber: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/-au-becs-debit.html","searchKeys":["AuBecsDebit","fun AuBecsDebit(bsbNumber: String, accountNumber: String)","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.AuBecsDebit"]},{"name":"fun BacsDebit(accountNumber: String, sortCode: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/-bacs-debit.html","searchKeys":["BacsDebit","fun BacsDebit(accountNumber: String, sortCode: String)","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.BacsDebit"]},{"name":"fun BankAccountTokenParams(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type? = null, accountHolderName: String? = null, routingNumber: String? = null)","description":"com.stripe.android.model.BankAccountTokenParams.BankAccountTokenParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-bank-account-token-params.html","searchKeys":["BankAccountTokenParams","fun BankAccountTokenParams(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type? = null, accountHolderName: String? = null, routingNumber: String? = null)","com.stripe.android.model.BankAccountTokenParams.BankAccountTokenParams"]},{"name":"fun BecsDebitMandateAcceptanceTextFactory(context: Context)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.BecsDebitMandateAcceptanceTextFactory","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/-becs-debit-mandate-acceptance-text-factory.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory","fun BecsDebitMandateAcceptanceTextFactory(context: Context)","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.BecsDebitMandateAcceptanceTextFactory"]},{"name":"fun BecsDebitMandateAcceptanceTextView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = android.R.attr.textViewStyle)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView.BecsDebitMandateAcceptanceTextView","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/-becs-debit-mandate-acceptance-text-view.html","searchKeys":["BecsDebitMandateAcceptanceTextView","fun BecsDebitMandateAcceptanceTextView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = android.R.attr.textViewStyle)","com.stripe.android.view.BecsDebitMandateAcceptanceTextView.BecsDebitMandateAcceptanceTextView"]},{"name":"fun BecsDebitWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, companyName: String = \"\")","description":"com.stripe.android.view.BecsDebitWidget.BecsDebitWidget","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-becs-debit-widget.html","searchKeys":["BecsDebitWidget","fun BecsDebitWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, companyName: String = \"\")","com.stripe.android.view.BecsDebitWidget.BecsDebitWidget"]},{"name":"fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-billing-address-config.html","searchKeys":["BillingAddressConfig","fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.BillingAddressConfig"]},{"name":"fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-billing-address-config.html","searchKeys":["BillingAddressConfig","fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.BillingAddressConfig"]},{"name":"fun BillingAddressParameters(isRequired: Boolean = false, format: GooglePayJsonFactory.BillingAddressParameters.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.BillingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-billing-address-parameters.html","searchKeys":["BillingAddressParameters","fun BillingAddressParameters(isRequired: Boolean = false, format: GooglePayJsonFactory.BillingAddressParameters.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.BillingAddressParameters"]},{"name":"fun BillingDetails(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.PaymentMethod.BillingDetails.BillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-billing-details.html","searchKeys":["BillingDetails","fun BillingDetails(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.PaymentMethod.BillingDetails.BillingDetails"]},{"name":"fun Blik(code: String)","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik.Blik","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/-blik.html","searchKeys":["Blik","fun Blik(code: String)","com.stripe.android.model.PaymentMethodOptionsParams.Blik.Blik"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentSessionConfig.Builder.Builder","location":"payments-core/com.stripe.android/-payment-session-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentSessionConfig.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.Address.Builder.Builder","location":"payments-core/com.stripe.android.model/-address/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.Address.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AddressJapanParams.Builder.Builder","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AddressJapanParams.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethod.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethod.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PersonTokenParams.Builder.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PersonTokenParams.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PersonTokenParams.Relationship.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.Builder"]},{"name":"fun Card(cvc: String? = null, network: String? = null)","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.Card","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/-card.html","searchKeys":["Card","fun Card(cvc: String? = null, network: String? = null)","com.stripe.android.model.PaymentMethodOptionsParams.Card.Card"]},{"name":"fun CardException(stripeError: StripeError, requestId: String? = null)","description":"com.stripe.android.exception.CardException.CardException","location":"payments-core/com.stripe.android.exception/-card-exception/-card-exception.html","searchKeys":["CardException","fun CardException(stripeError: StripeError, requestId: String? = null)","com.stripe.android.exception.CardException.CardException"]},{"name":"fun CardFormView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.CardFormView.CardFormView","location":"payments-core/com.stripe.android.view/-card-form-view/-card-form-view.html","searchKeys":["CardFormView","fun CardFormView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.CardFormView.CardFormView"]},{"name":"fun CardInputWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.CardInputWidget.CardInputWidget","location":"payments-core/com.stripe.android.view/-card-input-widget/-card-input-widget.html","searchKeys":["CardInputWidget","fun CardInputWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.CardInputWidget.CardInputWidget"]},{"name":"fun CardMultilineWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, shouldShowPostalCode: Boolean = CardWidget.DEFAULT_POSTAL_CODE_ENABLED)","description":"com.stripe.android.view.CardMultilineWidget.CardMultilineWidget","location":"payments-core/com.stripe.android.view/-card-multiline-widget/-card-multiline-widget.html","searchKeys":["CardMultilineWidget","fun CardMultilineWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, shouldShowPostalCode: Boolean = CardWidget.DEFAULT_POSTAL_CODE_ENABLED)","com.stripe.android.view.CardMultilineWidget.CardMultilineWidget"]},{"name":"fun CardNumberEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.CardNumberEditText.CardNumberEditText","location":"payments-core/com.stripe.android.view/-card-number-edit-text/-card-number-edit-text.html","searchKeys":["CardNumberEditText","fun CardNumberEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.CardNumberEditText.CardNumberEditText"]},{"name":"fun CardParams(number: String, expMonth: Int, expYear: Int, cvc: String? = null, name: String? = null, address: Address? = null, currency: String? = null, metadata: Map? = null)","description":"com.stripe.android.model.CardParams.CardParams","location":"payments-core/com.stripe.android.model/-card-params/-card-params.html","searchKeys":["CardParams","fun CardParams(number: String, expMonth: Int, expYear: Int, cvc: String? = null, name: String? = null, address: Address? = null, currency: String? = null, metadata: Map? = null)","com.stripe.android.model.CardParams.CardParams"]},{"name":"fun Company(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, directorsProvided: Boolean? = null, executivesProvided: Boolean? = null, name: String? = null, nameKana: String? = null, nameKanji: String? = null, ownersProvided: Boolean? = false, phone: String? = null, taxId: String? = null, taxIdRegistrar: String? = null, vatId: String? = null, verification: AccountParams.BusinessTypeParams.Company.Verification? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-company.html","searchKeys":["Company","fun Company(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, directorsProvided: Boolean? = null, executivesProvided: Boolean? = null, name: String? = null, nameKana: String? = null, nameKanji: String? = null, ownersProvided: Boolean? = false, phone: String? = null, taxId: String? = null, taxIdRegistrar: String? = null, vatId: String? = null, verification: AccountParams.BusinessTypeParams.Company.Verification? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Company"]},{"name":"fun Completed(paymentMethod: PaymentMethod)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html","searchKeys":["Completed","fun Completed(paymentMethod: PaymentMethod)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.Completed"]},{"name":"fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/-config.html","searchKeys":["Config","fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.Config"]},{"name":"fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/-config.html","searchKeys":["Config","fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.Config"]},{"name":"fun Configuration(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration? = null, googlePay: PaymentSheet.GooglePayConfiguration? = null, primaryButtonColor: ColorStateList? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.Configuration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/-configuration.html","searchKeys":["Configuration","fun Configuration(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration? = null, googlePay: PaymentSheet.GooglePayConfiguration? = null, primaryButtonColor: ColorStateList? = null)","com.stripe.android.paymentsheet.PaymentSheet.Configuration.Configuration"]},{"name":"fun CustomerBankAccount(bankAccount: BankAccount)","description":"com.stripe.android.model.CustomerBankAccount.CustomerBankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/-customer-bank-account.html","searchKeys":["CustomerBankAccount","fun CustomerBankAccount(bankAccount: BankAccount)","com.stripe.android.model.CustomerBankAccount.CustomerBankAccount"]},{"name":"fun CustomerCard(card: Card)","description":"com.stripe.android.model.CustomerCard.CustomerCard","location":"payments-core/com.stripe.android.model/-customer-card/-customer-card.html","searchKeys":["CustomerCard","fun CustomerCard(card: Card)","com.stripe.android.model.CustomerCard.CustomerCard"]},{"name":"fun CustomerConfiguration(id: String, ephemeralKeySecret: String)","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.CustomerConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/-customer-configuration.html","searchKeys":["CustomerConfiguration","fun CustomerConfiguration(id: String, ephemeralKeySecret: String)","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.CustomerConfiguration"]},{"name":"fun CustomerSource(source: Source)","description":"com.stripe.android.model.CustomerSource.CustomerSource","location":"payments-core/com.stripe.android.model/-customer-source/-customer-source.html","searchKeys":["CustomerSource","fun CustomerSource(source: Source)","com.stripe.android.model.CustomerSource.CustomerSource"]},{"name":"fun CvcEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.CvcEditText.CvcEditText","location":"payments-core/com.stripe.android.view/-cvc-edit-text/-cvc-edit-text.html","searchKeys":["CvcEditText","fun CvcEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.CvcEditText.CvcEditText"]},{"name":"fun CvcTokenParams(cvc: String)","description":"com.stripe.android.model.CvcTokenParams.CvcTokenParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/-cvc-token-params.html","searchKeys":["CvcTokenParams","fun CvcTokenParams(cvc: String)","com.stripe.android.model.CvcTokenParams.CvcTokenParams"]},{"name":"fun DateOfBirth(day: Int, month: Int, year: Int)","description":"com.stripe.android.model.DateOfBirth.DateOfBirth","location":"payments-core/com.stripe.android.model/-date-of-birth/-date-of-birth.html","searchKeys":["DateOfBirth","fun DateOfBirth(day: Int, month: Int, year: Int)","com.stripe.android.model.DateOfBirth.DateOfBirth"]},{"name":"fun DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.DirectoryServerEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/-directory-server-encryption.html","searchKeys":["DirectoryServerEncryption","fun DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.DirectoryServerEncryption"]},{"name":"fun DisplayOxxoDetails(expiresAfter: Int = 0, number: String? = null, hostedVoucherUrl: String? = null)","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/-display-oxxo-details.html","searchKeys":["DisplayOxxoDetails","fun DisplayOxxoDetails(expiresAfter: Int = 0, number: String? = null, hostedVoucherUrl: String? = null)","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.DisplayOxxoDetails"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.Document"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.Document"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.PersonTokenParams.Document.Document","location":"payments-core/com.stripe.android.model/-person-token-params/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.PersonTokenParams.Document.Document"]},{"name":"fun ExpiryDateEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.ExpiryDateEditText.ExpiryDateEditText","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/-expiry-date-edit-text.html","searchKeys":["ExpiryDateEditText","fun ExpiryDateEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.ExpiryDateEditText.ExpiryDateEditText"]},{"name":"fun Factory(appInfo: AppInfo? = null, apiVersion: String = ApiVersion.get().code, sdkVersion: String = Stripe.VERSION)","description":"com.stripe.android.networking.ApiRequest.Factory.Factory","location":"payments-core/com.stripe.android.networking/-api-request/-factory/-factory.html","searchKeys":["Factory","fun Factory(appInfo: AppInfo? = null, apiVersion: String = ApiVersion.get().code, sdkVersion: String = Stripe.VERSION)","com.stripe.android.networking.ApiRequest.Factory.Factory"]},{"name":"fun Failed(error: Throwable)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable)","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.Failed"]},{"name":"fun Failed(error: Throwable)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.Failed"]},{"name":"fun Failed(error: Throwable)","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed.Failed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable)","com.stripe.android.paymentsheet.PaymentSheetResult.Failed.Failed"]},{"name":"fun Failure(error: Throwable)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.Failure","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/-failure.html","searchKeys":["Failure","fun Failure(error: Throwable)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.Failure"]},{"name":"fun FileLink(create: Boolean = false, expiresAt: Long? = null, metadata: Map? = null)","description":"com.stripe.android.model.StripeFileParams.FileLink.FileLink","location":"payments-core/com.stripe.android.model/-stripe-file-params/-file-link/-file-link.html","searchKeys":["FileLink","fun FileLink(create: Boolean = false, expiresAt: Long? = null, metadata: Map? = null)","com.stripe.android.model.StripeFileParams.FileLink.FileLink"]},{"name":"fun Fpx(bank: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.Fpx","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/-fpx.html","searchKeys":["Fpx","fun Fpx(bank: String?)","com.stripe.android.model.PaymentMethodCreateParams.Fpx.Fpx"]},{"name":"fun GooglePayConfig(context: Context)","description":"com.stripe.android.GooglePayConfig.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/-google-pay-config.html","searchKeys":["GooglePayConfig","fun GooglePayConfig(context: Context)","com.stripe.android.GooglePayConfig.GooglePayConfig"]},{"name":"fun GooglePayConfig(publishableKey: String, connectedAccountId: String? = null)","description":"com.stripe.android.GooglePayConfig.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/-google-pay-config.html","searchKeys":["GooglePayConfig","fun GooglePayConfig(publishableKey: String, connectedAccountId: String? = null)","com.stripe.android.GooglePayConfig.GooglePayConfig"]},{"name":"fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html","searchKeys":["GooglePayConfiguration","fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration"]},{"name":"fun GooglePayJsonFactory(context: Context, isJcbEnabled: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/-google-pay-json-factory.html","searchKeys":["GooglePayJsonFactory","fun GooglePayJsonFactory(context: Context, isJcbEnabled: Boolean = false)","com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory"]},{"name":"fun GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/-google-pay-json-factory.html","searchKeys":["GooglePayJsonFactory","fun GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean = false)","com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory"]},{"name":"fun GooglePayLauncher(activity: ComponentActivity, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-google-pay-launcher.html","searchKeys":["GooglePayLauncher","fun GooglePayLauncher(activity: ComponentActivity, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher"]},{"name":"fun GooglePayLauncher(fragment: Fragment, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-google-pay-launcher.html","searchKeys":["GooglePayLauncher","fun GooglePayLauncher(fragment: Fragment, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher"]},{"name":"fun GooglePayLauncherContract()","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.GooglePayLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-google-pay-launcher-contract.html","searchKeys":["GooglePayLauncherContract","fun GooglePayLauncherContract()","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.GooglePayLauncherContract"]},{"name":"fun GooglePayPaymentMethodLauncher(activity: ComponentActivity, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-google-pay-payment-method-launcher.html","searchKeys":["GooglePayPaymentMethodLauncher","fun GooglePayPaymentMethodLauncher(activity: ComponentActivity, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher"]},{"name":"fun GooglePayPaymentMethodLauncher(fragment: Fragment, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-google-pay-payment-method-launcher.html","searchKeys":["GooglePayPaymentMethodLauncher","fun GooglePayPaymentMethodLauncher(fragment: Fragment, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher"]},{"name":"fun GooglePayPaymentMethodLauncherContract()","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.GooglePayPaymentMethodLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-google-pay-payment-method-launcher-contract.html","searchKeys":["GooglePayPaymentMethodLauncherContract","fun GooglePayPaymentMethodLauncherContract()","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.GooglePayPaymentMethodLauncherContract"]},{"name":"fun IOContext()","description":"com.stripe.android.payments.core.injection.IOContext.IOContext","location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/-i-o-context.html","searchKeys":["IOContext","fun IOContext()","com.stripe.android.payments.core.injection.IOContext.IOContext"]},{"name":"fun Ideal(bank: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.Ideal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/-ideal.html","searchKeys":["Ideal","fun Ideal(bank: String?)","com.stripe.android.model.PaymentMethodCreateParams.Ideal.Ideal"]},{"name":"fun Individual(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, ssnLast4: String? = null, verification: AccountParams.BusinessTypeParams.Individual.Verification? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-individual.html","searchKeys":["Individual","fun Individual(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, ssnLast4: String? = null, verification: AccountParams.BusinessTypeParams.Individual.Verification? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Individual"]},{"name":"fun IntentAuthenticatorKey(value: KClass)","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey.IntentAuthenticatorKey","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/-intent-authenticator-key.html","searchKeys":["IntentAuthenticatorKey","fun IntentAuthenticatorKey(value: KClass)","com.stripe.android.payments.core.injection.IntentAuthenticatorKey.IntentAuthenticatorKey"]},{"name":"fun IntentAuthenticatorMap()","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorMap.IntentAuthenticatorMap","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/-intent-authenticator-map.html","searchKeys":["IntentAuthenticatorMap","fun IntentAuthenticatorMap()","com.stripe.android.payments.core.injection.IntentAuthenticatorMap.IntentAuthenticatorMap"]},{"name":"fun InvalidRequestException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.InvalidRequestException.InvalidRequestException","location":"payments-core/com.stripe.android.exception/-invalid-request-exception/-invalid-request-exception.html","searchKeys":["InvalidRequestException","fun InvalidRequestException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.InvalidRequestException.InvalidRequestException"]},{"name":"fun IssuingCardPin(pin: String)","description":"com.stripe.android.model.IssuingCardPin.IssuingCardPin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/-issuing-card-pin.html","searchKeys":["IssuingCardPin","fun IssuingCardPin(pin: String)","com.stripe.android.model.IssuingCardPin.IssuingCardPin"]},{"name":"fun Item(type: SourceOrderParams.Item.Type? = null, amount: Int? = null, currency: String? = null, description: String? = null, parent: String? = null, quantity: Int? = null)","description":"com.stripe.android.model.SourceOrderParams.Item.Item","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-item.html","searchKeys":["Item","fun Item(type: SourceOrderParams.Item.Type? = null, amount: Int? = null, currency: String? = null, description: String? = null, parent: String? = null, quantity: Int? = null)","com.stripe.android.model.SourceOrderParams.Item.Item"]},{"name":"fun Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set)","description":"com.stripe.android.model.Source.Klarna.Klarna","location":"payments-core/com.stripe.android.model/-source/-klarna/-klarna.html","searchKeys":["Klarna","fun Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set)","com.stripe.android.model.Source.Klarna.Klarna"]},{"name":"fun KlarnaSourceParams(purchaseCountry: String, lineItems: List, customPaymentMethods: Set = emptySet(), billingEmail: String? = null, billingPhone: String? = null, billingAddress: Address? = null, billingFirstName: String? = null, billingLastName: String? = null, billingDob: DateOfBirth? = null, pageOptions: KlarnaSourceParams.PaymentPageOptions? = null)","description":"com.stripe.android.model.KlarnaSourceParams.KlarnaSourceParams","location":"payments-core/com.stripe.android.model/-klarna-source-params/-klarna-source-params.html","searchKeys":["KlarnaSourceParams","fun KlarnaSourceParams(purchaseCountry: String, lineItems: List, customPaymentMethods: Set = emptySet(), billingEmail: String? = null, billingPhone: String? = null, billingAddress: Address? = null, billingFirstName: String? = null, billingLastName: String? = null, billingDob: DateOfBirth? = null, pageOptions: KlarnaSourceParams.PaymentPageOptions? = null)","com.stripe.android.model.KlarnaSourceParams.KlarnaSourceParams"]},{"name":"fun LineItem(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int? = null)","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.LineItem","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-line-item.html","searchKeys":["LineItem","fun LineItem(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int? = null)","com.stripe.android.model.KlarnaSourceParams.LineItem.LineItem"]},{"name":"fun MandateDataParams(type: MandateDataParams.Type)","description":"com.stripe.android.model.MandateDataParams.MandateDataParams","location":"payments-core/com.stripe.android.model/-mandate-data-params/-mandate-data-params.html","searchKeys":["MandateDataParams","fun MandateDataParams(type: MandateDataParams.Type)","com.stripe.android.model.MandateDataParams.MandateDataParams"]},{"name":"fun MerchantInfo(merchantName: String? = null)","description":"com.stripe.android.GooglePayJsonFactory.MerchantInfo.MerchantInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-merchant-info/-merchant-info.html","searchKeys":["MerchantInfo","fun MerchantInfo(merchantName: String? = null)","com.stripe.android.GooglePayJsonFactory.MerchantInfo.MerchantInfo"]},{"name":"fun Netbanking(bank: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/-netbanking.html","searchKeys":["Netbanking","fun Netbanking(bank: String)","com.stripe.android.model.PaymentMethodCreateParams.Netbanking.Netbanking"]},{"name":"fun Networks(available: Set = emptySet(), selectionMandatory: Boolean = false, preferred: String? = null)","description":"com.stripe.android.model.PaymentMethod.Card.Networks.Networks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/-networks.html","searchKeys":["Networks","fun Networks(available: Set = emptySet(), selectionMandatory: Boolean = false, preferred: String? = null)","com.stripe.android.model.PaymentMethod.Card.Networks.Networks"]},{"name":"fun Online(ipAddress: String, userAgent: String)","description":"com.stripe.android.model.MandateDataParams.Type.Online.Online","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/-online.html","searchKeys":["Online","fun Online(ipAddress: String, userAgent: String)","com.stripe.android.model.MandateDataParams.Type.Online.Online"]},{"name":"fun Options(apiKey: String, stripeAccount: String? = null, idempotencyKey: String? = null)","description":"com.stripe.android.networking.ApiRequest.Options.Options","location":"payments-core/com.stripe.android.networking/-api-request/-options/-options.html","searchKeys":["Options","fun Options(apiKey: String, stripeAccount: String? = null, idempotencyKey: String? = null)","com.stripe.android.networking.ApiRequest.Options.Options"]},{"name":"fun Outcome()","description":"com.stripe.android.StripeIntentResult.Outcome.Outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-outcome.html","searchKeys":["Outcome","fun Outcome()","com.stripe.android.StripeIntentResult.Outcome.Outcome"]},{"name":"fun OwnerParams(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.SourceParams.OwnerParams.OwnerParams","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/-owner-params.html","searchKeys":["OwnerParams","fun OwnerParams(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.SourceParams.OwnerParams.OwnerParams"]},{"name":"fun PaymentAuthWebViewActivity()","description":"com.stripe.android.view.PaymentAuthWebViewActivity.PaymentAuthWebViewActivity","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/-payment-auth-web-view-activity.html","searchKeys":["PaymentAuthWebViewActivity","fun PaymentAuthWebViewActivity()","com.stripe.android.view.PaymentAuthWebViewActivity.PaymentAuthWebViewActivity"]},{"name":"fun PaymentFlowActivity()","description":"com.stripe.android.view.PaymentFlowActivity.PaymentFlowActivity","location":"payments-core/com.stripe.android.view/-payment-flow-activity/-payment-flow-activity.html","searchKeys":["PaymentFlowActivity","fun PaymentFlowActivity()","com.stripe.android.view.PaymentFlowActivity.PaymentFlowActivity"]},{"name":"fun PaymentFlowActivityStarter(activity: Activity, config: PaymentSessionConfig)","description":"com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-payment-flow-activity-starter.html","searchKeys":["PaymentFlowActivityStarter","fun PaymentFlowActivityStarter(activity: Activity, config: PaymentSessionConfig)","com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter"]},{"name":"fun PaymentFlowActivityStarter(fragment: Fragment, config: PaymentSessionConfig)","description":"com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-payment-flow-activity-starter.html","searchKeys":["PaymentFlowActivityStarter","fun PaymentFlowActivityStarter(fragment: Fragment, config: PaymentSessionConfig)","com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter"]},{"name":"fun PaymentFlowViewPager(context: Context, attrs: AttributeSet? = null, isSwipingAllowed: Boolean = false)","description":"com.stripe.android.view.PaymentFlowViewPager.PaymentFlowViewPager","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/-payment-flow-view-pager.html","searchKeys":["PaymentFlowViewPager","fun PaymentFlowViewPager(context: Context, attrs: AttributeSet? = null, isSwipingAllowed: Boolean = false)","com.stripe.android.view.PaymentFlowViewPager.PaymentFlowViewPager"]},{"name":"fun PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs.PaymentIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-payment-intent-args/-payment-intent-args.html","searchKeys":["PaymentIntentArgs","fun PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config)","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs.PaymentIntentArgs"]},{"name":"fun PaymentIntentJsonParser()","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser.PaymentIntentJsonParser","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/-payment-intent-json-parser.html","searchKeys":["PaymentIntentJsonParser","fun PaymentIntentJsonParser()","com.stripe.android.model.parsers.PaymentIntentJsonParser.PaymentIntentJsonParser"]},{"name":"fun PaymentMethodsActivity()","description":"com.stripe.android.view.PaymentMethodsActivity.PaymentMethodsActivity","location":"payments-core/com.stripe.android.view/-payment-methods-activity/-payment-methods-activity.html","searchKeys":["PaymentMethodsActivity","fun PaymentMethodsActivity()","com.stripe.android.view.PaymentMethodsActivity.PaymentMethodsActivity"]},{"name":"fun PaymentMethodsActivityStarter(activity: Activity)","description":"com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-payment-methods-activity-starter.html","searchKeys":["PaymentMethodsActivityStarter","fun PaymentMethodsActivityStarter(activity: Activity)","com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter"]},{"name":"fun PaymentMethodsActivityStarter(fragment: Fragment)","description":"com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-payment-methods-activity-starter.html","searchKeys":["PaymentMethodsActivityStarter","fun PaymentMethodsActivityStarter(fragment: Fragment)","com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter"]},{"name":"fun PaymentOption(drawableResourceId: Int, label: String)","description":"com.stripe.android.paymentsheet.model.PaymentOption.PaymentOption","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/-payment-option.html","searchKeys":["PaymentOption","fun PaymentOption(drawableResourceId: Int, label: String)","com.stripe.android.paymentsheet.model.PaymentOption.PaymentOption"]},{"name":"fun PaymentPageOptions(logoUrl: String? = null, backgroundImageUrl: String? = null, pageTitle: String? = null, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null)","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PaymentPageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-payment-page-options.html","searchKeys":["PaymentPageOptions","fun PaymentPageOptions(logoUrl: String? = null, backgroundImageUrl: String? = null, pageTitle: String? = null, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null)","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PaymentPageOptions"]},{"name":"fun PaymentSession(activity: ComponentActivity, config: PaymentSessionConfig)","description":"com.stripe.android.PaymentSession.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/-payment-session.html","searchKeys":["PaymentSession","fun PaymentSession(activity: ComponentActivity, config: PaymentSessionConfig)","com.stripe.android.PaymentSession.PaymentSession"]},{"name":"fun PaymentSession(fragment: Fragment, config: PaymentSessionConfig)","description":"com.stripe.android.PaymentSession.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/-payment-session.html","searchKeys":["PaymentSession","fun PaymentSession(fragment: Fragment, config: PaymentSessionConfig)","com.stripe.android.PaymentSession.PaymentSession"]},{"name":"fun PaymentSheet(activity: ComponentActivity, callback: PaymentSheetResultCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-payment-sheet.html","searchKeys":["PaymentSheet","fun PaymentSheet(activity: ComponentActivity, callback: PaymentSheetResultCallback)","com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet"]},{"name":"fun PaymentSheet(fragment: Fragment, callback: PaymentSheetResultCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-payment-sheet.html","searchKeys":["PaymentSheet","fun PaymentSheet(fragment: Fragment, callback: PaymentSheetResultCallback)","com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet"]},{"name":"fun PaymentSheetContract()","description":"com.stripe.android.paymentsheet.PaymentSheetContract.PaymentSheetContract","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-payment-sheet-contract.html","searchKeys":["PaymentSheetContract","fun PaymentSheetContract()","com.stripe.android.paymentsheet.PaymentSheetContract.PaymentSheetContract"]},{"name":"fun PermissionException(stripeError: StripeError, requestId: String? = null)","description":"com.stripe.android.exception.PermissionException.PermissionException","location":"payments-core/com.stripe.android.exception/-permission-exception/-permission-exception.html","searchKeys":["PermissionException","fun PermissionException(stripeError: StripeError, requestId: String? = null)","com.stripe.android.exception.PermissionException.PermissionException"]},{"name":"fun PersonTokenParams(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, relationship: PersonTokenParams.Relationship? = null, ssnLast4: String? = null, verification: PersonTokenParams.Verification? = null)","description":"com.stripe.android.model.PersonTokenParams.PersonTokenParams","location":"payments-core/com.stripe.android.model/-person-token-params/-person-token-params.html","searchKeys":["PersonTokenParams","fun PersonTokenParams(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, relationship: PersonTokenParams.Relationship? = null, ssnLast4: String? = null, verification: PersonTokenParams.Verification? = null)","com.stripe.android.model.PersonTokenParams.PersonTokenParams"]},{"name":"fun PostalCodeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.PostalCodeEditText.PostalCodeEditText","location":"payments-core/com.stripe.android.view/-postal-code-edit-text/-postal-code-edit-text.html","searchKeys":["PostalCodeEditText","fun PostalCodeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.PostalCodeEditText.PostalCodeEditText"]},{"name":"fun RadarSession(id: String)","description":"com.stripe.android.model.RadarSession.RadarSession","location":"payments-core/com.stripe.android.model/-radar-session/-radar-session.html","searchKeys":["RadarSession","fun RadarSession(id: String)","com.stripe.android.model.RadarSession.RadarSession"]},{"name":"fun RateLimitException(stripeError: StripeError? = null, requestId: String? = null, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.RateLimitException.RateLimitException","location":"payments-core/com.stripe.android.exception/-rate-limit-exception/-rate-limit-exception.html","searchKeys":["RateLimitException","fun RateLimitException(stripeError: StripeError? = null, requestId: String? = null, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.RateLimitException.RateLimitException"]},{"name":"fun Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?)","description":"com.stripe.android.model.Source.Redirect.Redirect","location":"payments-core/com.stripe.android.model/-source/-redirect/-redirect.html","searchKeys":["Redirect","fun Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?)","com.stripe.android.model.Source.Redirect.Redirect"]},{"name":"fun RedirectToUrl(url: Uri, returnUrl: String?)","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/-redirect-to-url.html","searchKeys":["RedirectToUrl","fun RedirectToUrl(url: Uri, returnUrl: String?)","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.RedirectToUrl"]},{"name":"fun Relationship(director: Boolean? = null, executive: Boolean? = null, owner: Boolean? = null, percentOwnership: Int? = null, representative: Boolean? = null, title: String? = null)","description":"com.stripe.android.model.PersonTokenParams.Relationship.Relationship","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-relationship.html","searchKeys":["Relationship","fun Relationship(director: Boolean? = null, executive: Boolean? = null, owner: Boolean? = null, percentOwnership: Int? = null, representative: Boolean? = null, title: String? = null)","com.stripe.android.model.PersonTokenParams.Relationship.Relationship"]},{"name":"fun SepaDebit(iban: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/-sepa-debit.html","searchKeys":["SepaDebit","fun SepaDebit(iban: String?)","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.SepaDebit"]},{"name":"fun SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs.SetupIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-setup-intent-args/-setup-intent-args.html","searchKeys":["SetupIntentArgs","fun SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String)","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs.SetupIntentArgs"]},{"name":"fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.PaymentIntent.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.PaymentIntent.Shipping.Shipping"]},{"name":"fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.SourceOrderParams.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.SourceOrderParams.Shipping.Shipping"]},{"name":"fun Shipping(address: Address, name: String, carrier: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, name: String, carrier: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.Shipping"]},{"name":"fun ShippingAddressParameters(isRequired: Boolean = false, allowedCountryCodes: Set = emptySet(), phoneNumberRequired: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters.ShippingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-shipping-address-parameters/-shipping-address-parameters.html","searchKeys":["ShippingAddressParameters","fun ShippingAddressParameters(isRequired: Boolean = false, allowedCountryCodes: Set = emptySet(), phoneNumberRequired: Boolean = false)","com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters.ShippingAddressParameters"]},{"name":"fun ShippingInfoWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.ShippingInfoWidget.ShippingInfoWidget","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-shipping-info-widget.html","searchKeys":["ShippingInfoWidget","fun ShippingInfoWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.ShippingInfoWidget.ShippingInfoWidget"]},{"name":"fun ShippingInformation(address: Address? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.ShippingInformation.ShippingInformation","location":"payments-core/com.stripe.android.model/-shipping-information/-shipping-information.html","searchKeys":["ShippingInformation","fun ShippingInformation(address: Address? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.ShippingInformation.ShippingInformation"]},{"name":"fun ShippingMethod(label: String, identifier: String, amount: Long, currency: Currency, detail: String? = null)","description":"com.stripe.android.model.ShippingMethod.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/-shipping-method.html","searchKeys":["ShippingMethod","fun ShippingMethod(label: String, identifier: String, amount: Long, currency: Currency, detail: String? = null)","com.stripe.android.model.ShippingMethod.ShippingMethod"]},{"name":"fun ShippingMethod(label: String, identifier: String, amount: Long, currencyCode: String, detail: String? = null)","description":"com.stripe.android.model.ShippingMethod.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/-shipping-method.html","searchKeys":["ShippingMethod","fun ShippingMethod(label: String, identifier: String, amount: Long, currencyCode: String, detail: String? = null)","com.stripe.android.model.ShippingMethod.ShippingMethod"]},{"name":"fun Sofort(country: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort.Sofort","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/-sofort.html","searchKeys":["Sofort","fun Sofort(country: String)","com.stripe.android.model.PaymentMethodCreateParams.Sofort.Sofort"]},{"name":"fun SourceOrderParams(items: List? = null, shipping: SourceOrderParams.Shipping? = null)","description":"com.stripe.android.model.SourceOrderParams.SourceOrderParams","location":"payments-core/com.stripe.android.model/-source-order-params/-source-order-params.html","searchKeys":["SourceOrderParams","fun SourceOrderParams(items: List? = null, shipping: SourceOrderParams.Shipping? = null)","com.stripe.android.model.SourceOrderParams.SourceOrderParams"]},{"name":"fun SourceType()","description":"com.stripe.android.model.Source.SourceType.SourceType","location":"payments-core/com.stripe.android.model/-source/-source-type/-source-type.html","searchKeys":["SourceType","fun SourceType()","com.stripe.android.model.Source.SourceType.SourceType"]},{"name":"fun Stripe(context: Context, publishableKey: String, stripeAccountId: String? = null, enableLogging: Boolean = false, betas: Set = emptySet())","description":"com.stripe.android.Stripe.Stripe","location":"payments-core/com.stripe.android/-stripe/-stripe.html","searchKeys":["Stripe","fun Stripe(context: Context, publishableKey: String, stripeAccountId: String? = null, enableLogging: Boolean = false, betas: Set = emptySet())","com.stripe.android.Stripe.Stripe"]},{"name":"fun StripeActivity()","description":"com.stripe.android.view.StripeActivity.StripeActivity","location":"payments-core/com.stripe.android.view/-stripe-activity/-stripe-activity.html","searchKeys":["StripeActivity","fun StripeActivity()","com.stripe.android.view.StripeActivity.StripeActivity"]},{"name":"fun StripeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.StripeEditText.StripeEditText","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-stripe-edit-text.html","searchKeys":["StripeEditText","fun StripeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.StripeEditText.StripeEditText"]},{"name":"fun StripeException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, cause: Throwable? = null, message: String? = stripeError?.message)","description":"com.stripe.android.exception.StripeException.StripeException","location":"payments-core/com.stripe.android.exception/-stripe-exception/-stripe-exception.html","searchKeys":["StripeException","fun StripeException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, cause: Throwable? = null, message: String? = stripeError?.message)","com.stripe.android.exception.StripeException.StripeException"]},{"name":"fun StripeFileParams(file: File, purpose: StripeFilePurpose)","description":"com.stripe.android.model.StripeFileParams.StripeFileParams","location":"payments-core/com.stripe.android.model/-stripe-file-params/-stripe-file-params.html","searchKeys":["StripeFileParams","fun StripeFileParams(file: File, purpose: StripeFilePurpose)","com.stripe.android.model.StripeFileParams.StripeFileParams"]},{"name":"fun StripeIntent.getRequestCode(): Int","description":"com.stripe.android.model.getRequestCode","location":"payments-core/com.stripe.android.model/get-request-code.html","searchKeys":["getRequestCode","fun StripeIntent.getRequestCode(): Int","com.stripe.android.model.getRequestCode"]},{"name":"fun StripeRequest()","description":"com.stripe.android.networking.StripeRequest.StripeRequest","location":"payments-core/com.stripe.android.networking/-stripe-request/-stripe-request.html","searchKeys":["StripeRequest","fun StripeRequest()","com.stripe.android.networking.StripeRequest.StripeRequest"]},{"name":"fun TokenParams(tokenType: Token.Type, attribution: Set = emptySet())","description":"com.stripe.android.model.TokenParams.TokenParams","location":"payments-core/com.stripe.android.model/-token-params/-token-params.html","searchKeys":["TokenParams","fun TokenParams(tokenType: Token.Type, attribution: Set = emptySet())","com.stripe.android.model.TokenParams.TokenParams"]},{"name":"fun TransactionInfo(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String? = null, transactionId: String? = null, totalPrice: Int? = null, totalPriceLabel: String? = null, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption? = null)","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TransactionInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-transaction-info.html","searchKeys":["TransactionInfo","fun TransactionInfo(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String? = null, transactionId: String? = null, totalPrice: Int? = null, totalPriceLabel: String? = null, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption? = null)","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TransactionInfo"]},{"name":"fun UIContext()","description":"com.stripe.android.payments.core.injection.UIContext.UIContext","location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/-u-i-context.html","searchKeys":["UIContext","fun UIContext()","com.stripe.android.payments.core.injection.UIContext.UIContext"]},{"name":"fun Unvalidated(clientSecret: String? = null, flowOutcome: Int = StripeIntentResult.Outcome.UNKNOWN, exception: StripeException? = null, canCancelSource: Boolean = false, sourceId: String? = null, source: Source? = null, stripeAccountId: String? = null)","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Unvalidated","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-unvalidated.html","searchKeys":["Unvalidated","fun Unvalidated(clientSecret: String? = null, flowOutcome: Int = StripeIntentResult.Outcome.UNKNOWN, exception: StripeException? = null, canCancelSource: Boolean = false, sourceId: String? = null, source: Source? = null, stripeAccountId: String? = null)","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Unvalidated"]},{"name":"fun Upi(vpa: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi.Upi","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/-upi.html","searchKeys":["Upi","fun Upi(vpa: String?)","com.stripe.android.model.PaymentMethodCreateParams.Upi.Upi"]},{"name":"fun Use3DS1(url: String)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.Use3DS1","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/-use3-d-s1.html","searchKeys":["Use3DS1","fun Use3DS1(url: String)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.Use3DS1"]},{"name":"fun Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.Use3DS2","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-use3-d-s2.html","searchKeys":["Use3DS2","fun Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.Use3DS2"]},{"name":"fun Validated(month: Int, year: Int)","description":"com.stripe.android.model.ExpirationDate.Validated.Validated","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/-validated.html","searchKeys":["Validated","fun Validated(month: Int, year: Int)","com.stripe.android.model.ExpirationDate.Validated.Validated"]},{"name":"fun Verification(document: AccountParams.BusinessTypeParams.Company.Document? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: AccountParams.BusinessTypeParams.Company.Document? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.Verification"]},{"name":"fun Verification(document: AccountParams.BusinessTypeParams.Individual.Document? = null, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: AccountParams.BusinessTypeParams.Individual.Document? = null, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.Verification"]},{"name":"fun Verification(document: PersonTokenParams.Document? = null, additionalDocument: PersonTokenParams.Document? = null)","description":"com.stripe.android.model.PersonTokenParams.Verification.Verification","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: PersonTokenParams.Document? = null, additionalDocument: PersonTokenParams.Document? = null)","com.stripe.android.model.PersonTokenParams.Verification.Verification"]},{"name":"fun WeChat(statementDescriptor: String? = null, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String? = null)","description":"com.stripe.android.model.WeChat.WeChat","location":"payments-core/com.stripe.android.model/-we-chat/-we-chat.html","searchKeys":["WeChat","fun WeChat(statementDescriptor: String? = null, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String? = null)","com.stripe.android.model.WeChat.WeChat"]},{"name":"fun WeChatPay(appId: String)","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/-we-chat-pay.html","searchKeys":["WeChatPay","fun WeChatPay(appId: String)","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.WeChatPay"]},{"name":"fun WeChatPayRedirect(weChat: WeChat)","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/-we-chat-pay-redirect.html","searchKeys":["WeChatPayRedirect","fun WeChatPayRedirect(weChat: WeChat)","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.WeChatPayRedirect"]},{"name":"fun addCustomerSource(sourceId: String, sourceType: String, listener: CustomerSession.SourceRetrievalListener)","description":"com.stripe.android.CustomerSession.addCustomerSource","location":"payments-core/com.stripe.android/-customer-session/add-customer-source.html","searchKeys":["addCustomerSource","fun addCustomerSource(sourceId: String, sourceType: String, listener: CustomerSession.SourceRetrievalListener)","com.stripe.android.CustomerSession.addCustomerSource"]},{"name":"fun asSourceType(sourceType: String?): String","description":"com.stripe.android.model.Source.Companion.asSourceType","location":"payments-core/com.stripe.android.model/-source/-companion/as-source-type.html","searchKeys":["asSourceType","fun asSourceType(sourceType: String?): String","com.stripe.android.model.Source.Companion.asSourceType"]},{"name":"fun attachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","description":"com.stripe.android.CustomerSession.attachPaymentMethod","location":"payments-core/com.stripe.android/-customer-session/attach-payment-method.html","searchKeys":["attachPaymentMethod","fun attachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","com.stripe.android.CustomerSession.attachPaymentMethod"]},{"name":"fun authenticateSource(activity: ComponentActivity, source: Source, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.authenticateSource","location":"payments-core/com.stripe.android/-stripe/authenticate-source.html","searchKeys":["authenticateSource","fun authenticateSource(activity: ComponentActivity, source: Source, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.authenticateSource"]},{"name":"fun authenticateSource(fragment: Fragment, source: Source, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.authenticateSource","location":"payments-core/com.stripe.android/-stripe/authenticate-source.html","searchKeys":["authenticateSource","fun authenticateSource(fragment: Fragment, source: Source, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.authenticateSource"]},{"name":"fun cancelCallbacks()","description":"com.stripe.android.CustomerSession.Companion.cancelCallbacks","location":"payments-core/com.stripe.android/-customer-session/-companion/cancel-callbacks.html","searchKeys":["cancelCallbacks","fun cancelCallbacks()","com.stripe.android.CustomerSession.Companion.cancelCallbacks"]},{"name":"fun clearPaymentMethod()","description":"com.stripe.android.PaymentSession.clearPaymentMethod","location":"payments-core/com.stripe.android/-payment-session/clear-payment-method.html","searchKeys":["clearPaymentMethod","fun clearPaymentMethod()","com.stripe.android.PaymentSession.clearPaymentMethod"]},{"name":"fun confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.confirmAlipayPayment","location":"payments-core/com.stripe.android/-stripe/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment","fun confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.confirmAlipayPayment"]},{"name":"fun confirmPayment(activity: ComponentActivity, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmPayment","location":"payments-core/com.stripe.android/-stripe/confirm-payment.html","searchKeys":["confirmPayment","fun confirmPayment(activity: ComponentActivity, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmPayment"]},{"name":"fun confirmPayment(fragment: Fragment, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmPayment","location":"payments-core/com.stripe.android/-stripe/confirm-payment.html","searchKeys":["confirmPayment","fun confirmPayment(fragment: Fragment, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmPayment"]},{"name":"fun confirmPaymentIntentSynchronous(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent?","description":"com.stripe.android.Stripe.confirmPaymentIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/confirm-payment-intent-synchronous.html","searchKeys":["confirmPaymentIntentSynchronous","fun confirmPaymentIntentSynchronous(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent?","com.stripe.android.Stripe.confirmPaymentIntentSynchronous"]},{"name":"fun confirmSetupIntent(activity: ComponentActivity, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmSetupIntent","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","fun confirmSetupIntent(activity: ComponentActivity, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmSetupIntent"]},{"name":"fun confirmSetupIntent(fragment: Fragment, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmSetupIntent","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","fun confirmSetupIntent(fragment: Fragment, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmSetupIntent"]},{"name":"fun confirmSetupIntentSynchronous(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent?","description":"com.stripe.android.Stripe.confirmSetupIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent-synchronous.html","searchKeys":["confirmSetupIntentSynchronous","fun confirmSetupIntentSynchronous(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent?","com.stripe.android.Stripe.confirmSetupIntentSynchronous"]},{"name":"fun confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.confirmWeChatPayPayment","location":"payments-core/com.stripe.android/-stripe/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment","fun confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.confirmWeChatPayPayment"]},{"name":"fun create(activity: ComponentActivity, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/create.html","searchKeys":["create","fun create(activity: ComponentActivity, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create"]},{"name":"fun create(auBecsDebit: PaymentMethodCreateParams.AuBecsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(auBecsDebit: PaymentMethodCreateParams.AuBecsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(bacsDebit: PaymentMethodCreateParams.BacsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(bacsDebit: PaymentMethodCreateParams.BacsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(card: PaymentMethodCreateParams.Card, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(card: PaymentMethodCreateParams.Card, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(clientSecret: String, shipping: ConfirmPaymentIntentParams.Shipping? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create.html","searchKeys":["create","fun create(clientSecret: String, shipping: ConfirmPaymentIntentParams.Shipping? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.create"]},{"name":"fun create(companyName: String): CharSequence","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.create","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/create.html","searchKeys":["create","fun create(companyName: String): CharSequence","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.create"]},{"name":"fun create(context: Context, keyProvider: EphemeralKeyProvider): IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService.Companion.create","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/create.html","searchKeys":["create","fun create(context: Context, keyProvider: EphemeralKeyProvider): IssuingCardPinService","com.stripe.android.IssuingCardPinService.Companion.create"]},{"name":"fun create(context: Context, publishableKey: String, stripeAccountId: String? = null, keyProvider: EphemeralKeyProvider): IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService.Companion.create","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/create.html","searchKeys":["create","fun create(context: Context, publishableKey: String, stripeAccountId: String? = null, keyProvider: EphemeralKeyProvider): IssuingCardPinService","com.stripe.android.IssuingCardPinService.Companion.create"]},{"name":"fun create(fpx: PaymentMethodCreateParams.Fpx, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(fpx: PaymentMethodCreateParams.Fpx, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(fragment: Fragment, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/create.html","searchKeys":["create","fun create(fragment: Fragment, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create"]},{"name":"fun create(ideal: PaymentMethodCreateParams.Ideal, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(ideal: PaymentMethodCreateParams.Ideal, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(intent: Intent): PaymentFlowActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion.create","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-companion/create.html","searchKeys":["create","fun create(intent: Intent): PaymentFlowActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion.create"]},{"name":"fun create(name: String, version: String? = null, url: String? = null, partnerId: String? = null): AppInfo","description":"com.stripe.android.AppInfo.Companion.create","location":"payments-core/com.stripe.android/-app-info/-companion/create.html","searchKeys":["create","fun create(name: String, version: String? = null, url: String? = null, partnerId: String? = null): AppInfo","com.stripe.android.AppInfo.Companion.create"]},{"name":"fun create(netbanking: PaymentMethodCreateParams.Netbanking, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(netbanking: PaymentMethodCreateParams.Netbanking, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create.html","searchKeys":["create","fun create(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.create"]},{"name":"fun create(paymentMethodId: String, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create.html","searchKeys":["create","fun create(paymentMethodId: String, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.create"]},{"name":"fun create(sepaDebit: PaymentMethodCreateParams.SepaDebit, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(sepaDebit: PaymentMethodCreateParams.SepaDebit, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(sofort: PaymentMethodCreateParams.Sofort, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(sofort: PaymentMethodCreateParams.Sofort, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(throwable: Throwable): StripeException","description":"com.stripe.android.exception.StripeException.Companion.create","location":"payments-core/com.stripe.android.exception/-stripe-exception/-companion/create.html","searchKeys":["create","fun create(throwable: Throwable): StripeException","com.stripe.android.exception.StripeException.Companion.create"]},{"name":"fun create(token: String): PaymentMethodCreateParams.Card","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-companion/create.html","searchKeys":["create","fun create(token: String): PaymentMethodCreateParams.Card","com.stripe.android.model.PaymentMethodCreateParams.Card.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, businessType: AccountParams.BusinessType): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, businessType: AccountParams.BusinessType): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, company: AccountParams.BusinessTypeParams.Company): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, company: AccountParams.BusinessTypeParams.Company): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, individual: AccountParams.BusinessTypeParams.Individual): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, individual: AccountParams.BusinessTypeParams.Individual): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(upi: PaymentMethodCreateParams.Upi, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(upi: PaymentMethodCreateParams.Upi, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createAccountToken","location":"payments-core/com.stripe.android/-stripe/create-account-token.html","searchKeys":["createAccountToken","fun createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createAccountToken"]},{"name":"fun createAccountTokenSynchronous(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createAccountTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-account-token-synchronous.html","searchKeys":["createAccountTokenSynchronous","fun createAccountTokenSynchronous(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createAccountTokenSynchronous"]},{"name":"fun createAfterpayClearpay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createAfterpayClearpay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-afterpay-clearpay.html","searchKeys":["createAfterpayClearpay","fun createAfterpayClearpay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createAfterpayClearpay"]},{"name":"fun createAlipay(clientSecret: String): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createAlipay","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-alipay.html","searchKeys":["createAlipay","fun createAlipay(clientSecret: String): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createAlipay"]},{"name":"fun createAlipay(metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createAlipay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-alipay.html","searchKeys":["createAlipay","fun createAlipay(metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createAlipay"]},{"name":"fun createAlipayReusableParams(currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createAlipayReusableParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-alipay-reusable-params.html","searchKeys":["createAlipayReusableParams","fun createAlipayReusableParams(currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createAlipayReusableParams"]},{"name":"fun createAlipaySingleUseParams(amount: Long, currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createAlipaySingleUseParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-alipay-single-use-params.html","searchKeys":["createAlipaySingleUseParams","fun createAlipaySingleUseParams(amount: Long, currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createAlipaySingleUseParams"]},{"name":"fun createBancontact(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createBancontact","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-bancontact.html","searchKeys":["createBancontact","fun createBancontact(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createBancontact"]},{"name":"fun createBancontactParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null, preferredLanguage: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createBancontactParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-bancontact-params.html","searchKeys":["createBancontactParams","fun createBancontactParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null, preferredLanguage: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createBancontactParams"]},{"name":"fun createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createBankAccountToken","location":"payments-core/com.stripe.android/-stripe/create-bank-account-token.html","searchKeys":["createBankAccountToken","fun createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createBankAccountToken"]},{"name":"fun createBankAccountTokenSynchronous(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createBankAccountTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-bank-account-token-synchronous.html","searchKeys":["createBankAccountTokenSynchronous","fun createBankAccountTokenSynchronous(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createBankAccountTokenSynchronous"]},{"name":"fun createBlik(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createBlik","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-blik.html","searchKeys":["createBlik","fun createBlik(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createBlik"]},{"name":"fun createCard(cardParams: CardParams): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createCard","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-card.html","searchKeys":["createCard","fun createCard(cardParams: CardParams): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createCard"]},{"name":"fun createCardParams(cardParams: CardParams): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCardParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-card-params.html","searchKeys":["createCardParams","fun createCardParams(cardParams: CardParams): SourceParams","com.stripe.android.model.SourceParams.Companion.createCardParams"]},{"name":"fun createCardParamsFromGooglePay(googlePayPaymentData: JSONObject): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCardParamsFromGooglePay","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-card-params-from-google-pay.html","searchKeys":["createCardParamsFromGooglePay","fun createCardParamsFromGooglePay(googlePayPaymentData: JSONObject): SourceParams","com.stripe.android.model.SourceParams.Companion.createCardParamsFromGooglePay"]},{"name":"fun createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createCardToken","location":"payments-core/com.stripe.android/-stripe/create-card-token.html","searchKeys":["createCardToken","fun createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createCardToken"]},{"name":"fun createCardTokenSynchronous(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createCardTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-card-token-synchronous.html","searchKeys":["createCardTokenSynchronous","fun createCardTokenSynchronous(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createCardTokenSynchronous"]},{"name":"fun createCustomParams(type: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCustomParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-custom-params.html","searchKeys":["createCustomParams","fun createCustomParams(type: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createCustomParams"]},{"name":"fun createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createCvcUpdateToken","location":"payments-core/com.stripe.android/-stripe/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken","fun createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createCvcUpdateToken"]},{"name":"fun createCvcUpdateTokenSynchronous(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createCvcUpdateTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-cvc-update-token-synchronous.html","searchKeys":["createCvcUpdateTokenSynchronous","fun createCvcUpdateTokenSynchronous(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createCvcUpdateTokenSynchronous"]},{"name":"fun createDelete(url: String, options: ApiRequest.Options): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createDelete","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-delete.html","searchKeys":["createDelete","fun createDelete(url: String, options: ApiRequest.Options): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createDelete"]},{"name":"fun createEPSParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createEPSParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-e-p-s-params.html","searchKeys":["createEPSParams","fun createEPSParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createEPSParams"]},{"name":"fun createEps(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createEps","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-eps.html","searchKeys":["createEps","fun createEps(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createEps"]},{"name":"fun createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createFile","location":"payments-core/com.stripe.android/-stripe/create-file.html","searchKeys":["createFile","fun createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createFile"]},{"name":"fun createFileSynchronous(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","description":"com.stripe.android.Stripe.createFileSynchronous","location":"payments-core/com.stripe.android/-stripe/create-file-synchronous.html","searchKeys":["createFileSynchronous","fun createFileSynchronous(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","com.stripe.android.Stripe.createFileSynchronous"]},{"name":"fun createFromGooglePay(googlePayPaymentData: JSONObject): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createFromGooglePay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-from-google-pay.html","searchKeys":["createFromGooglePay","fun createFromGooglePay(googlePayPaymentData: JSONObject): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createFromGooglePay"]},{"name":"fun createGet(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createGet","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-get.html","searchKeys":["createGet","fun createGet(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createGet"]},{"name":"fun createGiropay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createGiropay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-giropay.html","searchKeys":["createGiropay","fun createGiropay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createGiropay"]},{"name":"fun createGiropayParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createGiropayParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-giropay-params.html","searchKeys":["createGiropayParams","fun createGiropayParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createGiropayParams"]},{"name":"fun createGrabPay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createGrabPay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-grab-pay.html","searchKeys":["createGrabPay","fun createGrabPay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createGrabPay"]},{"name":"fun createIdealParams(amount: Long, name: String?, returnUrl: String, statementDescriptor: String? = null, bank: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createIdealParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-ideal-params.html","searchKeys":["createIdealParams","fun createIdealParams(amount: Long, name: String?, returnUrl: String, statementDescriptor: String? = null, bank: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createIdealParams"]},{"name":"fun createIsReadyToPayRequest(billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, existingPaymentMethodRequired: Boolean? = null): JSONObject","description":"com.stripe.android.GooglePayJsonFactory.createIsReadyToPayRequest","location":"payments-core/com.stripe.android/-google-pay-json-factory/create-is-ready-to-pay-request.html","searchKeys":["createIsReadyToPayRequest","fun createIsReadyToPayRequest(billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, existingPaymentMethodRequired: Boolean? = null): JSONObject","com.stripe.android.GooglePayJsonFactory.createIsReadyToPayRequest"]},{"name":"fun createKlarna(returnUrl: String, currency: String, klarnaParams: KlarnaSourceParams): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createKlarna","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-klarna.html","searchKeys":["createKlarna","fun createKlarna(returnUrl: String, currency: String, klarnaParams: KlarnaSourceParams): SourceParams","com.stripe.android.model.SourceParams.Companion.createKlarna"]},{"name":"fun createMasterpassParams(transactionId: String, cartId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createMasterpassParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-masterpass-params.html","searchKeys":["createMasterpassParams","fun createMasterpassParams(transactionId: String, cartId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createMasterpassParams"]},{"name":"fun createMultibancoParams(amount: Long, returnUrl: String, email: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createMultibancoParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-multibanco-params.html","searchKeys":["createMultibancoParams","fun createMultibancoParams(amount: Long, returnUrl: String, email: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createMultibancoParams"]},{"name":"fun createOxxo(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createOxxo","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-oxxo.html","searchKeys":["createOxxo","fun createOxxo(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createOxxo"]},{"name":"fun createP24(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createP24","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-p24.html","searchKeys":["createP24","fun createP24(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createP24"]},{"name":"fun createP24Params(amount: Long, currency: String, name: String?, email: String, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createP24Params","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-p24-params.html","searchKeys":["createP24Params","fun createP24Params(amount: Long, currency: String, name: String?, email: String, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createP24Params"]},{"name":"fun createPayPal(metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createPayPal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-pay-pal.html","searchKeys":["createPayPal","fun createPayPal(metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createPayPal"]},{"name":"fun createPaymentDataRequest(transactionInfo: GooglePayJsonFactory.TransactionInfo, billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, shippingAddressParameters: GooglePayJsonFactory.ShippingAddressParameters? = null, isEmailRequired: Boolean = false, merchantInfo: GooglePayJsonFactory.MerchantInfo? = null): JSONObject","description":"com.stripe.android.GooglePayJsonFactory.createPaymentDataRequest","location":"payments-core/com.stripe.android/-google-pay-json-factory/create-payment-data-request.html","searchKeys":["createPaymentDataRequest","fun createPaymentDataRequest(transactionInfo: GooglePayJsonFactory.TransactionInfo, billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, shippingAddressParameters: GooglePayJsonFactory.ShippingAddressParameters? = null, isEmailRequired: Boolean = false, merchantInfo: GooglePayJsonFactory.MerchantInfo? = null): JSONObject","com.stripe.android.GooglePayJsonFactory.createPaymentDataRequest"]},{"name":"fun createPaymentIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createPaymentIntentArgs","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/create-payment-intent-args.html","searchKeys":["createPaymentIntentArgs","fun createPaymentIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createPaymentIntentArgs"]},{"name":"fun createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPaymentMethod","location":"payments-core/com.stripe.android/-stripe/create-payment-method.html","searchKeys":["createPaymentMethod","fun createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPaymentMethod"]},{"name":"fun createPaymentMethodSynchronous(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod?","description":"com.stripe.android.Stripe.createPaymentMethodSynchronous","location":"payments-core/com.stripe.android/-stripe/create-payment-method-synchronous.html","searchKeys":["createPaymentMethodSynchronous","fun createPaymentMethodSynchronous(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod?","com.stripe.android.Stripe.createPaymentMethodSynchronous"]},{"name":"fun createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPersonToken","location":"payments-core/com.stripe.android/-stripe/create-person-token.html","searchKeys":["createPersonToken","fun createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPersonToken"]},{"name":"fun createPersonTokenSynchronous(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createPersonTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-person-token-synchronous.html","searchKeys":["createPersonTokenSynchronous","fun createPersonTokenSynchronous(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createPersonTokenSynchronous"]},{"name":"fun createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPiiToken","location":"payments-core/com.stripe.android/-stripe/create-pii-token.html","searchKeys":["createPiiToken","fun createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPiiToken"]},{"name":"fun createPiiTokenSynchronous(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createPiiTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-pii-token-synchronous.html","searchKeys":["createPiiTokenSynchronous","fun createPiiTokenSynchronous(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createPiiTokenSynchronous"]},{"name":"fun createPost(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createPost","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-post.html","searchKeys":["createPost","fun createPost(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createPost"]},{"name":"fun createRadarSession(stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createRadarSession","location":"payments-core/com.stripe.android/-stripe/create-radar-session.html","searchKeys":["createRadarSession","fun createRadarSession(stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createRadarSession"]},{"name":"fun createRetrieveSourceParams(clientSecret: String): Map","description":"com.stripe.android.model.SourceParams.Companion.createRetrieveSourceParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-retrieve-source-params.html","searchKeys":["createRetrieveSourceParams","fun createRetrieveSourceParams(clientSecret: String): Map","com.stripe.android.model.SourceParams.Companion.createRetrieveSourceParams"]},{"name":"fun createSepaDebitParams(name: String, iban: String, addressLine1: String?, city: String, postalCode: String, country: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSepaDebitParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sepa-debit-params.html","searchKeys":["createSepaDebitParams","fun createSepaDebitParams(name: String, iban: String, addressLine1: String?, city: String, postalCode: String, country: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createSepaDebitParams"]},{"name":"fun createSepaDebitParams(name: String, iban: String, email: String?, addressLine1: String?, city: String?, postalCode: String?, country: String?): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSepaDebitParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sepa-debit-params.html","searchKeys":["createSepaDebitParams","fun createSepaDebitParams(name: String, iban: String, email: String?, addressLine1: String?, city: String?, postalCode: String?, country: String?): SourceParams","com.stripe.android.model.SourceParams.Companion.createSepaDebitParams"]},{"name":"fun createSetupIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createSetupIntentArgs","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/create-setup-intent-args.html","searchKeys":["createSetupIntentArgs","fun createSetupIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createSetupIntentArgs"]},{"name":"fun createSofortParams(amount: Long, returnUrl: String, country: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSofortParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sofort-params.html","searchKeys":["createSofortParams","fun createSofortParams(amount: Long, returnUrl: String, country: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createSofortParams"]},{"name":"fun createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createSource","location":"payments-core/com.stripe.android/-stripe/create-source.html","searchKeys":["createSource","fun createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createSource"]},{"name":"fun createSourceFromTokenParams(tokenId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSourceFromTokenParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-source-from-token-params.html","searchKeys":["createSourceFromTokenParams","fun createSourceFromTokenParams(tokenId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createSourceFromTokenParams"]},{"name":"fun createSourceSynchronous(params: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source?","description":"com.stripe.android.Stripe.createSourceSynchronous","location":"payments-core/com.stripe.android/-stripe/create-source-synchronous.html","searchKeys":["createSourceSynchronous","fun createSourceSynchronous(params: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source?","com.stripe.android.Stripe.createSourceSynchronous"]},{"name":"fun createThreeDSecureParams(amount: Long, currency: String, returnUrl: String, cardId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createThreeDSecureParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-three-d-secure-params.html","searchKeys":["createThreeDSecureParams","fun createThreeDSecureParams(amount: Long, currency: String, returnUrl: String, cardId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createThreeDSecureParams"]},{"name":"fun createVisaCheckoutParams(callId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createVisaCheckoutParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-visa-checkout-params.html","searchKeys":["createVisaCheckoutParams","fun createVisaCheckoutParams(callId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createVisaCheckoutParams"]},{"name":"fun createWeChatPay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createWeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-we-chat-pay.html","searchKeys":["createWeChatPay","fun createWeChatPay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createWeChatPay"]},{"name":"fun createWeChatPayParams(amount: Long, currency: String, weChatAppId: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createWeChatPayParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-we-chat-pay-params.html","searchKeys":["createWeChatPayParams","fun createWeChatPayParams(amount: Long, currency: String, weChatAppId: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createWeChatPayParams"]},{"name":"fun createWithAppTheme(activity: Activity): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion.createWithAppTheme","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-companion/create-with-app-theme.html","searchKeys":["createWithAppTheme","fun createWithAppTheme(activity: Activity): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion.createWithAppTheme"]},{"name":"fun createWithPaymentMethodCreateParams(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, savePaymentMethod: Boolean? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-payment-method-create-params.html","searchKeys":["createWithPaymentMethodCreateParams","fun createWithPaymentMethodCreateParams(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, savePaymentMethod: Boolean? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodCreateParams"]},{"name":"fun createWithPaymentMethodId(paymentMethodId: String, clientSecret: String, savePaymentMethod: Boolean? = null, paymentMethodOptions: PaymentMethodOptionsParams? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-payment-method-id.html","searchKeys":["createWithPaymentMethodId","fun createWithPaymentMethodId(paymentMethodId: String, clientSecret: String, savePaymentMethod: Boolean? = null, paymentMethodOptions: PaymentMethodOptionsParams? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodId"]},{"name":"fun createWithSourceId(sourceId: String, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-source-id.html","searchKeys":["createWithSourceId","fun createWithSourceId(sourceId: String, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceId"]},{"name":"fun createWithSourceParams(sourceParams: SourceParams, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-source-params.html","searchKeys":["createWithSourceParams","fun createWithSourceParams(sourceParams: SourceParams, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceParams"]},{"name":"fun createWithoutPaymentMethod(clientSecret: String): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.createWithoutPaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create-without-payment-method.html","searchKeys":["createWithoutPaymentMethod","fun createWithoutPaymentMethod(clientSecret: String): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.createWithoutPaymentMethod"]},{"name":"fun deleteCustomerSource(sourceId: String, listener: CustomerSession.SourceRetrievalListener)","description":"com.stripe.android.CustomerSession.deleteCustomerSource","location":"payments-core/com.stripe.android/-customer-session/delete-customer-source.html","searchKeys":["deleteCustomerSource","fun deleteCustomerSource(sourceId: String, listener: CustomerSession.SourceRetrievalListener)","com.stripe.android.CustomerSession.deleteCustomerSource"]},{"name":"fun detachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","description":"com.stripe.android.CustomerSession.detachPaymentMethod","location":"payments-core/com.stripe.android/-customer-session/detach-payment-method.html","searchKeys":["detachPaymentMethod","fun detachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","com.stripe.android.CustomerSession.detachPaymentMethod"]},{"name":"fun endCustomerSession()","description":"com.stripe.android.CustomerSession.Companion.endCustomerSession","location":"payments-core/com.stripe.android/-customer-session/-companion/end-customer-session.html","searchKeys":["endCustomerSession","fun endCustomerSession()","com.stripe.android.CustomerSession.Companion.endCustomerSession"]},{"name":"fun formatPriceStringUsingFree(amount: Long, currency: Currency, free: String): String","description":"com.stripe.android.view.PaymentUtils.formatPriceStringUsingFree","location":"payments-core/com.stripe.android.view/-payment-utils/format-price-string-using-free.html","searchKeys":["formatPriceStringUsingFree","fun formatPriceStringUsingFree(amount: Long, currency: Currency, free: String): String","com.stripe.android.view.PaymentUtils.formatPriceStringUsingFree"]},{"name":"fun fromCode(code: String?): CardBrand","description":"com.stripe.android.model.CardBrand.Companion.fromCode","location":"payments-core/com.stripe.android.model/-card-brand/-companion/from-code.html","searchKeys":["fromCode","fun fromCode(code: String?): CardBrand","com.stripe.android.model.CardBrand.Companion.fromCode"]},{"name":"fun fromIntent(intent: Intent?): AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion.fromIntent","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion.fromIntent"]},{"name":"fun fromIntent(intent: Intent?): PaymentFlowResult.Unvalidated","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.fromIntent","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): PaymentFlowResult.Unvalidated","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.fromIntent"]},{"name":"fun fromIntent(intent: Intent?): PaymentMethodsActivityStarter.Result?","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion.fromIntent","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): PaymentMethodsActivityStarter.Result?","com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion.fromIntent"]},{"name":"fun fromJson(jsonObject: JSONObject?): Address?","description":"com.stripe.android.model.Address.Companion.fromJson","location":"payments-core/com.stripe.android.model/-address/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Address?","com.stripe.android.model.Address.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): PaymentIntent?","description":"com.stripe.android.model.PaymentIntent.Companion.fromJson","location":"payments-core/com.stripe.android.model/-payment-intent/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): PaymentIntent?","com.stripe.android.model.PaymentIntent.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): SetupIntent?","description":"com.stripe.android.model.SetupIntent.Companion.fromJson","location":"payments-core/com.stripe.android.model/-setup-intent/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): SetupIntent?","com.stripe.android.model.SetupIntent.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): Source?","description":"com.stripe.android.model.Source.Companion.fromJson","location":"payments-core/com.stripe.android.model/-source/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Source?","com.stripe.android.model.Source.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): Token?","description":"com.stripe.android.model.Token.Companion.fromJson","location":"payments-core/com.stripe.android.model/-token/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Token?","com.stripe.android.model.Token.Companion.fromJson"]},{"name":"fun fromJson(paymentDataJson: JSONObject): GooglePayResult","description":"com.stripe.android.model.GooglePayResult.Companion.fromJson","location":"payments-core/com.stripe.android.model/-google-pay-result/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(paymentDataJson: JSONObject): GooglePayResult","com.stripe.android.model.GooglePayResult.Companion.fromJson"]},{"name":"fun fromJson(paymentMethod: JSONObject?): PaymentMethod?","description":"com.stripe.android.model.PaymentMethod.Companion.fromJson","location":"payments-core/com.stripe.android.model/-payment-method/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(paymentMethod: JSONObject?): PaymentMethod?","com.stripe.android.model.PaymentMethod.Companion.fromJson"]},{"name":"fun fun interface AfterTextChangedListener","description":"com.stripe.android.view.StripeEditText.AfterTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-after-text-changed-listener/index.html","searchKeys":["AfterTextChangedListener","fun fun interface AfterTextChangedListener","com.stripe.android.view.StripeEditText.AfterTextChangedListener"]},{"name":"fun fun interface AlipayAuthenticator","description":"com.stripe.android.AlipayAuthenticator","location":"payments-core/com.stripe.android/-alipay-authenticator/index.html","searchKeys":["AlipayAuthenticator","fun fun interface AlipayAuthenticator","com.stripe.android.AlipayAuthenticator"]},{"name":"fun fun interface AuthActivityStarter","description":"com.stripe.android.view.AuthActivityStarter","location":"payments-core/com.stripe.android.view/-auth-activity-starter/index.html","searchKeys":["AuthActivityStarter","fun fun interface AuthActivityStarter","com.stripe.android.view.AuthActivityStarter"]},{"name":"fun fun interface CardValidCallback","description":"com.stripe.android.view.CardValidCallback","location":"payments-core/com.stripe.android.view/-card-valid-callback/index.html","searchKeys":["CardValidCallback","fun fun interface CardValidCallback","com.stripe.android.view.CardValidCallback"]},{"name":"fun fun interface ConfigCallback","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-config-callback/index.html","searchKeys":["ConfigCallback","fun fun interface ConfigCallback","com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback"]},{"name":"fun fun interface DeleteEmptyListener","description":"com.stripe.android.view.StripeEditText.DeleteEmptyListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-delete-empty-listener/index.html","searchKeys":["DeleteEmptyListener","fun fun interface DeleteEmptyListener","com.stripe.android.view.StripeEditText.DeleteEmptyListener"]},{"name":"fun fun interface EphemeralKeyProvider","description":"com.stripe.android.EphemeralKeyProvider","location":"payments-core/com.stripe.android/-ephemeral-key-provider/index.html","searchKeys":["EphemeralKeyProvider","fun fun interface EphemeralKeyProvider","com.stripe.android.EphemeralKeyProvider"]},{"name":"fun fun interface ErrorMessageListener","description":"com.stripe.android.view.StripeEditText.ErrorMessageListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-error-message-listener/index.html","searchKeys":["ErrorMessageListener","fun fun interface ErrorMessageListener","com.stripe.android.view.StripeEditText.ErrorMessageListener"]},{"name":"fun fun interface GooglePayRepository","description":"com.stripe.android.googlepaylauncher.GooglePayRepository","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/index.html","searchKeys":["GooglePayRepository","fun fun interface GooglePayRepository","com.stripe.android.googlepaylauncher.GooglePayRepository"]},{"name":"fun fun interface PaymentOptionCallback","description":"com.stripe.android.paymentsheet.PaymentOptionCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/index.html","searchKeys":["PaymentOptionCallback","fun fun interface PaymentOptionCallback","com.stripe.android.paymentsheet.PaymentOptionCallback"]},{"name":"fun fun interface PaymentSheetResultCallback","description":"com.stripe.android.paymentsheet.PaymentSheetResultCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/index.html","searchKeys":["PaymentSheetResultCallback","fun fun interface PaymentSheetResultCallback","com.stripe.android.paymentsheet.PaymentSheetResultCallback"]},{"name":"fun fun interface ReadyCallback","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-ready-callback/index.html","searchKeys":["ReadyCallback","fun fun interface ReadyCallback","com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback"]},{"name":"fun fun interface ReadyCallback","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-ready-callback/index.html","searchKeys":["ReadyCallback","fun fun interface ReadyCallback","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback"]},{"name":"fun fun interface ResultCallback","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result-callback/index.html","searchKeys":["ResultCallback","fun fun interface ResultCallback","com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback"]},{"name":"fun fun interface ResultCallback","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result-callback/index.html","searchKeys":["ResultCallback","fun fun interface ResultCallback","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback"]},{"name":"fun get(): PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig.Companion.get","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/get.html","searchKeys":["get","fun get(): PaymentAuthConfig","com.stripe.android.PaymentAuthConfig.Companion.get"]},{"name":"fun getErrorMessageTranslator(): ErrorMessageTranslator","description":"com.stripe.android.view.i18n.TranslatorManager.getErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/get-error-message-translator.html","searchKeys":["getErrorMessageTranslator","fun getErrorMessageTranslator(): ErrorMessageTranslator","com.stripe.android.view.i18n.TranslatorManager.getErrorMessageTranslator"]},{"name":"fun getInstance(): CustomerSession","description":"com.stripe.android.CustomerSession.Companion.getInstance","location":"payments-core/com.stripe.android/-customer-session/-companion/get-instance.html","searchKeys":["getInstance","fun getInstance(): CustomerSession","com.stripe.android.CustomerSession.Companion.getInstance"]},{"name":"fun getInstance(context: Context): PaymentConfiguration","description":"com.stripe.android.PaymentConfiguration.Companion.getInstance","location":"payments-core/com.stripe.android/-payment-configuration/-companion/get-instance.html","searchKeys":["getInstance","fun getInstance(context: Context): PaymentConfiguration","com.stripe.android.PaymentConfiguration.Companion.getInstance"]},{"name":"fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, limit: Int?, endingBefore: String? = null, startingAfter: String? = null, listener: CustomerSession.PaymentMethodsRetrievalListener)","description":"com.stripe.android.CustomerSession.getPaymentMethods","location":"payments-core/com.stripe.android/-customer-session/get-payment-methods.html","searchKeys":["getPaymentMethods","fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, limit: Int?, endingBefore: String? = null, startingAfter: String? = null, listener: CustomerSession.PaymentMethodsRetrievalListener)","com.stripe.android.CustomerSession.getPaymentMethods"]},{"name":"fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, listener: CustomerSession.PaymentMethodsRetrievalListener)","description":"com.stripe.android.CustomerSession.getPaymentMethods","location":"payments-core/com.stripe.android/-customer-session/get-payment-methods.html","searchKeys":["getPaymentMethods","fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, listener: CustomerSession.PaymentMethodsRetrievalListener)","com.stripe.android.CustomerSession.getPaymentMethods"]},{"name":"fun getPriceString(price: Int, currency: Currency): String","description":"com.stripe.android.PayWithGoogleUtils.getPriceString","location":"payments-core/com.stripe.android/-pay-with-google-utils/get-price-string.html","searchKeys":["getPriceString","fun getPriceString(price: Int, currency: Currency): String","com.stripe.android.PayWithGoogleUtils.getPriceString"]},{"name":"fun getSourceById(sourceId: String): CustomerPaymentSource?","description":"com.stripe.android.model.Customer.getSourceById","location":"payments-core/com.stripe.android.model/-customer/get-source-by-id.html","searchKeys":["getSourceById","fun getSourceById(sourceId: String): CustomerPaymentSource?","com.stripe.android.model.Customer.getSourceById"]},{"name":"fun handleNextActionForPayment(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForPayment","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-payment.html","searchKeys":["handleNextActionForPayment","fun handleNextActionForPayment(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForPayment"]},{"name":"fun handleNextActionForPayment(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForPayment","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-payment.html","searchKeys":["handleNextActionForPayment","fun handleNextActionForPayment(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForPayment"]},{"name":"fun handleNextActionForSetupIntent(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForSetupIntent","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-setup-intent.html","searchKeys":["handleNextActionForSetupIntent","fun handleNextActionForSetupIntent(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForSetupIntent"]},{"name":"fun handleNextActionForSetupIntent(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForSetupIntent","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-setup-intent.html","searchKeys":["handleNextActionForSetupIntent","fun handleNextActionForSetupIntent(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForSetupIntent"]},{"name":"fun handlePaymentData(requestCode: Int, resultCode: Int, data: Intent?): Boolean","description":"com.stripe.android.PaymentSession.handlePaymentData","location":"payments-core/com.stripe.android/-payment-session/handle-payment-data.html","searchKeys":["handlePaymentData","fun handlePaymentData(requestCode: Int, resultCode: Int, data: Intent?): Boolean","com.stripe.android.PaymentSession.handlePaymentData"]},{"name":"fun init(config: PaymentAuthConfig)","description":"com.stripe.android.PaymentAuthConfig.Companion.init","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/init.html","searchKeys":["init","fun init(config: PaymentAuthConfig)","com.stripe.android.PaymentAuthConfig.Companion.init"]},{"name":"fun init(context: Context, publishableKey: String, stripeAccountId: String? = null)","description":"com.stripe.android.PaymentConfiguration.Companion.init","location":"payments-core/com.stripe.android/-payment-configuration/-companion/init.html","searchKeys":["init","fun init(context: Context, publishableKey: String, stripeAccountId: String? = null)","com.stripe.android.PaymentConfiguration.Companion.init"]},{"name":"fun init(listener: PaymentSession.PaymentSessionListener)","description":"com.stripe.android.PaymentSession.init","location":"payments-core/com.stripe.android/-payment-session/init.html","searchKeys":["init","fun init(listener: PaymentSession.PaymentSessionListener)","com.stripe.android.PaymentSession.init"]},{"name":"fun initCustomerSession(context: Context, ephemeralKeyProvider: EphemeralKeyProvider, shouldPrefetchEphemeralKey: Boolean = true)","description":"com.stripe.android.CustomerSession.Companion.initCustomerSession","location":"payments-core/com.stripe.android/-customer-session/-companion/init-customer-session.html","searchKeys":["initCustomerSession","fun initCustomerSession(context: Context, ephemeralKeyProvider: EphemeralKeyProvider, shouldPrefetchEphemeralKey: Boolean = true)","com.stripe.android.CustomerSession.Companion.initCustomerSession"]},{"name":"fun isAuthenticateSourceResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isAuthenticateSourceResult","location":"payments-core/com.stripe.android/-stripe/is-authenticate-source-result.html","searchKeys":["isAuthenticateSourceResult","fun isAuthenticateSourceResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isAuthenticateSourceResult"]},{"name":"fun isMaxCvc(cvcText: String?): Boolean","description":"com.stripe.android.model.CardBrand.isMaxCvc","location":"payments-core/com.stripe.android.model/-card-brand/is-max-cvc.html","searchKeys":["isMaxCvc","fun isMaxCvc(cvcText: String?): Boolean","com.stripe.android.model.CardBrand.isMaxCvc"]},{"name":"fun isPaymentResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isPaymentResult","location":"payments-core/com.stripe.android/-stripe/is-payment-result.html","searchKeys":["isPaymentResult","fun isPaymentResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isPaymentResult"]},{"name":"fun isSetupResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isSetupResult","location":"payments-core/com.stripe.android/-stripe/is-setup-result.html","searchKeys":["isSetupResult","fun isSetupResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isSetupResult"]},{"name":"fun isValidCardNumberLength(cardNumber: String?): Boolean","description":"com.stripe.android.model.CardBrand.isValidCardNumberLength","location":"payments-core/com.stripe.android.model/-card-brand/is-valid-card-number-length.html","searchKeys":["isValidCardNumberLength","fun isValidCardNumberLength(cardNumber: String?): Boolean","com.stripe.android.model.CardBrand.isValidCardNumberLength"]},{"name":"fun isValidCvc(cvc: String): Boolean","description":"com.stripe.android.model.CardBrand.isValidCvc","location":"payments-core/com.stripe.android.model/-card-brand/is-valid-cvc.html","searchKeys":["isValidCvc","fun isValidCvc(cvc: String): Boolean","com.stripe.android.model.CardBrand.isValidCvc"]},{"name":"fun onAuthenticateSourceResult(data: Intent, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.onAuthenticateSourceResult","location":"payments-core/com.stripe.android/-stripe/on-authenticate-source-result.html","searchKeys":["onAuthenticateSourceResult","fun onAuthenticateSourceResult(data: Intent, callback: ApiResultCallback)","com.stripe.android.Stripe.onAuthenticateSourceResult"]},{"name":"fun onCompleted()","description":"com.stripe.android.PaymentSession.onCompleted","location":"payments-core/com.stripe.android/-payment-session/on-completed.html","searchKeys":["onCompleted","fun onCompleted()","com.stripe.android.PaymentSession.onCompleted"]},{"name":"fun onPaymentResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","description":"com.stripe.android.Stripe.onPaymentResult","location":"payments-core/com.stripe.android/-stripe/on-payment-result.html","searchKeys":["onPaymentResult","fun onPaymentResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","com.stripe.android.Stripe.onPaymentResult"]},{"name":"fun onSetupResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","description":"com.stripe.android.Stripe.onSetupResult","location":"payments-core/com.stripe.android/-stripe/on-setup-result.html","searchKeys":["onSetupResult","fun onSetupResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","com.stripe.android.Stripe.onSetupResult"]},{"name":"fun populateShippingInfo(shippingInformation: ShippingInformation?)","description":"com.stripe.android.view.ShippingInfoWidget.populateShippingInfo","location":"payments-core/com.stripe.android.view/-shipping-info-widget/populate-shipping-info.html","searchKeys":["populateShippingInfo","fun populateShippingInfo(shippingInformation: ShippingInformation?)","com.stripe.android.view.ShippingInfoWidget.populateShippingInfo"]},{"name":"fun present(currencyCode: String)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html","searchKeys":["present","fun present(currencyCode: String)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present"]},{"name":"fun present(currencyCode: String, amount: Int)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html","searchKeys":["present","fun present(currencyCode: String, amount: Int)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present"]},{"name":"fun presentForPaymentIntent(clientSecret: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForPaymentIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/present-for-payment-intent.html","searchKeys":["presentForPaymentIntent","fun presentForPaymentIntent(clientSecret: String)","com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForPaymentIntent"]},{"name":"fun presentForSetupIntent(clientSecret: String, currencyCode: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForSetupIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/present-for-setup-intent.html","searchKeys":["presentForSetupIntent","fun presentForSetupIntent(clientSecret: String, currencyCode: String)","com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForSetupIntent"]},{"name":"fun presentPaymentMethodSelection(selectedPaymentMethodId: String? = null)","description":"com.stripe.android.PaymentSession.presentPaymentMethodSelection","location":"payments-core/com.stripe.android/-payment-session/present-payment-method-selection.html","searchKeys":["presentPaymentMethodSelection","fun presentPaymentMethodSelection(selectedPaymentMethodId: String? = null)","com.stripe.android.PaymentSession.presentPaymentMethodSelection"]},{"name":"fun presentShippingFlow()","description":"com.stripe.android.PaymentSession.presentShippingFlow","location":"payments-core/com.stripe.android/-payment-session/present-shipping-flow.html","searchKeys":["presentShippingFlow","fun presentShippingFlow()","com.stripe.android.PaymentSession.presentShippingFlow"]},{"name":"fun presentWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.presentWithPaymentIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/present-with-payment-intent.html","searchKeys":["presentWithPaymentIntent","fun presentWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","com.stripe.android.paymentsheet.PaymentSheet.presentWithPaymentIntent"]},{"name":"fun presentWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.presentWithSetupIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/present-with-setup-intent.html","searchKeys":["presentWithSetupIntent","fun presentWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","com.stripe.android.paymentsheet.PaymentSheet.presentWithSetupIntent"]},{"name":"fun retrieveCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.retrieveCurrentCustomer","location":"payments-core/com.stripe.android/-customer-session/retrieve-current-customer.html","searchKeys":["retrieveCurrentCustomer","fun retrieveCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.retrieveCurrentCustomer"]},{"name":"fun retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrievePaymentIntent","location":"payments-core/com.stripe.android/-stripe/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent","fun retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrievePaymentIntent"]},{"name":"fun retrievePaymentIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent?","description":"com.stripe.android.Stripe.retrievePaymentIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-payment-intent-synchronous.html","searchKeys":["retrievePaymentIntentSynchronous","fun retrievePaymentIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent?","com.stripe.android.Stripe.retrievePaymentIntentSynchronous"]},{"name":"fun retrievePin(cardId: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinRetrievalListener)","description":"com.stripe.android.IssuingCardPinService.retrievePin","location":"payments-core/com.stripe.android/-issuing-card-pin-service/retrieve-pin.html","searchKeys":["retrievePin","fun retrievePin(cardId: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinRetrievalListener)","com.stripe.android.IssuingCardPinService.retrievePin"]},{"name":"fun retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrieveSetupIntent","location":"payments-core/com.stripe.android/-stripe/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent","fun retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrieveSetupIntent"]},{"name":"fun retrieveSetupIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent?","description":"com.stripe.android.Stripe.retrieveSetupIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-setup-intent-synchronous.html","searchKeys":["retrieveSetupIntentSynchronous","fun retrieveSetupIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent?","com.stripe.android.Stripe.retrieveSetupIntentSynchronous"]},{"name":"fun retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrieveSource","location":"payments-core/com.stripe.android/-stripe/retrieve-source.html","searchKeys":["retrieveSource","fun retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrieveSource"]},{"name":"fun retrieveSourceSynchronous(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source?","description":"com.stripe.android.Stripe.retrieveSourceSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-source-synchronous.html","searchKeys":["retrieveSourceSynchronous","fun retrieveSourceSynchronous(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source?","com.stripe.android.Stripe.retrieveSourceSynchronous"]},{"name":"fun set3ds2Config(stripe3ds2Config: PaymentAuthConfig.Stripe3ds2Config): PaymentAuthConfig.Builder","description":"com.stripe.android.PaymentAuthConfig.Builder.set3ds2Config","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/set3ds2-config.html","searchKeys":["set3ds2Config","fun set3ds2Config(stripe3ds2Config: PaymentAuthConfig.Stripe3ds2Config): PaymentAuthConfig.Builder","com.stripe.android.PaymentAuthConfig.Builder.set3ds2Config"]},{"name":"fun setAccentColor(hexColor: String): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setAccentColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-accent-color.html","searchKeys":["setAccentColor","fun setAccentColor(hexColor: String): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setAccentColor"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddress","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddress","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setAddress","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddress","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddress"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKana"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKana"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddressKana"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKanji"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKanji"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddressKanji"]},{"name":"fun setAfterTextChangedListener(afterTextChangedListener: StripeEditText.AfterTextChangedListener?)","description":"com.stripe.android.view.StripeEditText.setAfterTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-after-text-changed-listener.html","searchKeys":["setAfterTextChangedListener","fun setAfterTextChangedListener(afterTextChangedListener: StripeEditText.AfterTextChangedListener?)","com.stripe.android.view.StripeEditText.setAfterTextChangedListener"]},{"name":"fun setAllowedCountryCodes(allowedCountryCodes: Set)","description":"com.stripe.android.view.ShippingInfoWidget.setAllowedCountryCodes","location":"payments-core/com.stripe.android.view/-shipping-info-widget/set-allowed-country-codes.html","searchKeys":["setAllowedCountryCodes","fun setAllowedCountryCodes(allowedCountryCodes: Set)","com.stripe.android.view.ShippingInfoWidget.setAllowedCountryCodes"]},{"name":"fun setAllowedShippingCountryCodes(allowedShippingCountryCodes: Set): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setAllowedShippingCountryCodes","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-allowed-shipping-country-codes.html","searchKeys":["setAllowedShippingCountryCodes","fun setAllowedShippingCountryCodes(allowedShippingCountryCodes: Set): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setAllowedShippingCountryCodes"]},{"name":"fun setApiParameterMap(apiParameterMap: Map?): SourceParams","description":"com.stripe.android.model.SourceParams.setApiParameterMap","location":"payments-core/com.stripe.android.model/-source-params/set-api-parameter-map.html","searchKeys":["setApiParameterMap","fun setApiParameterMap(apiParameterMap: Map?): SourceParams","com.stripe.android.model.SourceParams.setApiParameterMap"]},{"name":"fun setAuBecsDebit(auBecsDebit: PaymentMethod.AuBecsDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setAuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-au-becs-debit.html","searchKeys":["setAuBecsDebit","fun setAuBecsDebit(auBecsDebit: PaymentMethod.AuBecsDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setAuBecsDebit"]},{"name":"fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setBackgroundColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-background-color.html","searchKeys":["setBackgroundColor","fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setBackgroundColor"]},{"name":"fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setBackgroundColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-background-color.html","searchKeys":["setBackgroundColor","fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setBackgroundColor"]},{"name":"fun setBacsDebit(bacsDebit: PaymentMethod.BacsDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setBacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-bacs-debit.html","searchKeys":["setBacsDebit","fun setBacsDebit(bacsDebit: PaymentMethod.BacsDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setBacsDebit"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setBillingAddressFields"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setBillingAddressFields"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setBillingAddressFields"]},{"name":"fun setBillingDetails(billingDetails: PaymentMethod.BillingDetails?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setBillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-billing-details.html","searchKeys":["setBillingDetails","fun setBillingDetails(billingDetails: PaymentMethod.BillingDetails?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setBillingDetails"]},{"name":"fun setBorderColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-border-color.html","searchKeys":["setBorderColor","fun setBorderColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderColor"]},{"name":"fun setBorderWidth(borderWidth: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderWidth","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-border-width.html","searchKeys":["setBorderWidth","fun setBorderWidth(borderWidth: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderWidth"]},{"name":"fun setButtonCustomization(buttonCustomization: PaymentAuthConfig.Stripe3ds2ButtonCustomization, buttonType: PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setButtonCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-button-customization.html","searchKeys":["setButtonCustomization","fun setButtonCustomization(buttonCustomization: PaymentAuthConfig.Stripe3ds2ButtonCustomization, buttonType: PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setButtonCustomization"]},{"name":"fun setButtonText(buttonText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setButtonText","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-button-text.html","searchKeys":["setButtonText","fun setButtonText(buttonText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setButtonText"]},{"name":"fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setCanDeletePaymentMethods","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-can-delete-payment-methods.html","searchKeys":["setCanDeletePaymentMethods","fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setCanDeletePaymentMethods"]},{"name":"fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setCanDeletePaymentMethods","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-can-delete-payment-methods.html","searchKeys":["setCanDeletePaymentMethods","fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setCanDeletePaymentMethods"]},{"name":"fun setCard(card: PaymentMethod.Card?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCard","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-card.html","searchKeys":["setCard","fun setCard(card: PaymentMethod.Card?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCard"]},{"name":"fun setCardPresent(cardPresent: PaymentMethod.CardPresent?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-card-present.html","searchKeys":["setCardPresent","fun setCardPresent(cardPresent: PaymentMethod.CardPresent?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCardPresent"]},{"name":"fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardFormView.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-form-view/set-card-valid-callback.html","searchKeys":["setCardValidCallback","fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardFormView.setCardValidCallback"]},{"name":"fun setCartTotal(cartTotal: Long)","description":"com.stripe.android.PaymentSession.setCartTotal","location":"payments-core/com.stripe.android/-payment-session/set-cart-total.html","searchKeys":["setCartTotal","fun setCartTotal(cartTotal: Long)","com.stripe.android.PaymentSession.setCartTotal"]},{"name":"fun setCity(city: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setCity","location":"payments-core/com.stripe.android.model/-address/-builder/set-city.html","searchKeys":["setCity","fun setCity(city: String?): Address.Builder","com.stripe.android.model.Address.Builder.setCity"]},{"name":"fun setCity(city: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setCity","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-city.html","searchKeys":["setCity","fun setCity(city: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setCity"]},{"name":"fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setCornerRadius","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-corner-radius.html","searchKeys":["setCornerRadius","fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setCornerRadius"]},{"name":"fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setCornerRadius","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-corner-radius.html","searchKeys":["setCornerRadius","fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setCornerRadius"]},{"name":"fun setCountry(country: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setCountry","location":"payments-core/com.stripe.android.model/-address/-builder/set-country.html","searchKeys":["setCountry","fun setCountry(country: String?): Address.Builder","com.stripe.android.model.Address.Builder.setCountry"]},{"name":"fun setCountry(country: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setCountry","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-country.html","searchKeys":["setCountry","fun setCountry(country: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setCountry"]},{"name":"fun setCreated(created: Long?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCreated","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-created.html","searchKeys":["setCreated","fun setCreated(created: Long?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCreated"]},{"name":"fun setCustomerDefaultSource(sourceId: String, sourceType: String, listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.setCustomerDefaultSource","location":"payments-core/com.stripe.android/-customer-session/set-customer-default-source.html","searchKeys":["setCustomerDefaultSource","fun setCustomerDefaultSource(sourceId: String, sourceType: String, listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.setCustomerDefaultSource"]},{"name":"fun setCustomerId(customerId: String?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCustomerId","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-customer-id.html","searchKeys":["setCustomerId","fun setCustomerId(customerId: String?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCustomerId"]},{"name":"fun setCustomerShippingInformation(shippingInformation: ShippingInformation, listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.setCustomerShippingInformation","location":"payments-core/com.stripe.android/-customer-session/set-customer-shipping-information.html","searchKeys":["setCustomerShippingInformation","fun setCustomerShippingInformation(shippingInformation: ShippingInformation, listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.setCustomerShippingInformation"]},{"name":"fun setCvc(cvc: String?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setCvc","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-cvc.html","searchKeys":["setCvc","fun setCvc(cvc: String?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setCvc"]},{"name":"fun setCvcLabel(cvcLabel: String?)","description":"com.stripe.android.view.CardInputWidget.setCvcLabel","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-label.html","searchKeys":["setCvcLabel","fun setCvcLabel(cvcLabel: String?)","com.stripe.android.view.CardInputWidget.setCvcLabel"]},{"name":"fun setCvcLabel(cvcLabel: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcLabel","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-label.html","searchKeys":["setCvcLabel","fun setCvcLabel(cvcLabel: String?)","com.stripe.android.view.CardMultilineWidget.setCvcLabel"]},{"name":"fun setDateOfBirth(dateOfBirth: DateOfBirth?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setDateOfBirth","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-date-of-birth.html","searchKeys":["setDateOfBirth","fun setDateOfBirth(dateOfBirth: DateOfBirth?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setDateOfBirth"]},{"name":"fun setDateOfBirth(dateOfBirth: DateOfBirth?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setDateOfBirth","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-date-of-birth.html","searchKeys":["setDateOfBirth","fun setDateOfBirth(dateOfBirth: DateOfBirth?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setDateOfBirth"]},{"name":"fun setDeleteEmptyListener(deleteEmptyListener: StripeEditText.DeleteEmptyListener?)","description":"com.stripe.android.view.StripeEditText.setDeleteEmptyListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-delete-empty-listener.html","searchKeys":["setDeleteEmptyListener","fun setDeleteEmptyListener(deleteEmptyListener: StripeEditText.DeleteEmptyListener?)","com.stripe.android.view.StripeEditText.setDeleteEmptyListener"]},{"name":"fun setDirector(director: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setDirector","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-director.html","searchKeys":["setDirector","fun setDirector(director: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setDirector"]},{"name":"fun setDirectorsProvided(directorsProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setDirectorsProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-directors-provided.html","searchKeys":["setDirectorsProvided","fun setDirectorsProvided(directorsProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setDirectorsProvided"]},{"name":"fun setEmail(email: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setEmail","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setEmail"]},{"name":"fun setEmail(email: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setEmail","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setEmail"]},{"name":"fun setEmail(email: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setEmail","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setEmail"]},{"name":"fun setErrorColor(errorColor: Int)","description":"com.stripe.android.view.StripeEditText.setErrorColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-color.html","searchKeys":["setErrorColor","fun setErrorColor(errorColor: Int)","com.stripe.android.view.StripeEditText.setErrorColor"]},{"name":"fun setErrorMessage(errorMessage: String?)","description":"com.stripe.android.view.StripeEditText.setErrorMessage","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-message.html","searchKeys":["setErrorMessage","fun setErrorMessage(errorMessage: String?)","com.stripe.android.view.StripeEditText.setErrorMessage"]},{"name":"fun setErrorMessageListener(errorMessageListener: StripeEditText.ErrorMessageListener?)","description":"com.stripe.android.view.StripeEditText.setErrorMessageListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-message-listener.html","searchKeys":["setErrorMessageListener","fun setErrorMessageListener(errorMessageListener: StripeEditText.ErrorMessageListener?)","com.stripe.android.view.StripeEditText.setErrorMessageListener"]},{"name":"fun setErrorMessageTranslator(errorMessageTranslator: ErrorMessageTranslator?)","description":"com.stripe.android.view.i18n.TranslatorManager.setErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/set-error-message-translator.html","searchKeys":["setErrorMessageTranslator","fun setErrorMessageTranslator(errorMessageTranslator: ErrorMessageTranslator?)","com.stripe.android.view.i18n.TranslatorManager.setErrorMessageTranslator"]},{"name":"fun setExecutive(executive: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setExecutive","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-executive.html","searchKeys":["setExecutive","fun setExecutive(executive: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setExecutive"]},{"name":"fun setExecutivesProvided(executivesProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setExecutivesProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-executives-provided.html","searchKeys":["setExecutivesProvided","fun setExecutivesProvided(executivesProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setExecutivesProvided"]},{"name":"fun setExpiryMonth(expiryMonth: Int?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryMonth","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-expiry-month.html","searchKeys":["setExpiryMonth","fun setExpiryMonth(expiryMonth: Int?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryMonth"]},{"name":"fun setExpiryYear(expiryYear: Int?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryYear","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-expiry-year.html","searchKeys":["setExpiryYear","fun setExpiryYear(expiryYear: Int?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryYear"]},{"name":"fun setFirstName(firstName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name.html","searchKeys":["setFirstName","fun setFirstName(firstName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstName"]},{"name":"fun setFirstName(firstName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name.html","searchKeys":["setFirstName","fun setFirstName(firstName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstName"]},{"name":"fun setFirstNameKana(firstNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name-kana.html","searchKeys":["setFirstNameKana","fun setFirstNameKana(firstNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKana"]},{"name":"fun setFirstNameKana(firstNameKana: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name-kana.html","searchKeys":["setFirstNameKana","fun setFirstNameKana(firstNameKana: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKana"]},{"name":"fun setFirstNameKanji(firstNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name-kanji.html","searchKeys":["setFirstNameKanji","fun setFirstNameKanji(firstNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKanji"]},{"name":"fun setFirstNameKanji(firstNameKanji: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name-kanji.html","searchKeys":["setFirstNameKanji","fun setFirstNameKanji(firstNameKanji: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKanji"]},{"name":"fun setFpx(fpx: PaymentMethod.Fpx?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setFpx","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-fpx.html","searchKeys":["setFpx","fun setFpx(fpx: PaymentMethod.Fpx?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setFpx"]},{"name":"fun setGender(gender: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setGender","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-gender.html","searchKeys":["setGender","fun setGender(gender: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setGender"]},{"name":"fun setGender(gender: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setGender","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-gender.html","searchKeys":["setGender","fun setGender(gender: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setGender"]},{"name":"fun setHeaderText(headerText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setHeaderText","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-header-text.html","searchKeys":["setHeaderText","fun setHeaderText(headerText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setHeaderText"]},{"name":"fun setHeadingTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-color.html","searchKeys":["setHeadingTextColor","fun setHeadingTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextColor"]},{"name":"fun setHeadingTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-font-name.html","searchKeys":["setHeadingTextFontName","fun setHeadingTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontName"]},{"name":"fun setHeadingTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-font-size.html","searchKeys":["setHeadingTextFontSize","fun setHeadingTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontSize"]},{"name":"fun setHiddenShippingInfoFields(vararg hiddenShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setHiddenShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-hidden-shipping-info-fields.html","searchKeys":["setHiddenShippingInfoFields","fun setHiddenShippingInfoFields(vararg hiddenShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setHiddenShippingInfoFields"]},{"name":"fun setId(id: String?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setId","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-id.html","searchKeys":["setId","fun setId(id: String?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setId"]},{"name":"fun setIdNumber(idNumber: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setIdNumber","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-id-number.html","searchKeys":["setIdNumber","fun setIdNumber(idNumber: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setIdNumber"]},{"name":"fun setIdNumber(idNumber: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setIdNumber","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-id-number.html","searchKeys":["setIdNumber","fun setIdNumber(idNumber: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setIdNumber"]},{"name":"fun setIdeal(ideal: PaymentMethod.Ideal?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setIdeal","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-ideal.html","searchKeys":["setIdeal","fun setIdeal(ideal: PaymentMethod.Ideal?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setIdeal"]},{"name":"fun setInitialPaymentMethodId(initialPaymentMethodId: String?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setInitialPaymentMethodId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-initial-payment-method-id.html","searchKeys":["setInitialPaymentMethodId","fun setInitialPaymentMethodId(initialPaymentMethodId: String?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setInitialPaymentMethodId"]},{"name":"fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setIsPaymentSessionActive","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-is-payment-session-active.html","searchKeys":["setIsPaymentSessionActive","fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setIsPaymentSessionActive"]},{"name":"fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setIsPaymentSessionActive","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-is-payment-session-active.html","searchKeys":["setIsPaymentSessionActive","fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setIsPaymentSessionActive"]},{"name":"fun setLabelCustomization(labelCustomization: PaymentAuthConfig.Stripe3ds2LabelCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setLabelCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-label-customization.html","searchKeys":["setLabelCustomization","fun setLabelCustomization(labelCustomization: PaymentAuthConfig.Stripe3ds2LabelCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setLabelCustomization"]},{"name":"fun setLastName(lastName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name.html","searchKeys":["setLastName","fun setLastName(lastName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastName"]},{"name":"fun setLastName(lastName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name.html","searchKeys":["setLastName","fun setLastName(lastName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastName"]},{"name":"fun setLastNameKana(lastNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name-kana.html","searchKeys":["setLastNameKana","fun setLastNameKana(lastNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKana"]},{"name":"fun setLastNameKana(lastNameKana: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name-kana.html","searchKeys":["setLastNameKana","fun setLastNameKana(lastNameKana: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastNameKana"]},{"name":"fun setLastNameKanji(lastNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name-kanji.html","searchKeys":["setLastNameKanji","fun setLastNameKanji(lastNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKanji"]},{"name":"fun setLastNameKanji(lastNameKanji: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name-kanji.html","searchKeys":["setLastNameKanji","fun setLastNameKanji(lastNameKanji: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastNameKanji"]},{"name":"fun setLine1(line1: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setLine1","location":"payments-core/com.stripe.android.model/-address/-builder/set-line1.html","searchKeys":["setLine1","fun setLine1(line1: String?): Address.Builder","com.stripe.android.model.Address.Builder.setLine1"]},{"name":"fun setLine1(line1: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setLine1","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-line1.html","searchKeys":["setLine1","fun setLine1(line1: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setLine1"]},{"name":"fun setLine2(line2: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setLine2","location":"payments-core/com.stripe.android.model/-address/-builder/set-line2.html","searchKeys":["setLine2","fun setLine2(line2: String?): Address.Builder","com.stripe.android.model.Address.Builder.setLine2"]},{"name":"fun setLine2(line2: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setLine2","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-line2.html","searchKeys":["setLine2","fun setLine2(line2: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setLine2"]},{"name":"fun setLiveMode(liveMode: Boolean): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setLiveMode","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-live-mode.html","searchKeys":["setLiveMode","fun setLiveMode(liveMode: Boolean): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setLiveMode"]},{"name":"fun setMaidenName(maidenName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMaidenName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-maiden-name.html","searchKeys":["setMaidenName","fun setMaidenName(maidenName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMaidenName"]},{"name":"fun setMaidenName(maidenName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setMaidenName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-maiden-name.html","searchKeys":["setMaidenName","fun setMaidenName(maidenName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setMaidenName"]},{"name":"fun setMetadata(metadata: Map?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMetadata"]},{"name":"fun setMetadata(metadata: Map?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setMetadata"]},{"name":"fun setMetadata(metadata: Map?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setMetadata"]},{"name":"fun setName(name: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name.html","searchKeys":["setName","fun setName(name: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setName"]},{"name":"fun setName(name: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setName","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-name.html","searchKeys":["setName","fun setName(name: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setName"]},{"name":"fun setNameKana(nameKana: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name-kana.html","searchKeys":["setNameKana","fun setNameKana(nameKana: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKana"]},{"name":"fun setNameKanji(nameKanji: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name-kanji.html","searchKeys":["setNameKanji","fun setNameKanji(nameKanji: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKanji"]},{"name":"fun setNetbanking(netbanking: PaymentMethod.Netbanking?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setNetbanking","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-netbanking.html","searchKeys":["setNetbanking","fun setNetbanking(netbanking: PaymentMethod.Netbanking?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setNetbanking"]},{"name":"fun setNumber(number: String?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-number.html","searchKeys":["setNumber","fun setNumber(number: String?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setNumber"]},{"name":"fun setOptionalShippingInfoFields(vararg optionalShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setOptionalShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-optional-shipping-info-fields.html","searchKeys":["setOptionalShippingInfoFields","fun setOptionalShippingInfoFields(vararg optionalShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setOptionalShippingInfoFields"]},{"name":"fun setOwner(owner: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setOwner","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-owner.html","searchKeys":["setOwner","fun setOwner(owner: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setOwner"]},{"name":"fun setOwnersProvided(ownersProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setOwnersProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-owners-provided.html","searchKeys":["setOwnersProvided","fun setOwnersProvided(ownersProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setOwnersProvided"]},{"name":"fun setPaymentConfiguration(paymentConfiguration: PaymentConfiguration?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentConfiguration","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-configuration.html","searchKeys":["setPaymentConfiguration","fun setPaymentConfiguration(paymentConfiguration: PaymentConfiguration?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentConfiguration"]},{"name":"fun setPaymentMethodType(paymentMethodType: PaymentMethod.Type): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setPaymentMethodType","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-payment-method-type.html","searchKeys":["setPaymentMethodType","fun setPaymentMethodType(paymentMethodType: PaymentMethod.Type): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setPaymentMethodType"]},{"name":"fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodTypes","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-method-types.html","searchKeys":["setPaymentMethodTypes","fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodTypes"]},{"name":"fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodTypes","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-payment-method-types.html","searchKeys":["setPaymentMethodTypes","fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodTypes"]},{"name":"fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodsFooter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-methods-footer.html","searchKeys":["setPaymentMethodsFooter","fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodsFooter"]},{"name":"fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodsFooter","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-payment-methods-footer.html","searchKeys":["setPaymentMethodsFooter","fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodsFooter"]},{"name":"fun setPaymentSessionConfig(paymentSessionConfig: PaymentSessionConfig?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionConfig","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-payment-session-config.html","searchKeys":["setPaymentSessionConfig","fun setPaymentSessionConfig(paymentSessionConfig: PaymentSessionConfig?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionConfig"]},{"name":"fun setPaymentSessionData(paymentSessionData: PaymentSessionData?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionData","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-payment-session-data.html","searchKeys":["setPaymentSessionData","fun setPaymentSessionData(paymentSessionData: PaymentSessionData?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionData"]},{"name":"fun setPercentOwnership(percentOwnership: Int?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setPercentOwnership","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-percent-ownership.html","searchKeys":["setPercentOwnership","fun setPercentOwnership(percentOwnership: Int?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setPercentOwnership"]},{"name":"fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setPhone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setPhone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setPhone","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setPhone","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setPhone"]},{"name":"fun setPostalCode(postalCode: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setPostalCode","location":"payments-core/com.stripe.android.model/-address/-builder/set-postal-code.html","searchKeys":["setPostalCode","fun setPostalCode(postalCode: String?): Address.Builder","com.stripe.android.model.Address.Builder.setPostalCode"]},{"name":"fun setPostalCode(postalCode: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setPostalCode","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-postal-code.html","searchKeys":["setPostalCode","fun setPostalCode(postalCode: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setPostalCode"]},{"name":"fun setPrepopulatedShippingInfo(shippingInfo: ShippingInformation?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPrepopulatedShippingInfo","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-prepopulated-shipping-info.html","searchKeys":["setPrepopulatedShippingInfo","fun setPrepopulatedShippingInfo(shippingInfo: ShippingInformation?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPrepopulatedShippingInfo"]},{"name":"fun setRelationship(relationship: PersonTokenParams.Relationship?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setRelationship","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-relationship.html","searchKeys":["setRelationship","fun setRelationship(relationship: PersonTokenParams.Relationship?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setRelationship"]},{"name":"fun setRepresentative(representative: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setRepresentative","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-representative.html","searchKeys":["setRepresentative","fun setRepresentative(representative: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setRepresentative"]},{"name":"fun setSepaDebit(sepaDebit: PaymentMethod.SepaDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setSepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-sepa-debit.html","searchKeys":["setSepaDebit","fun setSepaDebit(sepaDebit: PaymentMethod.SepaDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setSepaDebit"]},{"name":"fun setShippingInfoRequired(shippingInfoRequired: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingInfoRequired","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-info-required.html","searchKeys":["setShippingInfoRequired","fun setShippingInfoRequired(shippingInfoRequired: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingInfoRequired"]},{"name":"fun setShippingInformationValidator(shippingInformationValidator: PaymentSessionConfig.ShippingInformationValidator?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingInformationValidator","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-information-validator.html","searchKeys":["setShippingInformationValidator","fun setShippingInformationValidator(shippingInformationValidator: PaymentSessionConfig.ShippingInformationValidator?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingInformationValidator"]},{"name":"fun setShippingMethodsFactory(shippingMethodsFactory: PaymentSessionConfig.ShippingMethodsFactory?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsFactory","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-methods-factory.html","searchKeys":["setShippingMethodsFactory","fun setShippingMethodsFactory(shippingMethodsFactory: PaymentSessionConfig.ShippingMethodsFactory?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsFactory"]},{"name":"fun setShippingMethodsRequired(shippingMethodsRequired: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsRequired","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-methods-required.html","searchKeys":["setShippingMethodsRequired","fun setShippingMethodsRequired(shippingMethodsRequired: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsRequired"]},{"name":"fun setShouldAttachToCustomer(shouldAttachToCustomer: Boolean): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setShouldAttachToCustomer","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-should-attach-to-customer.html","searchKeys":["setShouldAttachToCustomer","fun setShouldAttachToCustomer(shouldAttachToCustomer: Boolean): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setShouldAttachToCustomer"]},{"name":"fun setShouldPrefetchCustomer(shouldPrefetchCustomer: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShouldPrefetchCustomer","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-should-prefetch-customer.html","searchKeys":["setShouldPrefetchCustomer","fun setShouldPrefetchCustomer(shouldPrefetchCustomer: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShouldPrefetchCustomer"]},{"name":"fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setShouldShowGooglePay","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-should-show-google-pay.html","searchKeys":["setShouldShowGooglePay","fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setShouldShowGooglePay"]},{"name":"fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShouldShowGooglePay","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-should-show-google-pay.html","searchKeys":["setShouldShowGooglePay","fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShouldShowGooglePay"]},{"name":"fun setShouldShowPostalCode(shouldShowPostalCode: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.setShouldShowPostalCode","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-should-show-postal-code.html","searchKeys":["setShouldShowPostalCode","fun setShouldShowPostalCode(shouldShowPostalCode: Boolean)","com.stripe.android.view.CardMultilineWidget.setShouldShowPostalCode"]},{"name":"fun setSofort(sofort: PaymentMethod.Sofort?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setSofort","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-sofort.html","searchKeys":["setSofort","fun setSofort(sofort: PaymentMethod.Sofort?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setSofort"]},{"name":"fun setSsnLast4(ssnLast4: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setSsnLast4","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-ssn-last4.html","searchKeys":["setSsnLast4","fun setSsnLast4(ssnLast4: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setSsnLast4"]},{"name":"fun setSsnLast4(ssnLast4: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setSsnLast4","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-ssn-last4.html","searchKeys":["setSsnLast4","fun setSsnLast4(ssnLast4: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setSsnLast4"]},{"name":"fun setState(state: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setState","location":"payments-core/com.stripe.android.model/-address/-builder/set-state.html","searchKeys":["setState","fun setState(state: String?): Address.Builder","com.stripe.android.model.Address.Builder.setState"]},{"name":"fun setState(state: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setState","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-state.html","searchKeys":["setState","fun setState(state: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setState"]},{"name":"fun setStatusBarColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setStatusBarColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-status-bar-color.html","searchKeys":["setStatusBarColor","fun setStatusBarColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setStatusBarColor"]},{"name":"fun setTaxId(taxId: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-tax-id.html","searchKeys":["setTaxId","fun setTaxId(taxId: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxId"]},{"name":"fun setTaxIdRegistrar(taxIdRegistrar: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxIdRegistrar","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-tax-id-registrar.html","searchKeys":["setTaxIdRegistrar","fun setTaxIdRegistrar(taxIdRegistrar: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxIdRegistrar"]},{"name":"fun setTextBoxCustomization(textBoxCustomization: PaymentAuthConfig.Stripe3ds2TextBoxCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setTextBoxCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-text-box-customization.html","searchKeys":["setTextBoxCustomization","fun setTextBoxCustomization(textBoxCustomization: PaymentAuthConfig.Stripe3ds2TextBoxCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setTextBoxCustomization"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextColor"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontSize"]},{"name":"fun setTimeout(timeout: Int): PaymentAuthConfig.Stripe3ds2Config.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setTimeout","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/set-timeout.html","searchKeys":["setTimeout","fun setTimeout(timeout: Int): PaymentAuthConfig.Stripe3ds2Config.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setTimeout"]},{"name":"fun setTitle(title: String?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setTitle","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-title.html","searchKeys":["setTitle","fun setTitle(title: String?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setTitle"]},{"name":"fun setToolbarCustomization(toolbarCustomization: PaymentAuthConfig.Stripe3ds2ToolbarCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setToolbarCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-toolbar-customization.html","searchKeys":["setToolbarCustomization","fun setToolbarCustomization(toolbarCustomization: PaymentAuthConfig.Stripe3ds2ToolbarCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setToolbarCustomization"]},{"name":"fun setTown(town: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setTown","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-town.html","searchKeys":["setTown","fun setTown(town: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setTown"]},{"name":"fun setType(type: PaymentMethod.Type?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setType","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-type.html","searchKeys":["setType","fun setType(type: PaymentMethod.Type?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setType"]},{"name":"fun setUiCustomization(uiCustomization: PaymentAuthConfig.Stripe3ds2UiCustomization): PaymentAuthConfig.Stripe3ds2Config.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setUiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/set-ui-customization.html","searchKeys":["setUiCustomization","fun setUiCustomization(uiCustomization: PaymentAuthConfig.Stripe3ds2UiCustomization): PaymentAuthConfig.Stripe3ds2Config.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setUiCustomization"]},{"name":"fun setUpi(upi: PaymentMethod.Upi?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setUpi","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-upi.html","searchKeys":["setUpi","fun setUpi(upi: PaymentMethod.Upi?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setUpi"]},{"name":"fun setVatId(vatId: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVatId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-vat-id.html","searchKeys":["setVatId","fun setVatId(vatId: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVatId"]},{"name":"fun setVerification(verification: AccountParams.BusinessTypeParams.Company.Verification?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVerification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: AccountParams.BusinessTypeParams.Company.Verification?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVerification"]},{"name":"fun setVerification(verification: AccountParams.BusinessTypeParams.Individual.Verification?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setVerification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: AccountParams.BusinessTypeParams.Individual.Verification?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setVerification"]},{"name":"fun setVerification(verification: PersonTokenParams.Verification?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setVerification","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: PersonTokenParams.Verification?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setVerification"]},{"name":"fun setWindowFlags(windowFlags: Int?): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setWindowFlags","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setWindowFlags"]},{"name":"fun shouldSavePaymentMethod(): Boolean","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shouldSavePaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/should-save-payment-method.html","searchKeys":["shouldSavePaymentMethod","fun shouldSavePaymentMethod(): Boolean","com.stripe.android.model.ConfirmPaymentIntentParams.shouldSavePaymentMethod"]},{"name":"fun startForResult(args: ArgsType)","description":"com.stripe.android.view.ActivityStarter.startForResult","location":"payments-core/com.stripe.android.view/-activity-starter/start-for-result.html","searchKeys":["startForResult","fun startForResult(args: ArgsType)","com.stripe.android.view.ActivityStarter.startForResult"]},{"name":"fun toBuilder(): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.toBuilder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/to-builder.html","searchKeys":["toBuilder","fun toBuilder(): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.toBuilder"]},{"name":"fun toBundle(): Bundle","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.toBundle","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/to-bundle.html","searchKeys":["toBundle","fun toBundle(): Bundle","com.stripe.android.payments.PaymentFlowResult.Unvalidated.toBundle"]},{"name":"fun updateCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.updateCurrentCustomer","location":"payments-core/com.stripe.android/-customer-session/update-current-customer.html","searchKeys":["updateCurrentCustomer","fun updateCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.updateCurrentCustomer"]},{"name":"fun updatePin(cardId: String, newPin: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinUpdateListener)","description":"com.stripe.android.IssuingCardPinService.updatePin","location":"payments-core/com.stripe.android/-issuing-card-pin-service/update-pin.html","searchKeys":["updatePin","fun updatePin(cardId: String, newPin: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinUpdateListener)","com.stripe.android.IssuingCardPinService.updatePin"]},{"name":"fun validateAllFields(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.validateAllFields","location":"payments-core/com.stripe.android.view/-card-multiline-widget/validate-all-fields.html","searchKeys":["validateAllFields","fun validateAllFields(): Boolean","com.stripe.android.view.CardMultilineWidget.validateAllFields"]},{"name":"fun validateAllFields(): Boolean","description":"com.stripe.android.view.ShippingInfoWidget.validateAllFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/validate-all-fields.html","searchKeys":["validateAllFields","fun validateAllFields(): Boolean","com.stripe.android.view.ShippingInfoWidget.validateAllFields"]},{"name":"fun validateCardNumber(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.validateCardNumber","location":"payments-core/com.stripe.android.view/-card-multiline-widget/validate-card-number.html","searchKeys":["validateCardNumber","fun validateCardNumber(): Boolean","com.stripe.android.view.CardMultilineWidget.validateCardNumber"]},{"name":"interface ActivityResultLauncherHost","description":"com.stripe.android.payments.core.ActivityResultLauncherHost","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/index.html","searchKeys":["ActivityResultLauncherHost","interface ActivityResultLauncherHost","com.stripe.android.payments.core.ActivityResultLauncherHost"]},{"name":"interface ApiResultCallback","description":"com.stripe.android.ApiResultCallback","location":"payments-core/com.stripe.android/-api-result-callback/index.html","searchKeys":["ApiResultCallback","interface ApiResultCallback","com.stripe.android.ApiResultCallback"]},{"name":"interface Args : Parcelable","description":"com.stripe.android.view.ActivityStarter.Args","location":"payments-core/com.stripe.android.view/-activity-starter/-args/index.html","searchKeys":["Args","interface Args : Parcelable","com.stripe.android.view.ActivityStarter.Args"]},{"name":"interface CardInputListener","description":"com.stripe.android.view.CardInputListener","location":"payments-core/com.stripe.android.view/-card-input-listener/index.html","searchKeys":["CardInputListener","interface CardInputListener","com.stripe.android.view.CardInputListener"]},{"name":"interface ConfirmStripeIntentParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.ConfirmStripeIntentParams","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/index.html","searchKeys":["ConfirmStripeIntentParams","interface ConfirmStripeIntentParams : StripeParamsModel, Parcelable","com.stripe.android.model.ConfirmStripeIntentParams"]},{"name":"interface CustomerRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.CustomerRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-customer-retrieval-listener/index.html","searchKeys":["CustomerRetrievalListener","interface CustomerRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.CustomerRetrievalListener"]},{"name":"interface EphemeralKeyUpdateListener","description":"com.stripe.android.EphemeralKeyUpdateListener","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/index.html","searchKeys":["EphemeralKeyUpdateListener","interface EphemeralKeyUpdateListener","com.stripe.android.EphemeralKeyUpdateListener"]},{"name":"interface ErrorMessageTranslator","description":"com.stripe.android.view.i18n.ErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/index.html","searchKeys":["ErrorMessageTranslator","interface ErrorMessageTranslator","com.stripe.android.view.i18n.ErrorMessageTranslator"]},{"name":"interface FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/index.html","searchKeys":["FlowController","interface FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController"]},{"name":"interface IssuingCardPinRetrievalListener : IssuingCardPinService.Listener","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-retrieval-listener/index.html","searchKeys":["IssuingCardPinRetrievalListener","interface IssuingCardPinRetrievalListener : IssuingCardPinService.Listener","com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener"]},{"name":"interface IssuingCardPinUpdateListener : IssuingCardPinService.Listener","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-update-listener/index.html","searchKeys":["IssuingCardPinUpdateListener","interface IssuingCardPinUpdateListener : IssuingCardPinService.Listener","com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener"]},{"name":"interface Listener","description":"com.stripe.android.IssuingCardPinService.Listener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-listener/index.html","searchKeys":["Listener","interface Listener","com.stripe.android.IssuingCardPinService.Listener"]},{"name":"interface PaymentAuthenticator : ActivityResultLauncherHost","description":"com.stripe.android.payments.core.authentication.PaymentAuthenticator","location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/index.html","searchKeys":["PaymentAuthenticator","interface PaymentAuthenticator : ActivityResultLauncherHost","com.stripe.android.payments.core.authentication.PaymentAuthenticator"]},{"name":"interface PaymentMethodRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.PaymentMethodRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-payment-method-retrieval-listener/index.html","searchKeys":["PaymentMethodRetrievalListener","interface PaymentMethodRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.PaymentMethodRetrievalListener"]},{"name":"interface PaymentMethodsRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-payment-methods-retrieval-listener/index.html","searchKeys":["PaymentMethodsRetrievalListener","interface PaymentMethodsRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener"]},{"name":"interface PaymentSessionListener","description":"com.stripe.android.PaymentSession.PaymentSessionListener","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/index.html","searchKeys":["PaymentSessionListener","interface PaymentSessionListener","com.stripe.android.PaymentSession.PaymentSessionListener"]},{"name":"interface Result : Parcelable","description":"com.stripe.android.view.ActivityStarter.Result","location":"payments-core/com.stripe.android.view/-activity-starter/-result/index.html","searchKeys":["Result","interface Result : Parcelable","com.stripe.android.view.ActivityStarter.Result"]},{"name":"interface RetrievalListener","description":"com.stripe.android.CustomerSession.RetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-retrieval-listener/index.html","searchKeys":["RetrievalListener","interface RetrievalListener","com.stripe.android.CustomerSession.RetrievalListener"]},{"name":"interface ShippingInformationValidator : Serializable","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/index.html","searchKeys":["ShippingInformationValidator","interface ShippingInformationValidator : Serializable","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator"]},{"name":"interface ShippingMethodsFactory : Serializable","description":"com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-methods-factory/index.html","searchKeys":["ShippingMethodsFactory","interface ShippingMethodsFactory : Serializable","com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory"]},{"name":"interface SourceRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.SourceRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-source-retrieval-listener/index.html","searchKeys":["SourceRetrievalListener","interface SourceRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.SourceRetrievalListener"]},{"name":"interface StripeIntent : StripeModel","description":"com.stripe.android.model.StripeIntent","location":"payments-core/com.stripe.android.model/-stripe-intent/index.html","searchKeys":["StripeIntent","interface StripeIntent : StripeModel","com.stripe.android.model.StripeIntent"]},{"name":"interface StripeModel : Parcelable","description":"com.stripe.android.model.StripeModel","location":"payments-core/com.stripe.android.model/-stripe-model/index.html","searchKeys":["StripeModel","interface StripeModel : Parcelable","com.stripe.android.model.StripeModel"]},{"name":"interface StripeParamsModel : Parcelable","description":"com.stripe.android.model.StripeParamsModel","location":"payments-core/com.stripe.android.model/-stripe-params-model/index.html","searchKeys":["StripeParamsModel","interface StripeParamsModel : Parcelable","com.stripe.android.model.StripeParamsModel"]},{"name":"interface StripePaymentSource : Parcelable","description":"com.stripe.android.model.StripePaymentSource","location":"payments-core/com.stripe.android.model/-stripe-payment-source/index.html","searchKeys":["StripePaymentSource","interface StripePaymentSource : Parcelable","com.stripe.android.model.StripePaymentSource"]},{"name":"interface ValidParamsCallback","description":"com.stripe.android.view.BecsDebitWidget.ValidParamsCallback","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-valid-params-callback/index.html","searchKeys":["ValidParamsCallback","interface ValidParamsCallback","com.stripe.android.view.BecsDebitWidget.ValidParamsCallback"]},{"name":"object BankAccountTokenParamsFixtures","description":"com.stripe.android.model.BankAccountTokenParamsFixtures","location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/index.html","searchKeys":["BankAccountTokenParamsFixtures","object BankAccountTokenParamsFixtures","com.stripe.android.model.BankAccountTokenParamsFixtures"]},{"name":"object BlikAuthorize : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/index.html","searchKeys":["BlikAuthorize","object BlikAuthorize : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize"]},{"name":"object Canceled : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Canceled","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Canceled"]},{"name":"object Canceled : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Canceled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Canceled"]},{"name":"object Canceled : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Canceled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Canceled"]},{"name":"object Canceled : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Canceled","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Canceled"]},{"name":"object Companion","description":"com.stripe.android.AppInfo.Companion","location":"payments-core/com.stripe.android/-app-info/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.AppInfo.Companion"]},{"name":"object Companion","description":"com.stripe.android.CustomerSession.Companion","location":"payments-core/com.stripe.android/-customer-session/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.CustomerSession.Companion"]},{"name":"object Companion","description":"com.stripe.android.IssuingCardPinService.Companion","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.IssuingCardPinService.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentAuthConfig.Companion","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentAuthConfig.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentConfiguration.Companion","location":"payments-core/com.stripe.android/-payment-configuration/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentConfiguration.Companion"]},{"name":"object Companion","description":"com.stripe.android.Stripe.Companion","location":"payments-core/com.stripe.android/-stripe/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.Stripe.Companion"]},{"name":"object Companion","description":"com.stripe.android.StripeIntentResult.Outcome.Companion","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.StripeIntentResult.Outcome.Companion"]},{"name":"object Companion","description":"com.stripe.android.exception.StripeException.Companion","location":"payments-core/com.stripe.android.exception/-stripe-exception/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.exception.StripeException.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.AccountParams.Companion","location":"payments-core/com.stripe.android.model/-account-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.AccountParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Address.Companion","location":"payments-core/com.stripe.android.model/-address/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Address.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.CardBrand.Companion","location":"payments-core/com.stripe.android.model/-card-brand/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.CardBrand.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmPaymentIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmSetupIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmStripeIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmStripeIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.GooglePayResult.Companion","location":"payments-core/com.stripe.android.model/-google-pay-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.GooglePayResult.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentIntent.Companion","location":"payments-core/com.stripe.android.model/-payment-intent/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentIntent.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethod.Companion","location":"payments-core/com.stripe.android.model/-payment-method/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethod.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethod.Type.Companion","location":"payments-core/com.stripe.android.model/-payment-method/-type/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethod.Type.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Companion","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethodCreateParams.Card.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethodCreateParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.SetupIntent.Companion","location":"payments-core/com.stripe.android.model/-setup-intent/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.SetupIntent.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ShippingInformation.Companion","location":"payments-core/com.stripe.android.model/-shipping-information/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ShippingInformation.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Source.Companion","location":"payments-core/com.stripe.android.model/-source/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Source.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Source.SourceType.Companion","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Source.SourceType.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.SourceParams.Companion","location":"payments-core/com.stripe.android.model/-source-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.SourceParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Token.Companion","location":"payments-core/com.stripe.android.model/-token/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Token.Companion"]},{"name":"object Companion","description":"com.stripe.android.networking.ApiRequest.Options.Companion","location":"payments-core/com.stripe.android.networking/-api-request/-options/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.networking.ApiRequest.Options.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.ActivityStarter.Args.Companion","location":"payments-core/com.stripe.android.view/-activity-starter/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.ActivityStarter.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.ActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.ActivityStarter.Result.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.AddPaymentMethodActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentFlowActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentFlowActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentMethodsActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion"]},{"name":"object Companion : Parceler ","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/index.html","searchKeys":["Companion","object Companion : Parceler ","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion"]},{"name":"object Completed : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-completed/index.html","searchKeys":["Completed","object Completed : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Completed"]},{"name":"object Completed : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Completed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-completed/index.html","searchKeys":["Completed","object Completed : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Completed"]},{"name":"object Disabled : GooglePayRepository","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/-disabled/index.html","searchKeys":["Disabled","object Disabled : GooglePayRepository","com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled"]},{"name":"object PayWithGoogleUtils","description":"com.stripe.android.PayWithGoogleUtils","location":"payments-core/com.stripe.android/-pay-with-google-utils/index.html","searchKeys":["PayWithGoogleUtils","object PayWithGoogleUtils","com.stripe.android.PayWithGoogleUtils"]},{"name":"object PaymentUtils","description":"com.stripe.android.view.PaymentUtils","location":"payments-core/com.stripe.android.view/-payment-utils/index.html","searchKeys":["PaymentUtils","object PaymentUtils","com.stripe.android.view.PaymentUtils"]},{"name":"object Success : PaymentSheet.FlowController.Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Success","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-success/index.html","searchKeys":["Success","object Success : PaymentSheet.FlowController.Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Success"]},{"name":"object TranslatorManager","description":"com.stripe.android.view.i18n.TranslatorManager","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/index.html","searchKeys":["TranslatorManager","object TranslatorManager","com.stripe.android.view.i18n.TranslatorManager"]},{"name":"open class StripeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : TextInputEditText","description":"com.stripe.android.view.StripeEditText","location":"payments-core/com.stripe.android.view/-stripe-edit-text/index.html","searchKeys":["StripeEditText","open class StripeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : TextInputEditText","com.stripe.android.view.StripeEditText"]},{"name":"open fun onLauncherInvalidated()","description":"com.stripe.android.payments.core.ActivityResultLauncherHost.onLauncherInvalidated","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/on-launcher-invalidated.html","searchKeys":["onLauncherInvalidated","open fun onLauncherInvalidated()","com.stripe.android.payments.core.ActivityResultLauncherHost.onLauncherInvalidated"]},{"name":"open fun onNewActivityResultCaller(activityResultCaller: ActivityResultCaller, activityResultCallback: ActivityResultCallback)","description":"com.stripe.android.payments.core.ActivityResultLauncherHost.onNewActivityResultCaller","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/on-new-activity-result-caller.html","searchKeys":["onNewActivityResultCaller","open fun onNewActivityResultCaller(activityResultCaller: ActivityResultCaller, activityResultCallback: ActivityResultCallback)","com.stripe.android.payments.core.ActivityResultLauncherHost.onNewActivityResultCaller"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.exception.StripeException.equals","location":"payments-core/com.stripe.android.exception/-stripe-exception/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.stripe.android.exception.StripeException.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.equals","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.equals"]},{"name":"open override fun PaymentFlowResult.Unvalidated.write(parcel: Parcel, flags: Int)","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.write","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/write.html","searchKeys":["write","open override fun PaymentFlowResult.Unvalidated.write(parcel: Parcel, flags: Int)","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.write"]},{"name":"open override fun addTextChangedListener(watcher: TextWatcher?)","description":"com.stripe.android.view.StripeEditText.addTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/add-text-changed-listener.html","searchKeys":["addTextChangedListener","open override fun addTextChangedListener(watcher: TextWatcher?)","com.stripe.android.view.StripeEditText.addTextChangedListener"]},{"name":"open override fun build(): AccountParams.BusinessTypeParams.Company","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.build","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/build.html","searchKeys":["build","open override fun build(): AccountParams.BusinessTypeParams.Company","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.build"]},{"name":"open override fun build(): AccountParams.BusinessTypeParams.Individual","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.build","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/build.html","searchKeys":["build","open override fun build(): AccountParams.BusinessTypeParams.Individual","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.build"]},{"name":"open override fun build(): AddPaymentMethodActivityStarter.Args","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): AddPaymentMethodActivityStarter.Args","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): Address","description":"com.stripe.android.model.Address.Builder.build","location":"payments-core/com.stripe.android.model/-address/-builder/build.html","searchKeys":["build","open override fun build(): Address","com.stripe.android.model.Address.Builder.build"]},{"name":"open override fun build(): AddressJapanParams","description":"com.stripe.android.model.AddressJapanParams.Builder.build","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/build.html","searchKeys":["build","open override fun build(): AddressJapanParams","com.stripe.android.model.AddressJapanParams.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig","com.stripe.android.PaymentAuthConfig.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2ButtonCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2ButtonCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2Config","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2Config","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2LabelCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2LabelCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2TextBoxCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2TextBoxCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2ToolbarCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2ToolbarCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2UiCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2UiCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.build"]},{"name":"open override fun build(): PaymentFlowActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): PaymentFlowActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): PaymentMethod","description":"com.stripe.android.model.PaymentMethod.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethod","com.stripe.android.model.PaymentMethod.Builder.build"]},{"name":"open override fun build(): PaymentMethod.BillingDetails","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethod.BillingDetails","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.build"]},{"name":"open override fun build(): PaymentMethodCreateParams.Card","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethodCreateParams.Card","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.build"]},{"name":"open override fun build(): PaymentMethodsActivityStarter.Args","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethodsActivityStarter.Args","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): PaymentSessionConfig","description":"com.stripe.android.PaymentSessionConfig.Builder.build","location":"payments-core/com.stripe.android/-payment-session-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentSessionConfig","com.stripe.android.PaymentSessionConfig.Builder.build"]},{"name":"open override fun build(): PersonTokenParams","description":"com.stripe.android.model.PersonTokenParams.Builder.build","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/build.html","searchKeys":["build","open override fun build(): PersonTokenParams","com.stripe.android.model.PersonTokenParams.Builder.build"]},{"name":"open override fun build(): PersonTokenParams.Relationship","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.build","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/build.html","searchKeys":["build","open override fun build(): PersonTokenParams.Relationship","com.stripe.android.model.PersonTokenParams.Relationship.Builder.build"]},{"name":"open override fun clear()","description":"com.stripe.android.view.CardInputWidget.clear","location":"payments-core/com.stripe.android.view/-card-input-widget/clear.html","searchKeys":["clear","open override fun clear()","com.stripe.android.view.CardInputWidget.clear"]},{"name":"open override fun clear()","description":"com.stripe.android.view.CardMultilineWidget.clear","location":"payments-core/com.stripe.android.view/-card-multiline-widget/clear.html","searchKeys":["clear","open override fun clear()","com.stripe.android.view.CardMultilineWidget.clear"]},{"name":"open override fun create(parcel: Parcel): PaymentFlowResult.Unvalidated","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.create","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/create.html","searchKeys":["create","open override fun create(parcel: Parcel): PaymentFlowResult.Unvalidated","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.create"]},{"name":"open override fun createIntent(context: Context, input: GooglePayLauncherContract.Args): Intent","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.createIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: GooglePayLauncherContract.Args): Intent","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.createIntent"]},{"name":"open override fun createIntent(context: Context, input: GooglePayPaymentMethodLauncherContract.Args): Intent","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.createIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: GooglePayPaymentMethodLauncherContract.Args): Intent","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.createIntent"]},{"name":"open override fun createIntent(context: Context, input: PaymentSheetContract.Args): Intent","description":"com.stripe.android.paymentsheet.PaymentSheetContract.createIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: PaymentSheetContract.Args): Intent","com.stripe.android.paymentsheet.PaymentSheetContract.createIntent"]},{"name":"open override fun getOnFocusChangeListener(): View.OnFocusChangeListener?","description":"com.stripe.android.view.StripeEditText.getOnFocusChangeListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/get-on-focus-change-listener.html","searchKeys":["getOnFocusChangeListener","open override fun getOnFocusChangeListener(): View.OnFocusChangeListener?","com.stripe.android.view.StripeEditText.getOnFocusChangeListener"]},{"name":"open override fun hashCode(): Int","description":"com.stripe.android.exception.StripeException.hashCode","location":"payments-core/com.stripe.android.exception/-stripe-exception/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.stripe.android.exception.StripeException.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.hashCode","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.hashCode"]},{"name":"open override fun isEnabled(): Boolean","description":"com.stripe.android.view.CardInputWidget.isEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/is-enabled.html","searchKeys":["isEnabled","open override fun isEnabled(): Boolean","com.stripe.android.view.CardInputWidget.isEnabled"]},{"name":"open override fun isEnabled(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.isEnabled","location":"payments-core/com.stripe.android.view/-card-multiline-widget/is-enabled.html","searchKeys":["isEnabled","open override fun isEnabled(): Boolean","com.stripe.android.view.CardMultilineWidget.isEnabled"]},{"name":"open override fun isReady(): Flow","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled.isReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/-disabled/is-ready.html","searchKeys":["isReady","open override fun isReady(): Flow","com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled.isReady"]},{"name":"open override fun onActionSave()","description":"com.stripe.android.view.AddPaymentMethodActivity.onActionSave","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/on-action-save.html","searchKeys":["onActionSave","open override fun onActionSave()","com.stripe.android.view.AddPaymentMethodActivity.onActionSave"]},{"name":"open override fun onActionSave()","description":"com.stripe.android.view.PaymentFlowActivity.onActionSave","location":"payments-core/com.stripe.android.view/-payment-flow-activity/on-action-save.html","searchKeys":["onActionSave","open override fun onActionSave()","com.stripe.android.view.PaymentFlowActivity.onActionSave"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentAuthWebViewActivity.onBackPressed"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentFlowActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-flow-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentFlowActivity.onBackPressed"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentMethodsActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-methods-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentMethodsActivity.onBackPressed"]},{"name":"open override fun onCreateInputConnection(outAttrs: EditorInfo): InputConnection?","description":"com.stripe.android.view.StripeEditText.onCreateInputConnection","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-create-input-connection.html","searchKeys":["onCreateInputConnection","open override fun onCreateInputConnection(outAttrs: EditorInfo): InputConnection?","com.stripe.android.view.StripeEditText.onCreateInputConnection"]},{"name":"open override fun onCreateOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onCreateOptionsMenu","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-create-options-menu.html","searchKeys":["onCreateOptionsMenu","open override fun onCreateOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.PaymentAuthWebViewActivity.onCreateOptionsMenu"]},{"name":"open override fun onCreateOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.StripeActivity.onCreateOptionsMenu","location":"payments-core/com.stripe.android.view/-stripe-activity/on-create-options-menu.html","searchKeys":["onCreateOptionsMenu","open override fun onCreateOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.StripeActivity.onCreateOptionsMenu"]},{"name":"open override fun onInitializeAccessibilityNodeInfo(info: AccessibilityNodeInfo)","description":"com.stripe.android.view.StripeEditText.onInitializeAccessibilityNodeInfo","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-initialize-accessibility-node-info.html","searchKeys":["onInitializeAccessibilityNodeInfo","open override fun onInitializeAccessibilityNodeInfo(info: AccessibilityNodeInfo)","com.stripe.android.view.StripeEditText.onInitializeAccessibilityNodeInfo"]},{"name":"open override fun onInterceptTouchEvent(ev: MotionEvent): Boolean","description":"com.stripe.android.view.CardInputWidget.onInterceptTouchEvent","location":"payments-core/com.stripe.android.view/-card-input-widget/on-intercept-touch-event.html","searchKeys":["onInterceptTouchEvent","open override fun onInterceptTouchEvent(ev: MotionEvent): Boolean","com.stripe.android.view.CardInputWidget.onInterceptTouchEvent"]},{"name":"open override fun onInterceptTouchEvent(event: MotionEvent?): Boolean","description":"com.stripe.android.view.PaymentFlowViewPager.onInterceptTouchEvent","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/on-intercept-touch-event.html","searchKeys":["onInterceptTouchEvent","open override fun onInterceptTouchEvent(event: MotionEvent?): Boolean","com.stripe.android.view.PaymentFlowViewPager.onInterceptTouchEvent"]},{"name":"open override fun onOptionsItemSelected(item: MenuItem): Boolean","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onOptionsItemSelected","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-options-item-selected.html","searchKeys":["onOptionsItemSelected","open override fun onOptionsItemSelected(item: MenuItem): Boolean","com.stripe.android.view.PaymentAuthWebViewActivity.onOptionsItemSelected"]},{"name":"open override fun onOptionsItemSelected(item: MenuItem): Boolean","description":"com.stripe.android.view.StripeActivity.onOptionsItemSelected","location":"payments-core/com.stripe.android.view/-stripe-activity/on-options-item-selected.html","searchKeys":["onOptionsItemSelected","open override fun onOptionsItemSelected(item: MenuItem): Boolean","com.stripe.android.view.StripeActivity.onOptionsItemSelected"]},{"name":"open override fun onPrepareOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.StripeActivity.onPrepareOptionsMenu","location":"payments-core/com.stripe.android.view/-stripe-activity/on-prepare-options-menu.html","searchKeys":["onPrepareOptionsMenu","open override fun onPrepareOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.StripeActivity.onPrepareOptionsMenu"]},{"name":"open override fun onRestoreInstanceState(state: Parcelable?)","description":"com.stripe.android.view.StripeEditText.onRestoreInstanceState","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-restore-instance-state.html","searchKeys":["onRestoreInstanceState","open override fun onRestoreInstanceState(state: Parcelable?)","com.stripe.android.view.StripeEditText.onRestoreInstanceState"]},{"name":"open override fun onSaveInstanceState(): Parcelable","description":"com.stripe.android.view.StripeEditText.onSaveInstanceState","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-save-instance-state.html","searchKeys":["onSaveInstanceState","open override fun onSaveInstanceState(): Parcelable","com.stripe.android.view.StripeEditText.onSaveInstanceState"]},{"name":"open override fun onSupportNavigateUp(): Boolean","description":"com.stripe.android.view.PaymentMethodsActivity.onSupportNavigateUp","location":"payments-core/com.stripe.android.view/-payment-methods-activity/on-support-navigate-up.html","searchKeys":["onSupportNavigateUp","open override fun onSupportNavigateUp(): Boolean","com.stripe.android.view.PaymentMethodsActivity.onSupportNavigateUp"]},{"name":"open override fun onTouchEvent(event: MotionEvent?): Boolean","description":"com.stripe.android.view.PaymentFlowViewPager.onTouchEvent","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/on-touch-event.html","searchKeys":["onTouchEvent","open override fun onTouchEvent(event: MotionEvent?): Boolean","com.stripe.android.view.PaymentFlowViewPager.onTouchEvent"]},{"name":"open override fun onWindowFocusChanged(hasWindowFocus: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.onWindowFocusChanged","location":"payments-core/com.stripe.android.view/-card-multiline-widget/on-window-focus-changed.html","searchKeys":["onWindowFocusChanged","open override fun onWindowFocusChanged(hasWindowFocus: Boolean)","com.stripe.android.view.CardMultilineWidget.onWindowFocusChanged"]},{"name":"open override fun parse(json: JSONObject): PaymentIntent?","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser.parse","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/parse.html","searchKeys":["parse","open override fun parse(json: JSONObject): PaymentIntent?","com.stripe.android.model.parsers.PaymentIntentJsonParser.parse"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.parseResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.parseResult"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.parseResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.parseResult"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetContract.parseResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetContract.parseResult"]},{"name":"open override fun removeTextChangedListener(watcher: TextWatcher?)","description":"com.stripe.android.view.StripeEditText.removeTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/remove-text-changed-listener.html","searchKeys":["removeTextChangedListener","open override fun removeTextChangedListener(watcher: TextWatcher?)","com.stripe.android.view.StripeEditText.removeTextChangedListener"]},{"name":"open override fun requiresAction(): Boolean","description":"com.stripe.android.model.PaymentIntent.requiresAction","location":"payments-core/com.stripe.android.model/-payment-intent/requires-action.html","searchKeys":["requiresAction","open override fun requiresAction(): Boolean","com.stripe.android.model.PaymentIntent.requiresAction"]},{"name":"open override fun requiresAction(): Boolean","description":"com.stripe.android.model.SetupIntent.requiresAction","location":"payments-core/com.stripe.android.model/-setup-intent/requires-action.html","searchKeys":["requiresAction","open override fun requiresAction(): Boolean","com.stripe.android.model.SetupIntent.requiresAction"]},{"name":"open override fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.PaymentIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-payment-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","open override fun requiresConfirmation(): Boolean","com.stripe.android.model.PaymentIntent.requiresConfirmation"]},{"name":"open override fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.SetupIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-setup-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","open override fun requiresConfirmation(): Boolean","com.stripe.android.model.SetupIntent.requiresConfirmation"]},{"name":"open override fun setCardHint(cardHint: String)","description":"com.stripe.android.view.CardInputWidget.setCardHint","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-hint.html","searchKeys":["setCardHint","open override fun setCardHint(cardHint: String)","com.stripe.android.view.CardInputWidget.setCardHint"]},{"name":"open override fun setCardHint(cardHint: String)","description":"com.stripe.android.view.CardMultilineWidget.setCardHint","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-hint.html","searchKeys":["setCardHint","open override fun setCardHint(cardHint: String)","com.stripe.android.view.CardMultilineWidget.setCardHint"]},{"name":"open override fun setCardInputListener(listener: CardInputListener?)","description":"com.stripe.android.view.CardInputWidget.setCardInputListener","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-input-listener.html","searchKeys":["setCardInputListener","open override fun setCardInputListener(listener: CardInputListener?)","com.stripe.android.view.CardInputWidget.setCardInputListener"]},{"name":"open override fun setCardInputListener(listener: CardInputListener?)","description":"com.stripe.android.view.CardMultilineWidget.setCardInputListener","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-input-listener.html","searchKeys":["setCardInputListener","open override fun setCardInputListener(listener: CardInputListener?)","com.stripe.android.view.CardMultilineWidget.setCardInputListener"]},{"name":"open override fun setCardNumber(cardNumber: String?)","description":"com.stripe.android.view.CardInputWidget.setCardNumber","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-number.html","searchKeys":["setCardNumber","open override fun setCardNumber(cardNumber: String?)","com.stripe.android.view.CardInputWidget.setCardNumber"]},{"name":"open override fun setCardNumber(cardNumber: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCardNumber","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-number.html","searchKeys":["setCardNumber","open override fun setCardNumber(cardNumber: String?)","com.stripe.android.view.CardMultilineWidget.setCardNumber"]},{"name":"open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setCardNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-number-text-watcher.html","searchKeys":["setCardNumberTextWatcher","open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setCardNumberTextWatcher"]},{"name":"open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setCardNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-number-text-watcher.html","searchKeys":["setCardNumberTextWatcher","open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setCardNumberTextWatcher"]},{"name":"open override fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardInputWidget.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-valid-callback.html","searchKeys":["setCardValidCallback","open override fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardInputWidget.setCardValidCallback"]},{"name":"open override fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardMultilineWidget.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-valid-callback.html","searchKeys":["setCardValidCallback","open override fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardMultilineWidget.setCardValidCallback"]},{"name":"open override fun setCvcCode(cvcCode: String?)","description":"com.stripe.android.view.CardInputWidget.setCvcCode","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-code.html","searchKeys":["setCvcCode","open override fun setCvcCode(cvcCode: String?)","com.stripe.android.view.CardInputWidget.setCvcCode"]},{"name":"open override fun setCvcCode(cvcCode: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcCode","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-code.html","searchKeys":["setCvcCode","open override fun setCvcCode(cvcCode: String?)","com.stripe.android.view.CardMultilineWidget.setCvcCode"]},{"name":"open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setCvcNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-number-text-watcher.html","searchKeys":["setCvcNumberTextWatcher","open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setCvcNumberTextWatcher"]},{"name":"open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-number-text-watcher.html","searchKeys":["setCvcNumberTextWatcher","open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setCvcNumberTextWatcher"]},{"name":"open override fun setEnabled(enabled: Boolean)","description":"com.stripe.android.view.CardFormView.setEnabled","location":"payments-core/com.stripe.android.view/-card-form-view/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(enabled: Boolean)","com.stripe.android.view.CardFormView.setEnabled"]},{"name":"open override fun setEnabled(enabled: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.setEnabled","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(enabled: Boolean)","com.stripe.android.view.CardMultilineWidget.setEnabled"]},{"name":"open override fun setEnabled(isEnabled: Boolean)","description":"com.stripe.android.view.CardInputWidget.setEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(isEnabled: Boolean)","com.stripe.android.view.CardInputWidget.setEnabled"]},{"name":"open override fun setExpiryDate(month: Int, year: Int)","description":"com.stripe.android.view.CardInputWidget.setExpiryDate","location":"payments-core/com.stripe.android.view/-card-input-widget/set-expiry-date.html","searchKeys":["setExpiryDate","open override fun setExpiryDate(month: Int, year: Int)","com.stripe.android.view.CardInputWidget.setExpiryDate"]},{"name":"open override fun setExpiryDate(month: Int, year: Int)","description":"com.stripe.android.view.CardMultilineWidget.setExpiryDate","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-expiry-date.html","searchKeys":["setExpiryDate","open override fun setExpiryDate(month: Int, year: Int)","com.stripe.android.view.CardMultilineWidget.setExpiryDate"]},{"name":"open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setExpiryDateTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-expiry-date-text-watcher.html","searchKeys":["setExpiryDateTextWatcher","open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setExpiryDateTextWatcher"]},{"name":"open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setExpiryDateTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-expiry-date-text-watcher.html","searchKeys":["setExpiryDateTextWatcher","open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setExpiryDateTextWatcher"]},{"name":"open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setPostalCodeTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-postal-code-text-watcher.html","searchKeys":["setPostalCodeTextWatcher","open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setPostalCodeTextWatcher"]},{"name":"open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setPostalCodeTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-postal-code-text-watcher.html","searchKeys":["setPostalCodeTextWatcher","open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setPostalCodeTextWatcher"]},{"name":"open override fun setTextColor(color: Int)","description":"com.stripe.android.view.StripeEditText.setTextColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-text-color.html","searchKeys":["setTextColor","open override fun setTextColor(color: Int)","com.stripe.android.view.StripeEditText.setTextColor"]},{"name":"open override fun setTextColor(colors: ColorStateList?)","description":"com.stripe.android.view.StripeEditText.setTextColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-text-color.html","searchKeys":["setTextColor","open override fun setTextColor(colors: ColorStateList?)","com.stripe.android.view.StripeEditText.setTextColor"]},{"name":"open override fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","open override fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmPaymentIntentParams.shouldUseStripeSdk"]},{"name":"open override fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmSetupIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","open override fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmSetupIntentParams.shouldUseStripeSdk"]},{"name":"open override fun toBundle(): Bundle","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","open override fun toBundle(): Bundle","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.toBundle"]},{"name":"open override fun toBundle(): Bundle","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","open override fun toBundle(): Bundle","com.stripe.android.view.PaymentMethodsActivityStarter.Result.toBundle"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.Address.toParamMap","location":"payments-core/com.stripe.android.model/-address/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.Address.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AddressJapanParams.toParamMap","location":"payments-core/com.stripe.android.model/-address-japan-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AddressJapanParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmPaymentIntentParams.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmPaymentIntentParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmSetupIntentParams.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmSetupIntentParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.DateOfBirth.toParamMap","location":"payments-core/com.stripe.android.model/-date-of-birth/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.DateOfBirth.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.toParamMap","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.KlarnaSourceParams.toParamMap","location":"payments-core/com.stripe.android.model/-klarna-source-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.KlarnaSourceParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.MandateDataParams.Type.Online.toParamMap","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.MandateDataParams.Type.Online.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.MandateDataParams.toParamMap","location":"payments-core/com.stripe.android.model/-mandate-data-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.MandateDataParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethod.BillingDetails.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethod.BillingDetails.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Card.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Fpx.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Ideal.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Netbanking.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Sofort.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Upi.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodOptionsParams.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-options-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodOptionsParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Document.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Relationship.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Relationship.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ShippingInformation.toParamMap","location":"payments-core/com.stripe.android.model/-shipping-information/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ShippingInformation.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.Item.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/-item/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.Item.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.Shipping.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.Shipping.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceParams.OwnerParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceParams.OwnerParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.TokenParams.toParamMap","location":"payments-core/com.stripe.android.model/-token-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.TokenParams.toParamMap"]},{"name":"open override fun toString(): String","description":"com.stripe.android.exception.StripeException.toString","location":"payments-core/com.stripe.android.exception/-stripe-exception/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.exception.StripeException.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.BankAccount.Status.toString","location":"payments-core/com.stripe.android.model/-bank-account/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.BankAccount.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.BankAccount.Type.toString","location":"payments-core/com.stripe.android.model/-bank-account/-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.BankAccount.Type.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.PaymentMethod.Type.toString","location":"payments-core/com.stripe.android.model/-payment-method/-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.PaymentMethod.Type.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.CodeVerification.Status.toString","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.CodeVerification.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Flow.toString","location":"payments-core/com.stripe.android.model/-source/-flow/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Flow.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Redirect.Status.toString","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Redirect.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Status.toString","location":"payments-core/com.stripe.android.model/-source/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Usage.toString","location":"payments-core/com.stripe.android.model/-source/-usage/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Usage.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.toString","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.NextActionType.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.NextActionType.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.Status.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.Usage.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.Usage.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.networking.ApiRequest.toString","location":"payments-core/com.stripe.android.networking/-api-request/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.networking.ApiRequest.toString"]},{"name":"open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.withShouldUseStripeSdk"]},{"name":"open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.withShouldUseStripeSdk"]},{"name":"open override val baseUrl: String","description":"com.stripe.android.networking.ApiRequest.baseUrl","location":"payments-core/com.stripe.android.networking/-api-request/base-url.html","searchKeys":["baseUrl","open override val baseUrl: String","com.stripe.android.networking.ApiRequest.baseUrl"]},{"name":"open override val cardParams: CardParams?","description":"com.stripe.android.view.CardInputWidget.cardParams","location":"payments-core/com.stripe.android.view/-card-input-widget/card-params.html","searchKeys":["cardParams","open override val cardParams: CardParams?","com.stripe.android.view.CardInputWidget.cardParams"]},{"name":"open override val cardParams: CardParams?","description":"com.stripe.android.view.CardMultilineWidget.cardParams","location":"payments-core/com.stripe.android.view/-card-multiline-widget/card-params.html","searchKeys":["cardParams","open override val cardParams: CardParams?","com.stripe.android.view.CardMultilineWidget.cardParams"]},{"name":"open override val clientSecret: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String","com.stripe.android.model.ConfirmPaymentIntentParams.clientSecret"]},{"name":"open override val clientSecret: String","description":"com.stripe.android.model.ConfirmSetupIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String","com.stripe.android.model.ConfirmSetupIntentParams.clientSecret"]},{"name":"open override val clientSecret: String?","description":"com.stripe.android.model.PaymentIntent.clientSecret","location":"payments-core/com.stripe.android.model/-payment-intent/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String?","com.stripe.android.model.PaymentIntent.clientSecret"]},{"name":"open override val clientSecret: String?","description":"com.stripe.android.model.SetupIntent.clientSecret","location":"payments-core/com.stripe.android.model/-setup-intent/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String?","com.stripe.android.model.SetupIntent.clientSecret"]},{"name":"open override val created: Long","description":"com.stripe.android.model.PaymentIntent.created","location":"payments-core/com.stripe.android.model/-payment-intent/created.html","searchKeys":["created","open override val created: Long","com.stripe.android.model.PaymentIntent.created"]},{"name":"open override val created: Long","description":"com.stripe.android.model.SetupIntent.created","location":"payments-core/com.stripe.android.model/-setup-intent/created.html","searchKeys":["created","open override val created: Long","com.stripe.android.model.SetupIntent.created"]},{"name":"open override val description: String?","description":"com.stripe.android.model.SetupIntent.description","location":"payments-core/com.stripe.android.model/-setup-intent/description.html","searchKeys":["description","open override val description: String?","com.stripe.android.model.SetupIntent.description"]},{"name":"open override val description: String? = null","description":"com.stripe.android.model.PaymentIntent.description","location":"payments-core/com.stripe.android.model/-payment-intent/description.html","searchKeys":["description","open override val description: String? = null","com.stripe.android.model.PaymentIntent.description"]},{"name":"open override val failureMessage: String? = null","description":"com.stripe.android.PaymentIntentResult.failureMessage","location":"payments-core/com.stripe.android/-payment-intent-result/failure-message.html","searchKeys":["failureMessage","open override val failureMessage: String? = null","com.stripe.android.PaymentIntentResult.failureMessage"]},{"name":"open override val failureMessage: String? = null","description":"com.stripe.android.SetupIntentResult.failureMessage","location":"payments-core/com.stripe.android/-setup-intent-result/failure-message.html","searchKeys":["failureMessage","open override val failureMessage: String? = null","com.stripe.android.SetupIntentResult.failureMessage"]},{"name":"open override val id: String","description":"com.stripe.android.model.Token.id","location":"payments-core/com.stripe.android.model/-token/id.html","searchKeys":["id","open override val id: String","com.stripe.android.model.Token.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.Card.id","location":"payments-core/com.stripe.android.model/-card/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.Card.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerBankAccount.id","location":"payments-core/com.stripe.android.model/-customer-bank-account/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerBankAccount.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerCard.id","location":"payments-core/com.stripe.android.model/-customer-card/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerCard.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerSource.id","location":"payments-core/com.stripe.android.model/-customer-source/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerSource.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.PaymentIntent.id","location":"payments-core/com.stripe.android.model/-payment-intent/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.PaymentIntent.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.SetupIntent.id","location":"payments-core/com.stripe.android.model/-setup-intent/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.SetupIntent.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.Source.id","location":"payments-core/com.stripe.android.model/-source/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.Source.id"]},{"name":"open override val id: String? = null","description":"com.stripe.android.model.BankAccount.id","location":"payments-core/com.stripe.android.model/-bank-account/id.html","searchKeys":["id","open override val id: String? = null","com.stripe.android.model.BankAccount.id"]},{"name":"open override val intent: PaymentIntent","description":"com.stripe.android.PaymentIntentResult.intent","location":"payments-core/com.stripe.android/-payment-intent-result/intent.html","searchKeys":["intent","open override val intent: PaymentIntent","com.stripe.android.PaymentIntentResult.intent"]},{"name":"open override val intent: SetupIntent","description":"com.stripe.android.SetupIntentResult.intent","location":"payments-core/com.stripe.android/-setup-intent-result/intent.html","searchKeys":["intent","open override val intent: SetupIntent","com.stripe.android.SetupIntentResult.intent"]},{"name":"open override val isConfirmed: Boolean","description":"com.stripe.android.model.PaymentIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-payment-intent/is-confirmed.html","searchKeys":["isConfirmed","open override val isConfirmed: Boolean","com.stripe.android.model.PaymentIntent.isConfirmed"]},{"name":"open override val isConfirmed: Boolean","description":"com.stripe.android.model.SetupIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-setup-intent/is-confirmed.html","searchKeys":["isConfirmed","open override val isConfirmed: Boolean","com.stripe.android.model.SetupIntent.isConfirmed"]},{"name":"open override val isLiveMode: Boolean","description":"com.stripe.android.model.PaymentIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-payment-intent/is-live-mode.html","searchKeys":["isLiveMode","open override val isLiveMode: Boolean","com.stripe.android.model.PaymentIntent.isLiveMode"]},{"name":"open override val isLiveMode: Boolean","description":"com.stripe.android.model.SetupIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-setup-intent/is-live-mode.html","searchKeys":["isLiveMode","open override val isLiveMode: Boolean","com.stripe.android.model.SetupIntent.isLiveMode"]},{"name":"open override val lastErrorMessage: String?","description":"com.stripe.android.model.PaymentIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-payment-intent/last-error-message.html","searchKeys":["lastErrorMessage","open override val lastErrorMessage: String?","com.stripe.android.model.PaymentIntent.lastErrorMessage"]},{"name":"open override val lastErrorMessage: String?","description":"com.stripe.android.model.SetupIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-setup-intent/last-error-message.html","searchKeys":["lastErrorMessage","open override val lastErrorMessage: String?","com.stripe.android.model.SetupIntent.lastErrorMessage"]},{"name":"open override val nextActionData: StripeIntent.NextActionData?","description":"com.stripe.android.model.SetupIntent.nextActionData","location":"payments-core/com.stripe.android.model/-setup-intent/next-action-data.html","searchKeys":["nextActionData","open override val nextActionData: StripeIntent.NextActionData?","com.stripe.android.model.SetupIntent.nextActionData"]},{"name":"open override val nextActionData: StripeIntent.NextActionData? = null","description":"com.stripe.android.model.PaymentIntent.nextActionData","location":"payments-core/com.stripe.android.model/-payment-intent/next-action-data.html","searchKeys":["nextActionData","open override val nextActionData: StripeIntent.NextActionData? = null","com.stripe.android.model.PaymentIntent.nextActionData"]},{"name":"open override val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.PaymentIntent.nextActionType","location":"payments-core/com.stripe.android.model/-payment-intent/next-action-type.html","searchKeys":["nextActionType","open override val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.PaymentIntent.nextActionType"]},{"name":"open override val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.SetupIntent.nextActionType","location":"payments-core/com.stripe.android.model/-setup-intent/next-action-type.html","searchKeys":["nextActionType","open override val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.SetupIntent.nextActionType"]},{"name":"open override val params: Map? = null","description":"com.stripe.android.networking.ApiRequest.params","location":"payments-core/com.stripe.android.networking/-api-request/params.html","searchKeys":["params","open override val params: Map? = null","com.stripe.android.networking.ApiRequest.params"]},{"name":"open override val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/params-list.html","searchKeys":["paramsList","open override val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.paramsList"]},{"name":"open override val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/params-list.html","searchKeys":["paramsList","open override val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.paramsList"]},{"name":"open override val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.model.PaymentIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method.html","searchKeys":["paymentMethod","open override val paymentMethod: PaymentMethod? = null","com.stripe.android.model.PaymentIntent.paymentMethod"]},{"name":"open override val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.model.SetupIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method.html","searchKeys":["paymentMethod","open override val paymentMethod: PaymentMethod? = null","com.stripe.android.model.SetupIntent.paymentMethod"]},{"name":"open override val paymentMethodCard: PaymentMethodCreateParams.Card?","description":"com.stripe.android.view.CardInputWidget.paymentMethodCard","location":"payments-core/com.stripe.android.view/-card-input-widget/payment-method-card.html","searchKeys":["paymentMethodCard","open override val paymentMethodCard: PaymentMethodCreateParams.Card?","com.stripe.android.view.CardInputWidget.paymentMethodCard"]},{"name":"open override val paymentMethodCard: PaymentMethodCreateParams.Card?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodCard","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-card.html","searchKeys":["paymentMethodCard","open override val paymentMethodCard: PaymentMethodCreateParams.Card?","com.stripe.android.view.CardMultilineWidget.paymentMethodCard"]},{"name":"open override val paymentMethodCreateParams: PaymentMethodCreateParams?","description":"com.stripe.android.view.CardInputWidget.paymentMethodCreateParams","location":"payments-core/com.stripe.android.view/-card-input-widget/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","open override val paymentMethodCreateParams: PaymentMethodCreateParams?","com.stripe.android.view.CardInputWidget.paymentMethodCreateParams"]},{"name":"open override val paymentMethodCreateParams: PaymentMethodCreateParams?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodCreateParams","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","open override val paymentMethodCreateParams: PaymentMethodCreateParams?","com.stripe.android.view.CardMultilineWidget.paymentMethodCreateParams"]},{"name":"open override val paymentMethodId: String?","description":"com.stripe.android.model.SetupIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method-id.html","searchKeys":["paymentMethodId","open override val paymentMethodId: String?","com.stripe.android.model.SetupIntent.paymentMethodId"]},{"name":"open override val paymentMethodId: String? = null","description":"com.stripe.android.model.PaymentIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method-id.html","searchKeys":["paymentMethodId","open override val paymentMethodId: String? = null","com.stripe.android.model.PaymentIntent.paymentMethodId"]},{"name":"open override val paymentMethodTypes: List","description":"com.stripe.android.model.PaymentIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","open override val paymentMethodTypes: List","com.stripe.android.model.PaymentIntent.paymentMethodTypes"]},{"name":"open override val paymentMethodTypes: List","description":"com.stripe.android.model.SetupIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","open override val paymentMethodTypes: List","com.stripe.android.model.SetupIntent.paymentMethodTypes"]},{"name":"open override val status: StripeIntent.Status?","description":"com.stripe.android.model.SetupIntent.status","location":"payments-core/com.stripe.android.model/-setup-intent/status.html","searchKeys":["status","open override val status: StripeIntent.Status?","com.stripe.android.model.SetupIntent.status"]},{"name":"open override val status: StripeIntent.Status? = null","description":"com.stripe.android.model.PaymentIntent.status","location":"payments-core/com.stripe.android.model/-payment-intent/status.html","searchKeys":["status","open override val status: StripeIntent.Status? = null","com.stripe.android.model.PaymentIntent.status"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerBankAccount.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-bank-account/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerBankAccount.tokenizationMethod"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerCard.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-card/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerCard.tokenizationMethod"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerSource.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-source/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerSource.tokenizationMethod"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.AuBecsDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.BacsDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.BacsDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Card.type","location":"payments-core/com.stripe.android.model/-payment-method/-card/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Card.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.CardPresent.type","location":"payments-core/com.stripe.android.model/-payment-method/-card-present/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.CardPresent.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Fpx.type","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Fpx.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Ideal.type","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Ideal.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Netbanking.type","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Netbanking.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.SepaDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.SepaDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Sofort.type","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Sofort.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Upi.type","location":"payments-core/com.stripe.android.model/-payment-method/-upi/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Upi.type"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.AccountParams.typeDataParams","location":"payments-core/com.stripe.android.model/-account-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.AccountParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.BankAccountTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.BankAccountTokenParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.CardParams.typeDataParams","location":"payments-core/com.stripe.android.model/-card-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.CardParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.CvcTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.CvcTokenParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.PersonTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-person-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.PersonTokenParams.typeDataParams"]},{"name":"open override var returnUrl: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/return-url.html","searchKeys":["returnUrl","open override var returnUrl: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.returnUrl"]},{"name":"open override var returnUrl: String? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/return-url.html","searchKeys":["returnUrl","open override var returnUrl: String? = null","com.stripe.android.model.ConfirmSetupIntentParams.returnUrl"]},{"name":"override fun setOnFocusChangeListener(listener: View.OnFocusChangeListener?)","description":"com.stripe.android.view.StripeEditText.setOnFocusChangeListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-on-focus-change-listener.html","searchKeys":["setOnFocusChangeListener","override fun setOnFocusChangeListener(listener: View.OnFocusChangeListener?)","com.stripe.android.view.StripeEditText.setOnFocusChangeListener"]},{"name":"sealed class Args : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-args/index.html","searchKeys":["Args","sealed class Args : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.Args"]},{"name":"sealed class AuthActivityStarterHost","description":"com.stripe.android.view.AuthActivityStarterHost","location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/index.html","searchKeys":["AuthActivityStarterHost","sealed class AuthActivityStarterHost","com.stripe.android.view.AuthActivityStarterHost"]},{"name":"sealed class BusinessTypeParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/index.html","searchKeys":["BusinessTypeParams","sealed class BusinessTypeParams : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams"]},{"name":"sealed class CustomerPaymentSource : StripeModel","description":"com.stripe.android.model.CustomerPaymentSource","location":"payments-core/com.stripe.android.model/-customer-payment-source/index.html","searchKeys":["CustomerPaymentSource","sealed class CustomerPaymentSource : StripeModel","com.stripe.android.model.CustomerPaymentSource"]},{"name":"sealed class ExpirationDate","description":"com.stripe.android.model.ExpirationDate","location":"payments-core/com.stripe.android.model/-expiration-date/index.html","searchKeys":["ExpirationDate","sealed class ExpirationDate","com.stripe.android.model.ExpirationDate"]},{"name":"sealed class NextActionData : StripeModel","description":"com.stripe.android.model.StripeIntent.NextActionData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/index.html","searchKeys":["NextActionData","sealed class NextActionData : StripeModel","com.stripe.android.model.StripeIntent.NextActionData"]},{"name":"sealed class PaymentFlowResult","description":"com.stripe.android.payments.PaymentFlowResult","location":"payments-core/com.stripe.android.payments/-payment-flow-result/index.html","searchKeys":["PaymentFlowResult","sealed class PaymentFlowResult","com.stripe.android.payments.PaymentFlowResult"]},{"name":"sealed class PaymentMethodOptionsParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodOptionsParams","location":"payments-core/com.stripe.android.model/-payment-method-options-params/index.html","searchKeys":["PaymentMethodOptionsParams","sealed class PaymentMethodOptionsParams : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodOptionsParams"]},{"name":"sealed class PaymentSheetResult : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheetResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/index.html","searchKeys":["PaymentSheetResult","sealed class PaymentSheetResult : Parcelable","com.stripe.android.paymentsheet.PaymentSheetResult"]},{"name":"sealed class Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/index.html","searchKeys":["Result","sealed class Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result"]},{"name":"sealed class Result : ActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/index.html","searchKeys":["Result","sealed class Result : ActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result"]},{"name":"sealed class Result : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/index.html","searchKeys":["Result","sealed class Result : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result"]},{"name":"sealed class Result : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html","searchKeys":["Result","sealed class Result : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result"]},{"name":"sealed class SdkData : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/index.html","searchKeys":["SdkData","sealed class SdkData : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.SdkData"]},{"name":"sealed class SourceTypeModel : StripeModel","description":"com.stripe.android.model.SourceTypeModel","location":"payments-core/com.stripe.android.model/-source-type-model/index.html","searchKeys":["SourceTypeModel","sealed class SourceTypeModel : StripeModel","com.stripe.android.model.SourceTypeModel"]},{"name":"sealed class Type : StripeParamsModel, Parcelable","description":"com.stripe.android.model.MandateDataParams.Type","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/index.html","searchKeys":["Type","sealed class Type : StripeParamsModel, Parcelable","com.stripe.android.model.MandateDataParams.Type"]},{"name":"sealed class TypeData : StripeModel","description":"com.stripe.android.model.PaymentMethod.TypeData","location":"payments-core/com.stripe.android.model/-payment-method/-type-data/index.html","searchKeys":["TypeData","sealed class TypeData : StripeModel","com.stripe.android.model.PaymentMethod.TypeData"]},{"name":"sealed class Wallet : StripeModel","description":"com.stripe.android.model.wallets.Wallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/index.html","searchKeys":["Wallet","sealed class Wallet : StripeModel","com.stripe.android.model.wallets.Wallet"]},{"name":"suspend fun Stripe.confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId): PaymentIntentResult","description":"com.stripe.android.confirmAlipayPayment","location":"payments-core/com.stripe.android/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment","suspend fun Stripe.confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId): PaymentIntentResult","com.stripe.android.confirmAlipayPayment"]},{"name":"suspend fun Stripe.confirmPaymentIntent(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent","description":"com.stripe.android.confirmPaymentIntent","location":"payments-core/com.stripe.android/confirm-payment-intent.html","searchKeys":["confirmPaymentIntent","suspend fun Stripe.confirmPaymentIntent(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent","com.stripe.android.confirmPaymentIntent"]},{"name":"suspend fun Stripe.confirmSetupIntent(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent","description":"com.stripe.android.confirmSetupIntent","location":"payments-core/com.stripe.android/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","suspend fun Stripe.confirmSetupIntent(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent","com.stripe.android.confirmSetupIntent"]},{"name":"suspend fun Stripe.confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId): WeChatPayNextAction","description":"com.stripe.android.confirmWeChatPayPayment","location":"payments-core/com.stripe.android/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment","suspend fun Stripe.confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId): WeChatPayNextAction","com.stripe.android.confirmWeChatPayPayment"]},{"name":"suspend fun Stripe.createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createAccountToken","location":"payments-core/com.stripe.android/create-account-token.html","searchKeys":["createAccountToken","suspend fun Stripe.createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createAccountToken"]},{"name":"suspend fun Stripe.createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createBankAccountToken","location":"payments-core/com.stripe.android/create-bank-account-token.html","searchKeys":["createBankAccountToken","suspend fun Stripe.createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createBankAccountToken"]},{"name":"suspend fun Stripe.createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createCardToken","location":"payments-core/com.stripe.android/create-card-token.html","searchKeys":["createCardToken","suspend fun Stripe.createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createCardToken"]},{"name":"suspend fun Stripe.createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createCvcUpdateToken","location":"payments-core/com.stripe.android/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken","suspend fun Stripe.createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createCvcUpdateToken"]},{"name":"suspend fun Stripe.createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","description":"com.stripe.android.createFile","location":"payments-core/com.stripe.android/create-file.html","searchKeys":["createFile","suspend fun Stripe.createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","com.stripe.android.createFile"]},{"name":"suspend fun Stripe.createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod","description":"com.stripe.android.createPaymentMethod","location":"payments-core/com.stripe.android/create-payment-method.html","searchKeys":["createPaymentMethod","suspend fun Stripe.createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod","com.stripe.android.createPaymentMethod"]},{"name":"suspend fun Stripe.createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createPersonToken","location":"payments-core/com.stripe.android/create-person-token.html","searchKeys":["createPersonToken","suspend fun Stripe.createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createPersonToken"]},{"name":"suspend fun Stripe.createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createPiiToken","location":"payments-core/com.stripe.android/create-pii-token.html","searchKeys":["createPiiToken","suspend fun Stripe.createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createPiiToken"]},{"name":"suspend fun Stripe.createRadarSession(): RadarSession","description":"com.stripe.android.createRadarSession","location":"payments-core/com.stripe.android/create-radar-session.html","searchKeys":["createRadarSession","suspend fun Stripe.createRadarSession(): RadarSession","com.stripe.android.createRadarSession"]},{"name":"suspend fun Stripe.createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source","description":"com.stripe.android.createSource","location":"payments-core/com.stripe.android/create-source.html","searchKeys":["createSource","suspend fun Stripe.createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source","com.stripe.android.createSource"]},{"name":"suspend fun Stripe.getAuthenticateSourceResult(requestCode: Int, data: Intent): Source","description":"com.stripe.android.getAuthenticateSourceResult","location":"payments-core/com.stripe.android/get-authenticate-source-result.html","searchKeys":["getAuthenticateSourceResult","suspend fun Stripe.getAuthenticateSourceResult(requestCode: Int, data: Intent): Source","com.stripe.android.getAuthenticateSourceResult"]},{"name":"suspend fun Stripe.getPaymentIntentResult(requestCode: Int, data: Intent): PaymentIntentResult","description":"com.stripe.android.getPaymentIntentResult","location":"payments-core/com.stripe.android/get-payment-intent-result.html","searchKeys":["getPaymentIntentResult","suspend fun Stripe.getPaymentIntentResult(requestCode: Int, data: Intent): PaymentIntentResult","com.stripe.android.getPaymentIntentResult"]},{"name":"suspend fun Stripe.getSetupIntentResult(requestCode: Int, data: Intent): SetupIntentResult","description":"com.stripe.android.getSetupIntentResult","location":"payments-core/com.stripe.android/get-setup-intent-result.html","searchKeys":["getSetupIntentResult","suspend fun Stripe.getSetupIntentResult(requestCode: Int, data: Intent): SetupIntentResult","com.stripe.android.getSetupIntentResult"]},{"name":"suspend fun Stripe.retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent","description":"com.stripe.android.retrievePaymentIntent","location":"payments-core/com.stripe.android/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent","suspend fun Stripe.retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent","com.stripe.android.retrievePaymentIntent"]},{"name":"suspend fun Stripe.retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent","description":"com.stripe.android.retrieveSetupIntent","location":"payments-core/com.stripe.android/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent","suspend fun Stripe.retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent","com.stripe.android.retrieveSetupIntent"]},{"name":"suspend fun Stripe.retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source","description":"com.stripe.android.retrieveSource","location":"payments-core/com.stripe.android/retrieve-source.html","searchKeys":["retrieveSource","suspend fun Stripe.retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source","com.stripe.android.retrieveSource"]},{"name":"val API_VERSION: String","description":"com.stripe.android.Stripe.Companion.API_VERSION","location":"payments-core/com.stripe.android/-stripe/-companion/-a-p-i_-v-e-r-s-i-o-n.html","searchKeys":["API_VERSION","val API_VERSION: String","com.stripe.android.Stripe.Companion.API_VERSION"]},{"name":"val DEFAULT: BankAccountTokenParams","description":"com.stripe.android.model.BankAccountTokenParamsFixtures.DEFAULT","location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/-d-e-f-a-u-l-t.html","searchKeys":["DEFAULT","val DEFAULT: BankAccountTokenParams","com.stripe.android.model.BankAccountTokenParamsFixtures.DEFAULT"]},{"name":"val accountHolderName: String? = null","description":"com.stripe.android.model.BankAccount.accountHolderName","location":"payments-core/com.stripe.android.model/-bank-account/account-holder-name.html","searchKeys":["accountHolderName","val accountHolderName: String? = null","com.stripe.android.model.BankAccount.accountHolderName"]},{"name":"val accountHolderType: BankAccount.Type? = null","description":"com.stripe.android.model.BankAccount.accountHolderType","location":"payments-core/com.stripe.android.model/-bank-account/account-holder-type.html","searchKeys":["accountHolderType","val accountHolderType: BankAccount.Type? = null","com.stripe.android.model.BankAccount.accountHolderType"]},{"name":"val accountHolderType: String?","description":"com.stripe.android.model.PaymentMethod.Fpx.accountHolderType","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/account-holder-type.html","searchKeys":["accountHolderType","val accountHolderType: String?","com.stripe.android.model.PaymentMethod.Fpx.accountHolderType"]},{"name":"val addPaymentMethodFooterLayoutId: Int","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.addPaymentMethodFooterLayoutId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/add-payment-method-footer-layout-id.html","searchKeys":["addPaymentMethodFooterLayoutId","val addPaymentMethodFooterLayoutId: Int","com.stripe.android.view.PaymentMethodsActivityStarter.Args.addPaymentMethodFooterLayoutId"]},{"name":"val addPaymentMethodFooterLayoutId: Int = 0","description":"com.stripe.android.PaymentSessionConfig.addPaymentMethodFooterLayoutId","location":"payments-core/com.stripe.android/-payment-session-config/add-payment-method-footer-layout-id.html","searchKeys":["addPaymentMethodFooterLayoutId","val addPaymentMethodFooterLayoutId: Int = 0","com.stripe.android.PaymentSessionConfig.addPaymentMethodFooterLayoutId"]},{"name":"val additionalDocument: PersonTokenParams.Document? = null","description":"com.stripe.android.model.PersonTokenParams.Verification.additionalDocument","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/additional-document.html","searchKeys":["additionalDocument","val additionalDocument: PersonTokenParams.Document? = null","com.stripe.android.model.PersonTokenParams.Verification.additionalDocument"]},{"name":"val address: Address","description":"com.stripe.android.model.PaymentIntent.Shipping.address","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/address.html","searchKeys":["address","val address: Address","com.stripe.android.model.PaymentIntent.Shipping.address"]},{"name":"val address: Address","description":"com.stripe.android.model.SourceOrderParams.Shipping.address","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/address.html","searchKeys":["address","val address: Address","com.stripe.android.model.SourceOrderParams.Shipping.address"]},{"name":"val address: Address?","description":"com.stripe.android.model.Source.Owner.address","location":"payments-core/com.stripe.android.model/-source/-owner/address.html","searchKeys":["address","val address: Address?","com.stripe.android.model.Source.Owner.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.GooglePayResult.address","location":"payments-core/com.stripe.android.model/-google-pay-result/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.GooglePayResult.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.address","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.PaymentMethod.BillingDetails.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.PersonTokenParams.address","location":"payments-core/com.stripe.android.model/-person-token-params/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.PersonTokenParams.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.ShippingInformation.address","location":"payments-core/com.stripe.android.model/-shipping-information/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.ShippingInformation.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.SourceOrder.Shipping.address","location":"payments-core/com.stripe.android.model/-source-order/-shipping/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.SourceOrder.Shipping.address"]},{"name":"val address: String?","description":"com.stripe.android.model.Source.Receiver.address","location":"payments-core/com.stripe.android.model/-source/-receiver/address.html","searchKeys":["address","val address: String?","com.stripe.android.model.Source.Receiver.address"]},{"name":"val addressCity: String? = null","description":"com.stripe.android.model.Card.addressCity","location":"payments-core/com.stripe.android.model/-card/address-city.html","searchKeys":["addressCity","val addressCity: String? = null","com.stripe.android.model.Card.addressCity"]},{"name":"val addressCountry: String? = null","description":"com.stripe.android.model.Card.addressCountry","location":"payments-core/com.stripe.android.model/-card/address-country.html","searchKeys":["addressCountry","val addressCountry: String? = null","com.stripe.android.model.Card.addressCountry"]},{"name":"val addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.PersonTokenParams.addressKana","location":"payments-core/com.stripe.android.model/-person-token-params/address-kana.html","searchKeys":["addressKana","val addressKana: AddressJapanParams? = null","com.stripe.android.model.PersonTokenParams.addressKana"]},{"name":"val addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.PersonTokenParams.addressKanji","location":"payments-core/com.stripe.android.model/-person-token-params/address-kanji.html","searchKeys":["addressKanji","val addressKanji: AddressJapanParams? = null","com.stripe.android.model.PersonTokenParams.addressKanji"]},{"name":"val addressLine1: String? = null","description":"com.stripe.android.model.Card.addressLine1","location":"payments-core/com.stripe.android.model/-card/address-line1.html","searchKeys":["addressLine1","val addressLine1: String? = null","com.stripe.android.model.Card.addressLine1"]},{"name":"val addressLine1Check: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.addressLine1Check","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String?","com.stripe.android.model.PaymentMethod.Card.Checks.addressLine1Check"]},{"name":"val addressLine1Check: String? = null","description":"com.stripe.android.model.Card.addressLine1Check","location":"payments-core/com.stripe.android.model/-card/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String? = null","com.stripe.android.model.Card.addressLine1Check"]},{"name":"val addressLine1Check: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.addressLine1Check","location":"payments-core/com.stripe.android.model/-source-type-model/-card/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String? = null","com.stripe.android.model.SourceTypeModel.Card.addressLine1Check"]},{"name":"val addressLine2: String? = null","description":"com.stripe.android.model.Card.addressLine2","location":"payments-core/com.stripe.android.model/-card/address-line2.html","searchKeys":["addressLine2","val addressLine2: String? = null","com.stripe.android.model.Card.addressLine2"]},{"name":"val addressPostalCodeCheck: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.addressPostalCodeCheck","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/address-postal-code-check.html","searchKeys":["addressPostalCodeCheck","val addressPostalCodeCheck: String?","com.stripe.android.model.PaymentMethod.Card.Checks.addressPostalCodeCheck"]},{"name":"val addressState: String? = null","description":"com.stripe.android.model.Card.addressState","location":"payments-core/com.stripe.android.model/-card/address-state.html","searchKeys":["addressState","val addressState: String? = null","com.stripe.android.model.Card.addressState"]},{"name":"val addressZip: String? = null","description":"com.stripe.android.model.Card.addressZip","location":"payments-core/com.stripe.android.model/-card/address-zip.html","searchKeys":["addressZip","val addressZip: String? = null","com.stripe.android.model.Card.addressZip"]},{"name":"val addressZipCheck: String? = null","description":"com.stripe.android.model.Card.addressZipCheck","location":"payments-core/com.stripe.android.model/-card/address-zip-check.html","searchKeys":["addressZipCheck","val addressZipCheck: String? = null","com.stripe.android.model.Card.addressZipCheck"]},{"name":"val addressZipCheck: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.addressZipCheck","location":"payments-core/com.stripe.android.model/-source-type-model/-card/address-zip-check.html","searchKeys":["addressZipCheck","val addressZipCheck: String? = null","com.stripe.android.model.SourceTypeModel.Card.addressZipCheck"]},{"name":"val allowedShippingCountryCodes: Set","description":"com.stripe.android.PaymentSessionConfig.allowedShippingCountryCodes","location":"payments-core/com.stripe.android/-payment-session-config/allowed-shipping-country-codes.html","searchKeys":["allowedShippingCountryCodes","val allowedShippingCountryCodes: Set","com.stripe.android.PaymentSessionConfig.allowedShippingCountryCodes"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrder.Item.amount","location":"payments-core/com.stripe.android.model/-source-order/-item/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrder.Item.amount"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrder.amount","location":"payments-core/com.stripe.android.model/-source-order/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrder.amount"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrderParams.Item.amount","location":"payments-core/com.stripe.android.model/-source-order-params/-item/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrderParams.Item.amount"]},{"name":"val amount: Long","description":"com.stripe.android.model.ShippingMethod.amount","location":"payments-core/com.stripe.android.model/-shipping-method/amount.html","searchKeys":["amount","val amount: Long","com.stripe.android.model.ShippingMethod.amount"]},{"name":"val amount: Long?","description":"com.stripe.android.model.PaymentIntent.amount","location":"payments-core/com.stripe.android.model/-payment-intent/amount.html","searchKeys":["amount","val amount: Long?","com.stripe.android.model.PaymentIntent.amount"]},{"name":"val amount: Long? = null","description":"com.stripe.android.model.Source.amount","location":"payments-core/com.stripe.android.model/-source/amount.html","searchKeys":["amount","val amount: Long? = null","com.stripe.android.model.Source.amount"]},{"name":"val amountCharged: Long","description":"com.stripe.android.model.Source.Receiver.amountCharged","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-charged.html","searchKeys":["amountCharged","val amountCharged: Long","com.stripe.android.model.Source.Receiver.amountCharged"]},{"name":"val amountReceived: Long","description":"com.stripe.android.model.Source.Receiver.amountReceived","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-received.html","searchKeys":["amountReceived","val amountReceived: Long","com.stripe.android.model.Source.Receiver.amountReceived"]},{"name":"val amountReturned: Long","description":"com.stripe.android.model.Source.Receiver.amountReturned","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-returned.html","searchKeys":["amountReturned","val amountReturned: Long","com.stripe.android.model.Source.Receiver.amountReturned"]},{"name":"val apiParameterMap: Map","description":"com.stripe.android.model.SourceParams.apiParameterMap","location":"payments-core/com.stripe.android.model/-source-params/api-parameter-map.html","searchKeys":["apiParameterMap","val apiParameterMap: Map","com.stripe.android.model.SourceParams.apiParameterMap"]},{"name":"val appId: String?","description":"com.stripe.android.model.WeChat.appId","location":"payments-core/com.stripe.android.model/-we-chat/app-id.html","searchKeys":["appId","val appId: String?","com.stripe.android.model.WeChat.appId"]},{"name":"val attemptsRemaining: Int","description":"com.stripe.android.model.Source.CodeVerification.attemptsRemaining","location":"payments-core/com.stripe.android.model/-source/-code-verification/attempts-remaining.html","searchKeys":["attemptsRemaining","val attemptsRemaining: Int","com.stripe.android.model.Source.CodeVerification.attemptsRemaining"]},{"name":"val auBecsDebit: PaymentMethod.AuBecsDebit? = null","description":"com.stripe.android.model.PaymentMethod.auBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/au-becs-debit.html","searchKeys":["auBecsDebit","val auBecsDebit: PaymentMethod.AuBecsDebit? = null","com.stripe.android.model.PaymentMethod.auBecsDebit"]},{"name":"val available: Set","description":"com.stripe.android.model.PaymentMethod.Card.Networks.available","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/available.html","searchKeys":["available","val available: Set","com.stripe.android.model.PaymentMethod.Card.Networks.available"]},{"name":"val back: String? = null","description":"com.stripe.android.model.PersonTokenParams.Document.back","location":"payments-core/com.stripe.android.model/-person-token-params/-document/back.html","searchKeys":["back","val back: String? = null","com.stripe.android.model.PersonTokenParams.Document.back"]},{"name":"val backgroundImageUrl: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.backgroundImageUrl","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/background-image-url.html","searchKeys":["backgroundImageUrl","val backgroundImageUrl: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.backgroundImageUrl"]},{"name":"val bacsDebit: PaymentMethod.BacsDebit? = null","description":"com.stripe.android.model.PaymentMethod.bacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/bacs-debit.html","searchKeys":["bacsDebit","val bacsDebit: PaymentMethod.BacsDebit? = null","com.stripe.android.model.PaymentMethod.bacsDebit"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Fpx.bank","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Fpx.bank"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Ideal.bank","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Ideal.bank"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Netbanking.bank","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Netbanking.bank"]},{"name":"val bankAccount: BankAccount","description":"com.stripe.android.model.CustomerBankAccount.bankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/bank-account.html","searchKeys":["bankAccount","val bankAccount: BankAccount","com.stripe.android.model.CustomerBankAccount.bankAccount"]},{"name":"val bankAccount: BankAccount? = null","description":"com.stripe.android.model.Token.bankAccount","location":"payments-core/com.stripe.android.model/-token/bank-account.html","searchKeys":["bankAccount","val bankAccount: BankAccount? = null","com.stripe.android.model.Token.bankAccount"]},{"name":"val bankCode: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.bankCode","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/bank-code.html","searchKeys":["bankCode","val bankCode: String?","com.stripe.android.model.PaymentMethod.SepaDebit.bankCode"]},{"name":"val bankCode: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.bankCode","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/bank-code.html","searchKeys":["bankCode","val bankCode: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.bankCode"]},{"name":"val bankIdentifierCode: String?","description":"com.stripe.android.model.PaymentMethod.Ideal.bankIdentifierCode","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/bank-identifier-code.html","searchKeys":["bankIdentifierCode","val bankIdentifierCode: String?","com.stripe.android.model.PaymentMethod.Ideal.bankIdentifierCode"]},{"name":"val bankName: String? = null","description":"com.stripe.android.model.BankAccount.bankName","location":"payments-core/com.stripe.android.model/-bank-account/bank-name.html","searchKeys":["bankName","val bankName: String? = null","com.stripe.android.model.BankAccount.bankName"]},{"name":"val billingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.billingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.billingAddress"]},{"name":"val billingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.billingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.billingAddress"]},{"name":"val billingAddress: Address? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingAddress","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address? = null","com.stripe.android.model.KlarnaSourceParams.billingAddress"]},{"name":"val billingAddressFields: BillingAddressFields","description":"com.stripe.android.PaymentSessionConfig.billingAddressFields","location":"payments-core/com.stripe.android/-payment-session-config/billing-address-fields.html","searchKeys":["billingAddressFields","val billingAddressFields: BillingAddressFields","com.stripe.android.PaymentSessionConfig.billingAddressFields"]},{"name":"val billingDetails: PaymentMethod.BillingDetails? = null","description":"com.stripe.android.model.PaymentMethod.billingDetails","location":"payments-core/com.stripe.android.model/-payment-method/billing-details.html","searchKeys":["billingDetails","val billingDetails: PaymentMethod.BillingDetails? = null","com.stripe.android.model.PaymentMethod.billingDetails"]},{"name":"val billingDob: DateOfBirth? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingDob","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-dob.html","searchKeys":["billingDob","val billingDob: DateOfBirth? = null","com.stripe.android.model.KlarnaSourceParams.billingDob"]},{"name":"val billingEmail: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingEmail","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-email.html","searchKeys":["billingEmail","val billingEmail: String? = null","com.stripe.android.model.KlarnaSourceParams.billingEmail"]},{"name":"val billingFirstName: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingFirstName","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-first-name.html","searchKeys":["billingFirstName","val billingFirstName: String? = null","com.stripe.android.model.KlarnaSourceParams.billingFirstName"]},{"name":"val billingLastName: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingLastName","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-last-name.html","searchKeys":["billingLastName","val billingLastName: String? = null","com.stripe.android.model.KlarnaSourceParams.billingLastName"]},{"name":"val billingPhone: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingPhone","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-phone.html","searchKeys":["billingPhone","val billingPhone: String? = null","com.stripe.android.model.KlarnaSourceParams.billingPhone"]},{"name":"val branchCode: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.branchCode","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/branch-code.html","searchKeys":["branchCode","val branchCode: String?","com.stripe.android.model.PaymentMethod.SepaDebit.branchCode"]},{"name":"val branchCode: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.branchCode","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/branch-code.html","searchKeys":["branchCode","val branchCode: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.branchCode"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.Card.brand","location":"payments-core/com.stripe.android.model/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.Card.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.CardParams.brand","location":"payments-core/com.stripe.android.model/-card-params/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.CardParams.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.PaymentMethod.Card.brand","location":"payments-core/com.stripe.android.model/-payment-method/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.PaymentMethod.Card.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.SourceTypeModel.Card.brand","location":"payments-core/com.stripe.android.model/-source-type-model/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.SourceTypeModel.Card.brand"]},{"name":"val bsbNumber: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.bsbNumber","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/bsb-number.html","searchKeys":["bsbNumber","val bsbNumber: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.bsbNumber"]},{"name":"val cachedCustomer: Customer?","description":"com.stripe.android.CustomerSession.cachedCustomer","location":"payments-core/com.stripe.android/-customer-session/cached-customer.html","searchKeys":["cachedCustomer","val cachedCustomer: Customer?","com.stripe.android.CustomerSession.cachedCustomer"]},{"name":"val canDeletePaymentMethods: Boolean = true","description":"com.stripe.android.PaymentSessionConfig.canDeletePaymentMethods","location":"payments-core/com.stripe.android/-payment-session-config/can-delete-payment-methods.html","searchKeys":["canDeletePaymentMethods","val canDeletePaymentMethods: Boolean = true","com.stripe.android.PaymentSessionConfig.canDeletePaymentMethods"]},{"name":"val canceledAt: Long = 0L","description":"com.stripe.android.model.PaymentIntent.canceledAt","location":"payments-core/com.stripe.android.model/-payment-intent/canceled-at.html","searchKeys":["canceledAt","val canceledAt: Long = 0L","com.stripe.android.model.PaymentIntent.canceledAt"]},{"name":"val cancellationReason: PaymentIntent.CancellationReason? = null","description":"com.stripe.android.model.PaymentIntent.cancellationReason","location":"payments-core/com.stripe.android.model/-payment-intent/cancellation-reason.html","searchKeys":["cancellationReason","val cancellationReason: PaymentIntent.CancellationReason? = null","com.stripe.android.model.PaymentIntent.cancellationReason"]},{"name":"val cancellationReason: SetupIntent.CancellationReason?","description":"com.stripe.android.model.SetupIntent.cancellationReason","location":"payments-core/com.stripe.android.model/-setup-intent/cancellation-reason.html","searchKeys":["cancellationReason","val cancellationReason: SetupIntent.CancellationReason?","com.stripe.android.model.SetupIntent.cancellationReason"]},{"name":"val captureMethod: PaymentIntent.CaptureMethod","description":"com.stripe.android.model.PaymentIntent.captureMethod","location":"payments-core/com.stripe.android.model/-payment-intent/capture-method.html","searchKeys":["captureMethod","val captureMethod: PaymentIntent.CaptureMethod","com.stripe.android.model.PaymentIntent.captureMethod"]},{"name":"val card: Card","description":"com.stripe.android.model.CustomerCard.card","location":"payments-core/com.stripe.android.model/-customer-card/card.html","searchKeys":["card","val card: Card","com.stripe.android.model.CustomerCard.card"]},{"name":"val card: Card? = null","description":"com.stripe.android.model.Token.card","location":"payments-core/com.stripe.android.model/-token/card.html","searchKeys":["card","val card: Card? = null","com.stripe.android.model.Token.card"]},{"name":"val card: PaymentMethod.Card? = null","description":"com.stripe.android.model.PaymentMethod.card","location":"payments-core/com.stripe.android.model/-payment-method/card.html","searchKeys":["card","val card: PaymentMethod.Card? = null","com.stripe.android.model.PaymentMethod.card"]},{"name":"val cardParams: CardParams?","description":"com.stripe.android.view.CardFormView.cardParams","location":"payments-core/com.stripe.android.view/-card-form-view/card-params.html","searchKeys":["cardParams","val cardParams: CardParams?","com.stripe.android.view.CardFormView.cardParams"]},{"name":"val cardPresent: PaymentMethod.CardPresent? = null","description":"com.stripe.android.model.PaymentMethod.cardPresent","location":"payments-core/com.stripe.android.model/-payment-method/card-present.html","searchKeys":["cardPresent","val cardPresent: PaymentMethod.CardPresent? = null","com.stripe.android.model.PaymentMethod.cardPresent"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.carrier","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.PaymentIntent.Shipping.carrier"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.carrier","location":"payments-core/com.stripe.android.model/-source-order/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.SourceOrder.Shipping.carrier"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.carrier","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.carrier"]},{"name":"val cartTotal: Long = 0L","description":"com.stripe.android.PaymentSessionData.cartTotal","location":"payments-core/com.stripe.android/-payment-session-data/cart-total.html","searchKeys":["cartTotal","val cartTotal: Long = 0L","com.stripe.android.PaymentSessionData.cartTotal"]},{"name":"val charge: String?","description":"com.stripe.android.exception.CardException.charge","location":"payments-core/com.stripe.android.exception/-card-exception/charge.html","searchKeys":["charge","val charge: String?","com.stripe.android.exception.CardException.charge"]},{"name":"val charge: String?","description":"com.stripe.android.model.PaymentIntent.Error.charge","location":"payments-core/com.stripe.android.model/-payment-intent/-error/charge.html","searchKeys":["charge","val charge: String?","com.stripe.android.model.PaymentIntent.Error.charge"]},{"name":"val charge: String? = null","description":"com.stripe.android.StripeError.charge","location":"payments-core/com.stripe.android/-stripe-error/charge.html","searchKeys":["charge","val charge: String? = null","com.stripe.android.StripeError.charge"]},{"name":"val checks: PaymentMethod.Card.Checks? = null","description":"com.stripe.android.model.PaymentMethod.Card.checks","location":"payments-core/com.stripe.android.model/-payment-method/-card/checks.html","searchKeys":["checks","val checks: PaymentMethod.Card.Checks? = null","com.stripe.android.model.PaymentMethod.Card.checks"]},{"name":"val city: String? = null","description":"com.stripe.android.model.Address.city","location":"payments-core/com.stripe.android.model/-address/city.html","searchKeys":["city","val city: String? = null","com.stripe.android.model.Address.city"]},{"name":"val city: String? = null","description":"com.stripe.android.model.AddressJapanParams.city","location":"payments-core/com.stripe.android.model/-address-japan-params/city.html","searchKeys":["city","val city: String? = null","com.stripe.android.model.AddressJapanParams.city"]},{"name":"val clientSecret: String? = null","description":"com.stripe.android.model.Source.clientSecret","location":"payments-core/com.stripe.android.model/-source/client-secret.html","searchKeys":["clientSecret","val clientSecret: String? = null","com.stripe.android.model.Source.clientSecret"]},{"name":"val clientSecret: String? = null","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.clientSecret","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/client-secret.html","searchKeys":["clientSecret","val clientSecret: String? = null","com.stripe.android.payments.PaymentFlowResult.Unvalidated.clientSecret"]},{"name":"val clientToken: String?","description":"com.stripe.android.model.Source.Klarna.clientToken","location":"payments-core/com.stripe.android.model/-source/-klarna/client-token.html","searchKeys":["clientToken","val clientToken: String?","com.stripe.android.model.Source.Klarna.clientToken"]},{"name":"val code: String","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.code","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/code.html","searchKeys":["code","val code: String","com.stripe.android.StripeApiBeta.WeChatPayV1.code"]},{"name":"val code: String","description":"com.stripe.android.StripeApiBeta.code","location":"payments-core/com.stripe.android/-stripe-api-beta/code.html","searchKeys":["code","val code: String","com.stripe.android.StripeApiBeta.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.Company.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.Company.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.Individual.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.code","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.AmericanExpress.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.DinersClub.code","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.DinersClub.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Discover.code","location":"payments-core/com.stripe.android.model/-card-brand/-discover/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Discover.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.JCB.code","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.JCB.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.MasterCard.code","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.MasterCard.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.UnionPay.code","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.UnionPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Unknown.code","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Unknown.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Visa.code","location":"payments-core/com.stripe.android.model/-card-brand/-visa/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Visa.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.code","location":"payments-core/com.stripe.android.model/-card-brand/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.CardError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Alipay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.BacsDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Bancontact.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Blik.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Blik.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Card.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Card.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.CardPresent.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Eps.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Eps.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Fpx.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Giropay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.GrabPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Ideal.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Netbanking.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Oxxo.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.P24.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.P24.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.PayPal.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.SepaDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Sofort.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Upi.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Upi.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.WeChatPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.ApiError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.CardError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Canceled.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Canceled.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Processing.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Processing.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresAction.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresCapture.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Succeeded.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OffSession.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OnSession.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OneTime.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.code"]},{"name":"val code: String?","description":"com.stripe.android.exception.CardException.code","location":"payments-core/com.stripe.android.exception/-card-exception/code.html","searchKeys":["code","val code: String?","com.stripe.android.exception.CardException.code"]},{"name":"val code: String?","description":"com.stripe.android.model.PaymentIntent.Error.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/code.html","searchKeys":["code","val code: String?","com.stripe.android.model.PaymentIntent.Error.code"]},{"name":"val code: String?","description":"com.stripe.android.model.SetupIntent.Error.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/code.html","searchKeys":["code","val code: String?","com.stripe.android.model.SetupIntent.Error.code"]},{"name":"val code: String? = null","description":"com.stripe.android.StripeError.code","location":"payments-core/com.stripe.android/-stripe-error/code.html","searchKeys":["code","val code: String? = null","com.stripe.android.StripeError.code"]},{"name":"val codeVerification: Source.CodeVerification? = null","description":"com.stripe.android.model.Source.codeVerification","location":"payments-core/com.stripe.android.model/-source/code-verification.html","searchKeys":["codeVerification","val codeVerification: Source.CodeVerification? = null","com.stripe.android.model.Source.codeVerification"]},{"name":"val confirmationMethod: PaymentIntent.ConfirmationMethod","description":"com.stripe.android.model.PaymentIntent.confirmationMethod","location":"payments-core/com.stripe.android.model/-payment-intent/confirmation-method.html","searchKeys":["confirmationMethod","val confirmationMethod: PaymentIntent.ConfirmationMethod","com.stripe.android.model.PaymentIntent.confirmationMethod"]},{"name":"val country: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.country","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.PaymentMethod.SepaDebit.country"]},{"name":"val country: String?","description":"com.stripe.android.model.PaymentMethod.Sofort.country","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.PaymentMethod.Sofort.country"]},{"name":"val country: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.country","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.Address.country","location":"payments-core/com.stripe.android.model/-address/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.Address.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.AddressJapanParams.country","location":"payments-core/com.stripe.android.model/-address-japan-params/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.AddressJapanParams.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.Card.country","location":"payments-core/com.stripe.android.model/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.Card.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.country","location":"payments-core/com.stripe.android.model/-payment-method/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.PaymentMethod.Card.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.country","location":"payments-core/com.stripe.android.model/-source-type-model/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.SourceTypeModel.Card.country"]},{"name":"val countryCode: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.countryCode","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html","searchKeys":["countryCode","val countryCode: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.countryCode"]},{"name":"val countryCode: String? = null","description":"com.stripe.android.model.BankAccount.countryCode","location":"payments-core/com.stripe.android.model/-bank-account/country-code.html","searchKeys":["countryCode","val countryCode: String? = null","com.stripe.android.model.BankAccount.countryCode"]},{"name":"val created: Date","description":"com.stripe.android.model.Token.created","location":"payments-core/com.stripe.android.model/-token/created.html","searchKeys":["created","val created: Date","com.stripe.android.model.Token.created"]},{"name":"val created: Long?","description":"com.stripe.android.model.PaymentMethod.created","location":"payments-core/com.stripe.android.model/-payment-method/created.html","searchKeys":["created","val created: Long?","com.stripe.android.model.PaymentMethod.created"]},{"name":"val created: Long? = null","description":"com.stripe.android.model.Source.created","location":"payments-core/com.stripe.android.model/-source/created.html","searchKeys":["created","val created: Long? = null","com.stripe.android.model.Source.created"]},{"name":"val created: Long? = null","description":"com.stripe.android.model.StripeFile.created","location":"payments-core/com.stripe.android.model/-stripe-file/created.html","searchKeys":["created","val created: Long? = null","com.stripe.android.model.StripeFile.created"]},{"name":"val currency: Currency","description":"com.stripe.android.model.ShippingMethod.currency","location":"payments-core/com.stripe.android.model/-shipping-method/currency.html","searchKeys":["currency","val currency: Currency","com.stripe.android.model.ShippingMethod.currency"]},{"name":"val currency: String?","description":"com.stripe.android.model.PaymentIntent.currency","location":"payments-core/com.stripe.android.model/-payment-intent/currency.html","searchKeys":["currency","val currency: String?","com.stripe.android.model.PaymentIntent.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.BankAccount.currency","location":"payments-core/com.stripe.android.model/-bank-account/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.BankAccount.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.Card.currency","location":"payments-core/com.stripe.android.model/-card/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.Card.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.Source.currency","location":"payments-core/com.stripe.android.model/-source/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.Source.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrder.Item.currency","location":"payments-core/com.stripe.android.model/-source-order/-item/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrder.Item.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrder.currency","location":"payments-core/com.stripe.android.model/-source-order/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrder.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.currency","location":"payments-core/com.stripe.android.model/-source-order-params/-item/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrderParams.Item.currency"]},{"name":"val customPaymentMethods: Set","description":"com.stripe.android.model.KlarnaSourceParams.customPaymentMethods","location":"payments-core/com.stripe.android.model/-klarna-source-params/custom-payment-methods.html","searchKeys":["customPaymentMethods","val customPaymentMethods: Set","com.stripe.android.model.KlarnaSourceParams.customPaymentMethods"]},{"name":"val customPaymentMethods: Set","description":"com.stripe.android.model.Source.Klarna.customPaymentMethods","location":"payments-core/com.stripe.android.model/-source/-klarna/custom-payment-methods.html","searchKeys":["customPaymentMethods","val customPaymentMethods: Set","com.stripe.android.model.Source.Klarna.customPaymentMethods"]},{"name":"val customerId: String? = null","description":"com.stripe.android.model.Card.customerId","location":"payments-core/com.stripe.android.model/-card/customer-id.html","searchKeys":["customerId","val customerId: String? = null","com.stripe.android.model.Card.customerId"]},{"name":"val customerId: String? = null","description":"com.stripe.android.model.PaymentMethod.customerId","location":"payments-core/com.stripe.android.model/-payment-method/customer-id.html","searchKeys":["customerId","val customerId: String? = null","com.stripe.android.model.PaymentMethod.customerId"]},{"name":"val cvcCheck: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.cvcCheck","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String?","com.stripe.android.model.PaymentMethod.Card.Checks.cvcCheck"]},{"name":"val cvcCheck: String? = null","description":"com.stripe.android.model.Card.cvcCheck","location":"payments-core/com.stripe.android.model/-card/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String? = null","com.stripe.android.model.Card.cvcCheck"]},{"name":"val cvcCheck: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.cvcCheck","location":"payments-core/com.stripe.android.model/-source-type-model/-card/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String? = null","com.stripe.android.model.SourceTypeModel.Card.cvcCheck"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.AmericanExpress.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.DinersClub.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Discover.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Discover.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.JCB.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.JCB.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.MasterCard.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.UnionPay.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Unknown.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Unknown.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Visa.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Visa.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.cvcIcon"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.AmericanExpress.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.AmericanExpress.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.DinersClub.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.DinersClub.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Discover.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-discover/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Discover.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.JCB.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.JCB.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.MasterCard.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.MasterCard.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.UnionPay.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.UnionPay.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Unknown.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Unknown.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Visa.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-visa/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Visa.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.cvcLength"]},{"name":"val dateOfBirth: DateOfBirth? = null","description":"com.stripe.android.model.PersonTokenParams.dateOfBirth","location":"payments-core/com.stripe.android.model/-person-token-params/date-of-birth.html","searchKeys":["dateOfBirth","val dateOfBirth: DateOfBirth? = null","com.stripe.android.model.PersonTokenParams.dateOfBirth"]},{"name":"val day: Int","description":"com.stripe.android.model.DateOfBirth.day","location":"payments-core/com.stripe.android.model/-date-of-birth/day.html","searchKeys":["day","val day: Int","com.stripe.android.model.DateOfBirth.day"]},{"name":"val declineCode: String?","description":"com.stripe.android.exception.CardException.declineCode","location":"payments-core/com.stripe.android.exception/-card-exception/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.exception.CardException.declineCode"]},{"name":"val declineCode: String?","description":"com.stripe.android.model.PaymentIntent.Error.declineCode","location":"payments-core/com.stripe.android.model/-payment-intent/-error/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.model.PaymentIntent.Error.declineCode"]},{"name":"val declineCode: String?","description":"com.stripe.android.model.SetupIntent.Error.declineCode","location":"payments-core/com.stripe.android.model/-setup-intent/-error/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.model.SetupIntent.Error.declineCode"]},{"name":"val declineCode: String? = null","description":"com.stripe.android.StripeError.declineCode","location":"payments-core/com.stripe.android/-stripe-error/decline-code.html","searchKeys":["declineCode","val declineCode: String? = null","com.stripe.android.StripeError.declineCode"]},{"name":"val defaultErrorColorInt: Int","description":"com.stripe.android.view.StripeEditText.defaultErrorColorInt","location":"payments-core/com.stripe.android.view/-stripe-edit-text/default-error-color-int.html","searchKeys":["defaultErrorColorInt","val defaultErrorColorInt: Int","com.stripe.android.view.StripeEditText.defaultErrorColorInt"]},{"name":"val defaultSource: String?","description":"com.stripe.android.model.Customer.defaultSource","location":"payments-core/com.stripe.android.model/-customer/default-source.html","searchKeys":["defaultSource","val defaultSource: String?","com.stripe.android.model.Customer.defaultSource"]},{"name":"val description: String?","description":"com.stripe.android.model.Customer.description","location":"payments-core/com.stripe.android.model/-customer/description.html","searchKeys":["description","val description: String?","com.stripe.android.model.Customer.description"]},{"name":"val description: String? = null","description":"com.stripe.android.model.SourceOrder.Item.description","location":"payments-core/com.stripe.android.model/-source-order/-item/description.html","searchKeys":["description","val description: String? = null","com.stripe.android.model.SourceOrder.Item.description"]},{"name":"val description: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.description","location":"payments-core/com.stripe.android.model/-source-order-params/-item/description.html","searchKeys":["description","val description: String? = null","com.stripe.android.model.SourceOrderParams.Item.description"]},{"name":"val detail: String? = null","description":"com.stripe.android.model.ShippingMethod.detail","location":"payments-core/com.stripe.android.model/-shipping-method/detail.html","searchKeys":["detail","val detail: String? = null","com.stripe.android.model.ShippingMethod.detail"]},{"name":"val director: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.director","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/director.html","searchKeys":["director","val director: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.director"]},{"name":"val directoryServerId: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.directoryServerId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/directory-server-id.html","searchKeys":["directoryServerId","val directoryServerId: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.directoryServerId"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.AmericanExpress.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.DinersClub.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.DinersClub.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Discover.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-discover/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Discover.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.JCB.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.JCB.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.MasterCard.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.MasterCard.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.UnionPay.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.UnionPay.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Unknown.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Unknown.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Visa.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-visa/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Visa.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.displayName","location":"payments-core/com.stripe.android.model/-card-brand/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.displayName"]},{"name":"val docUrl: String?","description":"com.stripe.android.model.PaymentIntent.Error.docUrl","location":"payments-core/com.stripe.android.model/-payment-intent/-error/doc-url.html","searchKeys":["docUrl","val docUrl: String?","com.stripe.android.model.PaymentIntent.Error.docUrl"]},{"name":"val docUrl: String?","description":"com.stripe.android.model.SetupIntent.Error.docUrl","location":"payments-core/com.stripe.android.model/-setup-intent/-error/doc-url.html","searchKeys":["docUrl","val docUrl: String?","com.stripe.android.model.SetupIntent.Error.docUrl"]},{"name":"val docUrl: String? = null","description":"com.stripe.android.StripeError.docUrl","location":"payments-core/com.stripe.android/-stripe-error/doc-url.html","searchKeys":["docUrl","val docUrl: String? = null","com.stripe.android.StripeError.docUrl"]},{"name":"val document: PersonTokenParams.Document? = null","description":"com.stripe.android.model.PersonTokenParams.Verification.document","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/document.html","searchKeys":["document","val document: PersonTokenParams.Document? = null","com.stripe.android.model.PersonTokenParams.Verification.document"]},{"name":"val drawableResourceId: Int","description":"com.stripe.android.paymentsheet.model.PaymentOption.drawableResourceId","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/drawable-resource-id.html","searchKeys":["drawableResourceId","val drawableResourceId: Int","com.stripe.android.paymentsheet.model.PaymentOption.drawableResourceId"]},{"name":"val dsCertificateData: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.dsCertificateData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/ds-certificate-data.html","searchKeys":["dsCertificateData","val dsCertificateData: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.dsCertificateData"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-amex-express-checkout-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.ApplePayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-apple-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.ApplePayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.GooglePayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-google-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.GooglePayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.SamsungPayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-samsung-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.SamsungPayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.dynamicLast4"]},{"name":"val dynamicLast4: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.dynamicLast4","location":"payments-core/com.stripe.android.model/-source-type-model/-card/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String? = null","com.stripe.android.model.SourceTypeModel.Card.dynamicLast4"]},{"name":"val email: String?","description":"com.stripe.android.model.Customer.email","location":"payments-core/com.stripe.android.model/-customer/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.Customer.email"]},{"name":"val email: String?","description":"com.stripe.android.model.Source.Owner.email","location":"payments-core/com.stripe.android.model/-source/-owner/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.Source.Owner.email"]},{"name":"val email: String?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.email","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.email"]},{"name":"val email: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.email","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.GooglePayResult.email","location":"payments-core/com.stripe.android.model/-google-pay-result/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.GooglePayResult.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.email","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.PersonTokenParams.email","location":"payments-core/com.stripe.android.model/-person-token-params/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.PersonTokenParams.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.SourceOrder.email","location":"payments-core/com.stripe.android.model/-source-order/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.SourceOrder.email"]},{"name":"val environment: GooglePayEnvironment","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.environment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/environment.html","searchKeys":["environment","val environment: GooglePayEnvironment","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.environment"]},{"name":"val environment: GooglePayEnvironment","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.environment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/environment.html","searchKeys":["environment","val environment: GooglePayEnvironment","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.environment"]},{"name":"val environment: PaymentSheet.GooglePayConfiguration.Environment","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.environment","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/environment.html","searchKeys":["environment","val environment: PaymentSheet.GooglePayConfiguration.Environment","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.environment"]},{"name":"val ephemeralKeySecret: String","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.ephemeralKeySecret","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/ephemeral-key-secret.html","searchKeys":["ephemeralKeySecret","val ephemeralKeySecret: String","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.ephemeralKeySecret"]},{"name":"val error: Throwable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.error","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.error"]},{"name":"val error: Throwable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.error","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.error"]},{"name":"val error: Throwable","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.error","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.error"]},{"name":"val error: Throwable","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed.error","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.paymentsheet.PaymentSheetResult.Failed.error"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.AmericanExpress.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.DinersClub.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Discover.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Discover.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.JCB.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.JCB.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.MasterCard.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.UnionPay.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Unknown.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Unknown.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Visa.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Visa.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.errorIcon"]},{"name":"val exception: StripeException? = null","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.exception","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/exception.html","searchKeys":["exception","val exception: StripeException? = null","com.stripe.android.payments.PaymentFlowResult.Unvalidated.exception"]},{"name":"val exception: Throwable","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure.exception","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-failure/exception.html","searchKeys":["exception","val exception: Throwable","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure.exception"]},{"name":"val executive: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.executive","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/executive.html","searchKeys":["executive","val executive: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.executive"]},{"name":"val expMonth: Int?","description":"com.stripe.android.model.Card.expMonth","location":"payments-core/com.stripe.android.model/-card/exp-month.html","searchKeys":["expMonth","val expMonth: Int?","com.stripe.android.model.Card.expMonth"]},{"name":"val expYear: Int?","description":"com.stripe.android.model.Card.expYear","location":"payments-core/com.stripe.android.model/-card/exp-year.html","searchKeys":["expYear","val expYear: Int?","com.stripe.android.model.Card.expYear"]},{"name":"val expiresAfter: Int = 0","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.expiresAfter","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/expires-after.html","searchKeys":["expiresAfter","val expiresAfter: Int = 0","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.expiresAfter"]},{"name":"val expiryMonth: Int? = null","description":"com.stripe.android.model.PaymentMethod.Card.expiryMonth","location":"payments-core/com.stripe.android.model/-payment-method/-card/expiry-month.html","searchKeys":["expiryMonth","val expiryMonth: Int? = null","com.stripe.android.model.PaymentMethod.Card.expiryMonth"]},{"name":"val expiryMonth: Int? = null","description":"com.stripe.android.model.SourceTypeModel.Card.expiryMonth","location":"payments-core/com.stripe.android.model/-source-type-model/-card/expiry-month.html","searchKeys":["expiryMonth","val expiryMonth: Int? = null","com.stripe.android.model.SourceTypeModel.Card.expiryMonth"]},{"name":"val expiryYear: Int? = null","description":"com.stripe.android.model.PaymentMethod.Card.expiryYear","location":"payments-core/com.stripe.android.model/-payment-method/-card/expiry-year.html","searchKeys":["expiryYear","val expiryYear: Int? = null","com.stripe.android.model.PaymentMethod.Card.expiryYear"]},{"name":"val expiryYear: Int? = null","description":"com.stripe.android.model.SourceTypeModel.Card.expiryYear","location":"payments-core/com.stripe.android.model/-source-type-model/-card/expiry-year.html","searchKeys":["expiryYear","val expiryYear: Int? = null","com.stripe.android.model.SourceTypeModel.Card.expiryYear"]},{"name":"val filename: String? = null","description":"com.stripe.android.model.StripeFile.filename","location":"payments-core/com.stripe.android.model/-stripe-file/filename.html","searchKeys":["filename","val filename: String? = null","com.stripe.android.model.StripeFile.filename"]},{"name":"val fingerPrint: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.fingerPrint","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/finger-print.html","searchKeys":["fingerPrint","val fingerPrint: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.fingerPrint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.fingerprint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.BacsDebit.fingerprint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.SepaDebit.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.BankAccount.fingerprint","location":"payments-core/com.stripe.android.model/-bank-account/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.BankAccount.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.Card.fingerprint","location":"payments-core/com.stripe.android.model/-card/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.Card.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-card/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.PaymentMethod.Card.fingerprint"]},{"name":"val firstName: String?","description":"com.stripe.android.model.Source.Klarna.firstName","location":"payments-core/com.stripe.android.model/-source/-klarna/first-name.html","searchKeys":["firstName","val firstName: String?","com.stripe.android.model.Source.Klarna.firstName"]},{"name":"val firstName: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstName","location":"payments-core/com.stripe.android.model/-person-token-params/first-name.html","searchKeys":["firstName","val firstName: String? = null","com.stripe.android.model.PersonTokenParams.firstName"]},{"name":"val firstNameKana: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/first-name-kana.html","searchKeys":["firstNameKana","val firstNameKana: String? = null","com.stripe.android.model.PersonTokenParams.firstNameKana"]},{"name":"val firstNameKanji: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/first-name-kanji.html","searchKeys":["firstNameKanji","val firstNameKanji: String? = null","com.stripe.android.model.PersonTokenParams.firstNameKanji"]},{"name":"val flow: Source.Flow? = null","description":"com.stripe.android.model.Source.flow","location":"payments-core/com.stripe.android.model/-source/flow.html","searchKeys":["flow","val flow: Source.Flow? = null","com.stripe.android.model.Source.flow"]},{"name":"val flowOutcome: Int","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.flowOutcome","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/flow-outcome.html","searchKeys":["flowOutcome","val flowOutcome: Int","com.stripe.android.payments.PaymentFlowResult.Unvalidated.flowOutcome"]},{"name":"val format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/format.html","searchKeys":["format","val format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.format"]},{"name":"val fpx: PaymentMethod.Fpx? = null","description":"com.stripe.android.model.PaymentMethod.fpx","location":"payments-core/com.stripe.android.model/-payment-method/fpx.html","searchKeys":["fpx","val fpx: PaymentMethod.Fpx? = null","com.stripe.android.model.PaymentMethod.fpx"]},{"name":"val front: String? = null","description":"com.stripe.android.model.PersonTokenParams.Document.front","location":"payments-core/com.stripe.android.model/-person-token-params/-document/front.html","searchKeys":["front","val front: String? = null","com.stripe.android.model.PersonTokenParams.Document.front"]},{"name":"val funding: CardFunding? = null","description":"com.stripe.android.model.Card.funding","location":"payments-core/com.stripe.android.model/-card/funding.html","searchKeys":["funding","val funding: CardFunding? = null","com.stripe.android.model.Card.funding"]},{"name":"val funding: CardFunding? = null","description":"com.stripe.android.model.SourceTypeModel.Card.funding","location":"payments-core/com.stripe.android.model/-source-type-model/-card/funding.html","searchKeys":["funding","val funding: CardFunding? = null","com.stripe.android.model.SourceTypeModel.Card.funding"]},{"name":"val funding: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.funding","location":"payments-core/com.stripe.android.model/-payment-method/-card/funding.html","searchKeys":["funding","val funding: String? = null","com.stripe.android.model.PaymentMethod.Card.funding"]},{"name":"val gender: String? = null","description":"com.stripe.android.model.PersonTokenParams.gender","location":"payments-core/com.stripe.android.model/-person-token-params/gender.html","searchKeys":["gender","val gender: String? = null","com.stripe.android.model.PersonTokenParams.gender"]},{"name":"val googlePayConfig: PaymentSheet.GooglePayConfiguration?","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.googlePayConfig","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/google-pay-config.html","searchKeys":["googlePayConfig","val googlePayConfig: PaymentSheet.GooglePayConfiguration?","com.stripe.android.paymentsheet.PaymentSheetContract.Args.googlePayConfig"]},{"name":"val hasMore: Boolean","description":"com.stripe.android.model.Customer.hasMore","location":"payments-core/com.stripe.android.model/-customer/has-more.html","searchKeys":["hasMore","val hasMore: Boolean","com.stripe.android.model.Customer.hasMore"]},{"name":"val hiddenShippingInfoFields: List","description":"com.stripe.android.PaymentSessionConfig.hiddenShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/hidden-shipping-info-fields.html","searchKeys":["hiddenShippingInfoFields","val hiddenShippingInfoFields: List","com.stripe.android.PaymentSessionConfig.hiddenShippingInfoFields"]},{"name":"val hostedVoucherUrl: String? = null","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.hostedVoucherUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/hosted-voucher-url.html","searchKeys":["hostedVoucherUrl","val hostedVoucherUrl: String? = null","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.hostedVoucherUrl"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.icon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.AmericanExpress.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.icon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.DinersClub.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Discover.icon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Discover.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.JCB.icon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.JCB.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.icon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.MasterCard.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.icon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.UnionPay.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Unknown.icon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Unknown.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Visa.icon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Visa.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.icon","location":"payments-core/com.stripe.android.model/-card-brand/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.icon"]},{"name":"val id: String","description":"com.stripe.android.model.RadarSession.id","location":"payments-core/com.stripe.android.model/-radar-session/id.html","searchKeys":["id","val id: String","com.stripe.android.model.RadarSession.id"]},{"name":"val id: String","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.id","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/id.html","searchKeys":["id","val id: String","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.id"]},{"name":"val id: String?","description":"com.stripe.android.model.Customer.id","location":"payments-core/com.stripe.android.model/-customer/id.html","searchKeys":["id","val id: String?","com.stripe.android.model.Customer.id"]},{"name":"val id: String?","description":"com.stripe.android.model.PaymentMethod.id","location":"payments-core/com.stripe.android.model/-payment-method/id.html","searchKeys":["id","val id: String?","com.stripe.android.model.PaymentMethod.id"]},{"name":"val id: String? = null","description":"com.stripe.android.model.StripeFile.id","location":"payments-core/com.stripe.android.model/-stripe-file/id.html","searchKeys":["id","val id: String? = null","com.stripe.android.model.StripeFile.id"]},{"name":"val idNumber: String? = null","description":"com.stripe.android.model.PersonTokenParams.idNumber","location":"payments-core/com.stripe.android.model/-person-token-params/id-number.html","searchKeys":["idNumber","val idNumber: String? = null","com.stripe.android.model.PersonTokenParams.idNumber"]},{"name":"val ideal: PaymentMethod.Ideal? = null","description":"com.stripe.android.model.PaymentMethod.ideal","location":"payments-core/com.stripe.android.model/-payment-method/ideal.html","searchKeys":["ideal","val ideal: PaymentMethod.Ideal? = null","com.stripe.android.model.PaymentMethod.ideal"]},{"name":"val identifier: String","description":"com.stripe.android.model.ShippingMethod.identifier","location":"payments-core/com.stripe.android.model/-shipping-method/identifier.html","searchKeys":["identifier","val identifier: String","com.stripe.android.model.ShippingMethod.identifier"]},{"name":"val isGooglePayEnabled: Boolean","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.isGooglePayEnabled","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/is-google-pay-enabled.html","searchKeys":["isGooglePayEnabled","val isGooglePayEnabled: Boolean","com.stripe.android.paymentsheet.PaymentSheetContract.Args.isGooglePayEnabled"]},{"name":"val isLiveMode: Boolean? = null","description":"com.stripe.android.model.Source.isLiveMode","location":"payments-core/com.stripe.android.model/-source/is-live-mode.html","searchKeys":["isLiveMode","val isLiveMode: Boolean? = null","com.stripe.android.model.Source.isLiveMode"]},{"name":"val isPaymentReadyToCharge: Boolean","description":"com.stripe.android.PaymentSessionData.isPaymentReadyToCharge","location":"payments-core/com.stripe.android/-payment-session-data/is-payment-ready-to-charge.html","searchKeys":["isPaymentReadyToCharge","val isPaymentReadyToCharge: Boolean","com.stripe.android.PaymentSessionData.isPaymentReadyToCharge"]},{"name":"val isPhoneNumberRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isPhoneNumberRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/is-phone-number-required.html","searchKeys":["isPhoneNumberRequired","val isPhoneNumberRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isPhoneNumberRequired"]},{"name":"val isRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/is-required.html","searchKeys":["isRequired","val isRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isRequired"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.isReusable"]},{"name":"val isShippingInfoRequired: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.isShippingInfoRequired","location":"payments-core/com.stripe.android/-payment-session-config/is-shipping-info-required.html","searchKeys":["isShippingInfoRequired","val isShippingInfoRequired: Boolean = false","com.stripe.android.PaymentSessionConfig.isShippingInfoRequired"]},{"name":"val isShippingMethodRequired: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.isShippingMethodRequired","location":"payments-core/com.stripe.android/-payment-session-config/is-shipping-method-required.html","searchKeys":["isShippingMethodRequired","val isShippingMethodRequired: Boolean = false","com.stripe.android.PaymentSessionConfig.isShippingMethodRequired"]},{"name":"val isSupported: Boolean","description":"com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage.isSupported","location":"payments-core/com.stripe.android.model/-payment-method/-card/-three-d-secure-usage/is-supported.html","searchKeys":["isSupported","val isSupported: Boolean","com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage.isSupported"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.isVoucher"]},{"name":"val itemDescription: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.itemDescription","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/item-description.html","searchKeys":["itemDescription","val itemDescription: String","com.stripe.android.model.KlarnaSourceParams.LineItem.itemDescription"]},{"name":"val itemType: KlarnaSourceParams.LineItem.Type","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.itemType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/item-type.html","searchKeys":["itemType","val itemType: KlarnaSourceParams.LineItem.Type","com.stripe.android.model.KlarnaSourceParams.LineItem.itemType"]},{"name":"val items: List","description":"com.stripe.android.model.SourceOrder.items","location":"payments-core/com.stripe.android.model/-source-order/items.html","searchKeys":["items","val items: List","com.stripe.android.model.SourceOrder.items"]},{"name":"val items: List? = null","description":"com.stripe.android.model.SourceOrderParams.items","location":"payments-core/com.stripe.android.model/-source-order-params/items.html","searchKeys":["items","val items: List? = null","com.stripe.android.model.SourceOrderParams.items"]},{"name":"val keyId: String?","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.keyId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/key-id.html","searchKeys":["keyId","val keyId: String?","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.keyId"]},{"name":"val klarna: Source.Klarna","description":"com.stripe.android.model.Source.klarna","location":"payments-core/com.stripe.android.model/-source/klarna.html","searchKeys":["klarna","val klarna: Source.Klarna","com.stripe.android.model.Source.klarna"]},{"name":"val label: String","description":"com.stripe.android.model.ShippingMethod.label","location":"payments-core/com.stripe.android.model/-shipping-method/label.html","searchKeys":["label","val label: String","com.stripe.android.model.ShippingMethod.label"]},{"name":"val label: String","description":"com.stripe.android.paymentsheet.model.PaymentOption.label","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/label.html","searchKeys":["label","val label: String","com.stripe.android.paymentsheet.model.PaymentOption.label"]},{"name":"val last4: String","description":"com.stripe.android.model.CardParams.last4","location":"payments-core/com.stripe.android.model/-card-params/last4.html","searchKeys":["last4","val last4: String","com.stripe.android.model.CardParams.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.BacsDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.SepaDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.last4","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.BankAccount.last4","location":"payments-core/com.stripe.android.model/-bank-account/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.BankAccount.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.Card.last4","location":"payments-core/com.stripe.android.model/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.Card.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.last4","location":"payments-core/com.stripe.android.model/-payment-method/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.PaymentMethod.Card.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.last4","location":"payments-core/com.stripe.android.model/-source-type-model/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.SourceTypeModel.Card.last4"]},{"name":"val lastName: String?","description":"com.stripe.android.model.Source.Klarna.lastName","location":"payments-core/com.stripe.android.model/-source/-klarna/last-name.html","searchKeys":["lastName","val lastName: String?","com.stripe.android.model.Source.Klarna.lastName"]},{"name":"val lastName: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastName","location":"payments-core/com.stripe.android.model/-person-token-params/last-name.html","searchKeys":["lastName","val lastName: String? = null","com.stripe.android.model.PersonTokenParams.lastName"]},{"name":"val lastNameKana: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/last-name-kana.html","searchKeys":["lastNameKana","val lastNameKana: String? = null","com.stripe.android.model.PersonTokenParams.lastNameKana"]},{"name":"val lastNameKanji: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/last-name-kanji.html","searchKeys":["lastNameKanji","val lastNameKanji: String? = null","com.stripe.android.model.PersonTokenParams.lastNameKanji"]},{"name":"val lastPaymentError: PaymentIntent.Error? = null","description":"com.stripe.android.model.PaymentIntent.lastPaymentError","location":"payments-core/com.stripe.android.model/-payment-intent/last-payment-error.html","searchKeys":["lastPaymentError","val lastPaymentError: PaymentIntent.Error? = null","com.stripe.android.model.PaymentIntent.lastPaymentError"]},{"name":"val lastSetupError: SetupIntent.Error? = null","description":"com.stripe.android.model.SetupIntent.lastSetupError","location":"payments-core/com.stripe.android.model/-setup-intent/last-setup-error.html","searchKeys":["lastSetupError","val lastSetupError: SetupIntent.Error? = null","com.stripe.android.model.SetupIntent.lastSetupError"]},{"name":"val line1: String? = null","description":"com.stripe.android.model.Address.line1","location":"payments-core/com.stripe.android.model/-address/line1.html","searchKeys":["line1","val line1: String? = null","com.stripe.android.model.Address.line1"]},{"name":"val line1: String? = null","description":"com.stripe.android.model.AddressJapanParams.line1","location":"payments-core/com.stripe.android.model/-address-japan-params/line1.html","searchKeys":["line1","val line1: String? = null","com.stripe.android.model.AddressJapanParams.line1"]},{"name":"val line2: String? = null","description":"com.stripe.android.model.Address.line2","location":"payments-core/com.stripe.android.model/-address/line2.html","searchKeys":["line2","val line2: String? = null","com.stripe.android.model.Address.line2"]},{"name":"val line2: String? = null","description":"com.stripe.android.model.AddressJapanParams.line2","location":"payments-core/com.stripe.android.model/-address-japan-params/line2.html","searchKeys":["line2","val line2: String? = null","com.stripe.android.model.AddressJapanParams.line2"]},{"name":"val lineItems: List","description":"com.stripe.android.model.KlarnaSourceParams.lineItems","location":"payments-core/com.stripe.android.model/-klarna-source-params/line-items.html","searchKeys":["lineItems","val lineItems: List","com.stripe.android.model.KlarnaSourceParams.lineItems"]},{"name":"val liveMode: Boolean","description":"com.stripe.android.model.Customer.liveMode","location":"payments-core/com.stripe.android.model/-customer/live-mode.html","searchKeys":["liveMode","val liveMode: Boolean","com.stripe.android.model.Customer.liveMode"]},{"name":"val liveMode: Boolean","description":"com.stripe.android.model.PaymentMethod.liveMode","location":"payments-core/com.stripe.android.model/-payment-method/live-mode.html","searchKeys":["liveMode","val liveMode: Boolean","com.stripe.android.model.PaymentMethod.liveMode"]},{"name":"val livemode: Boolean","description":"com.stripe.android.model.Token.livemode","location":"payments-core/com.stripe.android.model/-token/livemode.html","searchKeys":["livemode","val livemode: Boolean","com.stripe.android.model.Token.livemode"]},{"name":"val logoUrl: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.logoUrl","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/logo-url.html","searchKeys":["logoUrl","val logoUrl: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.logoUrl"]},{"name":"val maidenName: String? = null","description":"com.stripe.android.model.PersonTokenParams.maidenName","location":"payments-core/com.stripe.android.model/-person-token-params/maiden-name.html","searchKeys":["maidenName","val maidenName: String? = null","com.stripe.android.model.PersonTokenParams.maidenName"]},{"name":"val mandateReference: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.mandateReference","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/mandate-reference.html","searchKeys":["mandateReference","val mandateReference: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.mandateReference"]},{"name":"val mandateUrl: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.mandateUrl","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/mandate-url.html","searchKeys":["mandateUrl","val mandateUrl: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.mandateUrl"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.AmericanExpress.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.DinersClub.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.DinersClub.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Discover.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-discover/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Discover.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.JCB.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.JCB.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.MasterCard.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.MasterCard.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.UnionPay.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.UnionPay.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Unknown.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Unknown.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Visa.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-visa/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Visa.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.maxCvcLength"]},{"name":"val merchantCountryCode: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantCountryCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/merchant-country-code.html","searchKeys":["merchantCountryCode","val merchantCountryCode: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantCountryCode"]},{"name":"val merchantCountryCode: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantCountryCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/merchant-country-code.html","searchKeys":["merchantCountryCode","val merchantCountryCode: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantCountryCode"]},{"name":"val merchantName: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantName","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/merchant-name.html","searchKeys":["merchantName","val merchantName: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantName"]},{"name":"val merchantName: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantName","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/merchant-name.html","searchKeys":["merchantName","val merchantName: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantName"]},{"name":"val message: String?","description":"com.stripe.android.model.PaymentIntent.Error.message","location":"payments-core/com.stripe.android.model/-payment-intent/-error/message.html","searchKeys":["message","val message: String?","com.stripe.android.model.PaymentIntent.Error.message"]},{"name":"val message: String?","description":"com.stripe.android.model.SetupIntent.Error.message","location":"payments-core/com.stripe.android.model/-setup-intent/-error/message.html","searchKeys":["message","val message: String?","com.stripe.android.model.SetupIntent.Error.message"]},{"name":"val message: String? = null","description":"com.stripe.android.StripeError.message","location":"payments-core/com.stripe.android/-stripe-error/message.html","searchKeys":["message","val message: String? = null","com.stripe.android.StripeError.message"]},{"name":"val metadata: Map? = null","description":"com.stripe.android.model.PersonTokenParams.metadata","location":"payments-core/com.stripe.android.model/-person-token-params/metadata.html","searchKeys":["metadata","val metadata: Map? = null","com.stripe.android.model.PersonTokenParams.metadata"]},{"name":"val month: Int","description":"com.stripe.android.model.DateOfBirth.month","location":"payments-core/com.stripe.android.model/-date-of-birth/month.html","searchKeys":["month","val month: Int","com.stripe.android.model.DateOfBirth.month"]},{"name":"val month: Int","description":"com.stripe.android.model.ExpirationDate.Validated.month","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/month.html","searchKeys":["month","val month: Int","com.stripe.android.model.ExpirationDate.Validated.month"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.name"]},{"name":"val name: String","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.name","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/name.html","searchKeys":["name","val name: String","com.stripe.android.StripeApiBeta.WeChatPayV1.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.model.AccountParams.BusinessType.Company.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.AccountParams.BusinessType.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.AccountParams.BusinessType.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Errored.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Errored.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.New.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.New.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Validated.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Validated.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.VerificationFailed.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Verified.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Verified.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Type.Company.name","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Type.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Type.Individual.name","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Type.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company.name","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccountTokenParams.Type.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual.name","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccountTokenParams.Type.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.name","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.AmericanExpress.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.DinersClub.name","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.DinersClub.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Discover.name","location":"payments-core/com.stripe.android.model/-card-brand/-discover/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Discover.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.JCB.name","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.JCB.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.MasterCard.name","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.MasterCard.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.UnionPay.name","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.UnionPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Unknown.name","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Visa.name","location":"payments-core/com.stripe.android.model/-card-brand/-visa/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Visa.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Credit.name","location":"payments-core/com.stripe.android.model/-card-funding/-credit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Credit.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Debit.name","location":"payments-core/com.stripe.android.model/-card-funding/-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Debit.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Prepaid.name","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Prepaid.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Unknown.name","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.name","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.name","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.name","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.name","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.CardError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Alipay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.BacsDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Bancontact.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Blik.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Blik.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Card.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Card.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.CardPresent.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Eps.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Eps.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Fpx.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Giropay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.GrabPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Ideal.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Netbanking.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Oxxo.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.P24.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.P24.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.PayPal.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.SepaDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Sofort.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Upi.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Upi.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.WeChatPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.ApiError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.CardError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.CodeVerification.name","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.CodeVerification.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.None.name","location":"payments-core/com.stripe.android.model/-source/-flow/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.None.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.Receiver.name","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.Receiver.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.Redirect.name","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.Redirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.NotRequired.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Canceled.name","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Canceled.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Chargeable.name","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Chargeable.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Consumed.name","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Consumed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Usage.Reusable.name","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Usage.Reusable.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Usage.SingleUse.name","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Usage.SingleUse.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.CodeVerification.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.None.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.None.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.Receiver.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.Receiver.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.Redirect.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.Redirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.BusinessIcon.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.BusinessLogo.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.CustomerSignature.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.DisputeEvidence.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.IdentityDocument.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.PciDocument.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.PciDocument.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Canceled.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Canceled.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Processing.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Processing.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresAction.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresCapture.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OffSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OnSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OneTime.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Account.name","location":"payments-core/com.stripe.android.model/-token/-type/-account/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Account.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.BankAccount.name","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.BankAccount.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Card.name","location":"payments-core/com.stripe.android.model/-token/-type/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Card.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.CvcUpdate.name","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.CvcUpdate.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Person.name","location":"payments-core/com.stripe.android.model/-token/-type/-person/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Person.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Pii.name","location":"payments-core/com.stripe.android.model/-token/-type/-pii/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Pii.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.ApplePay.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.ApplePay.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.GooglePay.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.GooglePay.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.Masterpass.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.Masterpass.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.VisaCheckout.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.name","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.name","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.Full.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.Full.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.None.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.None.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.PostalCode.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.CardNumber.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.Cvc.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Cvc.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Expiry.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Number.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Number.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Postal.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Postal.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.name"]},{"name":"val name: String?","description":"com.stripe.android.model.Source.Owner.name","location":"payments-core/com.stripe.android.model/-source/-owner/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.Source.Owner.name"]},{"name":"val name: String?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.name","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.name"]},{"name":"val name: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.name","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.Card.name","location":"payments-core/com.stripe.android.model/-card/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.Card.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.GooglePayResult.name","location":"payments-core/com.stripe.android.model/-google-pay-result/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.GooglePayResult.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.name","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.PaymentIntent.Shipping.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.name","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.ShippingInformation.name","location":"payments-core/com.stripe.android.model/-shipping-information/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.ShippingInformation.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.SourceOrder.Shipping.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.name"]},{"name":"val netbanking: PaymentMethod.Netbanking? = null","description":"com.stripe.android.model.PaymentMethod.netbanking","location":"payments-core/com.stripe.android.model/-payment-method/netbanking.html","searchKeys":["netbanking","val netbanking: PaymentMethod.Netbanking? = null","com.stripe.android.model.PaymentMethod.netbanking"]},{"name":"val nonce: String?","description":"com.stripe.android.model.WeChat.nonce","location":"payments-core/com.stripe.android.model/-we-chat/nonce.html","searchKeys":["nonce","val nonce: String?","com.stripe.android.model.WeChat.nonce"]},{"name":"val number: String? = null","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.number","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/number.html","searchKeys":["number","val number: String? = null","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.number"]},{"name":"val optionalShippingInfoFields: List","description":"com.stripe.android.PaymentSessionConfig.optionalShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/optional-shipping-info-fields.html","searchKeys":["optionalShippingInfoFields","val optionalShippingInfoFields: List","com.stripe.android.PaymentSessionConfig.optionalShippingInfoFields"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.ordinal","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.StripeApiBeta.WeChatPayV1.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.AccountParams.BusinessType.Company.ordinal","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.AccountParams.BusinessType.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.ordinal","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.AccountParams.BusinessType.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Errored.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Errored.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.New.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.New.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Validated.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Validated.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.VerificationFailed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Verified.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Verified.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Type.Company.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Type.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Type.Individual.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Type.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company.ordinal","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccountTokenParams.Type.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual.ordinal","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccountTokenParams.Type.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.AmericanExpress.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.DinersClub.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.DinersClub.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Discover.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-discover/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Discover.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.JCB.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.JCB.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.MasterCard.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.MasterCard.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.UnionPay.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.UnionPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Visa.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-visa/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Visa.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Credit.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-credit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Credit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Debit.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Debit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Prepaid.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Prepaid.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.ordinal","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.ordinal","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.CardError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Alipay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.BacsDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Bancontact.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Blik.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Blik.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Card.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.CardPresent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Eps.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Eps.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Fpx.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Giropay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.GrabPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Ideal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Netbanking.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Oxxo.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.P24.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.P24.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.PayPal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.SepaDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Sofort.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Upi.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Upi.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.WeChatPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.ApiError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.CardError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.CodeVerification.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.CodeVerification.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.None.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.Receiver.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.Receiver.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.Redirect.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.Redirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.NotRequired.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Canceled.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Canceled.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Chargeable.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Chargeable.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Consumed.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Consumed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Usage.Reusable.ordinal","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Usage.Reusable.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Usage.SingleUse.ordinal","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Usage.SingleUse.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.CodeVerification.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.None.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.Receiver.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.Receiver.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.Redirect.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.Redirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.BusinessIcon.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.BusinessLogo.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.CustomerSignature.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.DisputeEvidence.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.IdentityDocument.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.PciDocument.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.PciDocument.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Canceled.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Canceled.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Processing.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Processing.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresAction.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresCapture.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OffSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OnSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OneTime.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Account.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-account/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Account.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.BankAccount.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.BankAccount.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Card.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.CvcUpdate.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.CvcUpdate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Person.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-person/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Person.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Pii.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-pii/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Pii.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.ApplePay.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.ApplePay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.GooglePay.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.GooglePay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.Masterpass.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.Masterpass.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.VisaCheckout.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.ordinal","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.ordinal","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.Full.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.None.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.CardNumber.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.Cvc.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Cvc.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Expiry.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Number.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Number.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Postal.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Postal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.ordinal"]},{"name":"val outcome: Int","description":"com.stripe.android.StripeIntentResult.outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/outcome.html","searchKeys":["outcome","val outcome: Int","com.stripe.android.StripeIntentResult.outcome"]},{"name":"val owner: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.owner","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/owner.html","searchKeys":["owner","val owner: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.owner"]},{"name":"val owner: Source.Owner? = null","description":"com.stripe.android.model.Source.owner","location":"payments-core/com.stripe.android.model/-source/owner.html","searchKeys":["owner","val owner: Source.Owner? = null","com.stripe.android.model.Source.owner"]},{"name":"val packageValue: String?","description":"com.stripe.android.model.WeChat.packageValue","location":"payments-core/com.stripe.android.model/-we-chat/package-value.html","searchKeys":["packageValue","val packageValue: String?","com.stripe.android.model.WeChat.packageValue"]},{"name":"val pageOptions: KlarnaSourceParams.PaymentPageOptions? = null","description":"com.stripe.android.model.KlarnaSourceParams.pageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/page-options.html","searchKeys":["pageOptions","val pageOptions: KlarnaSourceParams.PaymentPageOptions? = null","com.stripe.android.model.KlarnaSourceParams.pageOptions"]},{"name":"val pageTitle: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.pageTitle","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/page-title.html","searchKeys":["pageTitle","val pageTitle: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.pageTitle"]},{"name":"val param: String?","description":"com.stripe.android.exception.CardException.param","location":"payments-core/com.stripe.android.exception/-card-exception/param.html","searchKeys":["param","val param: String?","com.stripe.android.exception.CardException.param"]},{"name":"val param: String?","description":"com.stripe.android.model.PaymentIntent.Error.param","location":"payments-core/com.stripe.android.model/-payment-intent/-error/param.html","searchKeys":["param","val param: String?","com.stripe.android.model.PaymentIntent.Error.param"]},{"name":"val param: String?","description":"com.stripe.android.model.SetupIntent.Error.param","location":"payments-core/com.stripe.android.model/-setup-intent/-error/param.html","searchKeys":["param","val param: String?","com.stripe.android.model.SetupIntent.Error.param"]},{"name":"val param: String? = null","description":"com.stripe.android.StripeError.param","location":"payments-core/com.stripe.android/-stripe-error/param.html","searchKeys":["param","val param: String? = null","com.stripe.android.StripeError.param"]},{"name":"val params: PaymentMethodCreateParams?","description":"com.stripe.android.view.BecsDebitWidget.params","location":"payments-core/com.stripe.android.view/-becs-debit-widget/params.html","searchKeys":["params","val params: PaymentMethodCreateParams?","com.stripe.android.view.BecsDebitWidget.params"]},{"name":"val parent: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.parent","location":"payments-core/com.stripe.android.model/-source-order-params/-item/parent.html","searchKeys":["parent","val parent: String? = null","com.stripe.android.model.SourceOrderParams.Item.parent"]},{"name":"val partnerId: String?","description":"com.stripe.android.model.WeChat.partnerId","location":"payments-core/com.stripe.android.model/-we-chat/partner-id.html","searchKeys":["partnerId","val partnerId: String?","com.stripe.android.model.WeChat.partnerId"]},{"name":"val payLaterAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payLaterAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-asset-urls-descriptive.html","searchKeys":["payLaterAssetUrlsDescriptive","val payLaterAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payLaterAssetUrlsDescriptive"]},{"name":"val payLaterAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payLaterAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-asset-urls-standard.html","searchKeys":["payLaterAssetUrlsStandard","val payLaterAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payLaterAssetUrlsStandard"]},{"name":"val payLaterName: String?","description":"com.stripe.android.model.Source.Klarna.payLaterName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-name.html","searchKeys":["payLaterName","val payLaterName: String?","com.stripe.android.model.Source.Klarna.payLaterName"]},{"name":"val payLaterRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payLaterRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-redirect-url.html","searchKeys":["payLaterRedirectUrl","val payLaterRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payLaterRedirectUrl"]},{"name":"val payNowAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payNowAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-asset-urls-descriptive.html","searchKeys":["payNowAssetUrlsDescriptive","val payNowAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payNowAssetUrlsDescriptive"]},{"name":"val payNowAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payNowAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-asset-urls-standard.html","searchKeys":["payNowAssetUrlsStandard","val payNowAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payNowAssetUrlsStandard"]},{"name":"val payNowName: String?","description":"com.stripe.android.model.Source.Klarna.payNowName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-name.html","searchKeys":["payNowName","val payNowName: String?","com.stripe.android.model.Source.Klarna.payNowName"]},{"name":"val payNowRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payNowRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-redirect-url.html","searchKeys":["payNowRedirectUrl","val payNowRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payNowRedirectUrl"]},{"name":"val payOverTimeAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-asset-urls-descriptive.html","searchKeys":["payOverTimeAssetUrlsDescriptive","val payOverTimeAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsDescriptive"]},{"name":"val payOverTimeAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-asset-urls-standard.html","searchKeys":["payOverTimeAssetUrlsStandard","val payOverTimeAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsStandard"]},{"name":"val payOverTimeName: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-name.html","searchKeys":["payOverTimeName","val payOverTimeName: String?","com.stripe.android.model.Source.Klarna.payOverTimeName"]},{"name":"val payOverTimeRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-redirect-url.html","searchKeys":["payOverTimeRedirectUrl","val payOverTimeRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payOverTimeRedirectUrl"]},{"name":"val paymentIntent: PaymentIntent","description":"com.stripe.android.model.WeChatPayNextAction.paymentIntent","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/payment-intent.html","searchKeys":["paymentIntent","val paymentIntent: PaymentIntent","com.stripe.android.model.WeChatPayNextAction.paymentIntent"]},{"name":"val paymentMethod: PaymentMethod","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.paymentMethod","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success.paymentMethod","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-success/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.PaymentIntent.Error.paymentMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-error/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod?","com.stripe.android.model.PaymentIntent.Error.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.SetupIntent.Error.paymentMethod","location":"payments-core/com.stripe.android.model/-setup-intent/-error/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod?","com.stripe.android.model.SetupIntent.Error.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.PaymentSessionData.paymentMethod","location":"payments-core/com.stripe.android/-payment-session-data/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod? = null","com.stripe.android.PaymentSessionData.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.paymentMethod","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod? = null","com.stripe.android.view.PaymentMethodsActivityStarter.Result.paymentMethod"]},{"name":"val paymentMethodBillingDetails: PaymentMethod.BillingDetails?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetails","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-billing-details.html","searchKeys":["paymentMethodBillingDetails","val paymentMethodBillingDetails: PaymentMethod.BillingDetails?","com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetails"]},{"name":"val paymentMethodBillingDetailsBuilder: PaymentMethod.BillingDetails.Builder?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetailsBuilder","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-billing-details-builder.html","searchKeys":["paymentMethodBillingDetailsBuilder","val paymentMethodBillingDetailsBuilder: PaymentMethod.BillingDetails.Builder?","com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetailsBuilder"]},{"name":"val paymentMethodCategories: Set","description":"com.stripe.android.model.Source.Klarna.paymentMethodCategories","location":"payments-core/com.stripe.android.model/-source/-klarna/payment-method-categories.html","searchKeys":["paymentMethodCategories","val paymentMethodCategories: Set","com.stripe.android.model.Source.Klarna.paymentMethodCategories"]},{"name":"val paymentMethodCreateParams: PaymentMethodCreateParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","val paymentMethodCreateParams: PaymentMethodCreateParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodCreateParams"]},{"name":"val paymentMethodId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-id.html","searchKeys":["paymentMethodId","val paymentMethodId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodId"]},{"name":"val paymentMethodTypes: List","description":"com.stripe.android.PaymentSessionConfig.paymentMethodTypes","location":"payments-core/com.stripe.android/-payment-session-config/payment-method-types.html","searchKeys":["paymentMethodTypes","val paymentMethodTypes: List","com.stripe.android.PaymentSessionConfig.paymentMethodTypes"]},{"name":"val paymentMethodsFooterLayoutId: Int","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.paymentMethodsFooterLayoutId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/payment-methods-footer-layout-id.html","searchKeys":["paymentMethodsFooterLayoutId","val paymentMethodsFooterLayoutId: Int","com.stripe.android.view.PaymentMethodsActivityStarter.Args.paymentMethodsFooterLayoutId"]},{"name":"val paymentMethodsFooterLayoutId: Int = 0","description":"com.stripe.android.PaymentSessionConfig.paymentMethodsFooterLayoutId","location":"payments-core/com.stripe.android/-payment-session-config/payment-methods-footer-layout-id.html","searchKeys":["paymentMethodsFooterLayoutId","val paymentMethodsFooterLayoutId: Int = 0","com.stripe.android.PaymentSessionConfig.paymentMethodsFooterLayoutId"]},{"name":"val percentOwnership: Int? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.percentOwnership","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/percent-ownership.html","searchKeys":["percentOwnership","val percentOwnership: Int? = null","com.stripe.android.model.PersonTokenParams.Relationship.percentOwnership"]},{"name":"val phone: String?","description":"com.stripe.android.model.Source.Owner.phone","location":"payments-core/com.stripe.android.model/-source/-owner/phone.html","searchKeys":["phone","val phone: String?","com.stripe.android.model.Source.Owner.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.phone","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PaymentIntent.Shipping.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.phone","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PersonTokenParams.phone","location":"payments-core/com.stripe.android.model/-person-token-params/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PersonTokenParams.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.ShippingInformation.phone","location":"payments-core/com.stripe.android.model/-shipping-information/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.ShippingInformation.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.phone","location":"payments-core/com.stripe.android.model/-source-order/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.SourceOrder.Shipping.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.phone","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.phone"]},{"name":"val phoneNumber: String? = null","description":"com.stripe.android.model.GooglePayResult.phoneNumber","location":"payments-core/com.stripe.android.model/-google-pay-result/phone-number.html","searchKeys":["phoneNumber","val phoneNumber: String? = null","com.stripe.android.model.GooglePayResult.phoneNumber"]},{"name":"val pin: String","description":"com.stripe.android.model.IssuingCardPin.pin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/pin.html","searchKeys":["pin","val pin: String","com.stripe.android.model.IssuingCardPin.pin"]},{"name":"val postalCode: String? = null","description":"com.stripe.android.model.Address.postalCode","location":"payments-core/com.stripe.android.model/-address/postal-code.html","searchKeys":["postalCode","val postalCode: String? = null","com.stripe.android.model.Address.postalCode"]},{"name":"val postalCode: String? = null","description":"com.stripe.android.model.AddressJapanParams.postalCode","location":"payments-core/com.stripe.android.model/-address-japan-params/postal-code.html","searchKeys":["postalCode","val postalCode: String? = null","com.stripe.android.model.AddressJapanParams.postalCode"]},{"name":"val preferred: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.Networks.preferred","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/preferred.html","searchKeys":["preferred","val preferred: String? = null","com.stripe.android.model.PaymentMethod.Card.Networks.preferred"]},{"name":"val prepayId: String?","description":"com.stripe.android.model.WeChat.prepayId","location":"payments-core/com.stripe.android.model/-we-chat/prepay-id.html","searchKeys":["prepayId","val prepayId: String?","com.stripe.android.model.WeChat.prepayId"]},{"name":"val prepopulatedShippingInfo: ShippingInformation? = null","description":"com.stripe.android.PaymentSessionConfig.prepopulatedShippingInfo","location":"payments-core/com.stripe.android/-payment-session-config/prepopulated-shipping-info.html","searchKeys":["prepopulatedShippingInfo","val prepopulatedShippingInfo: ShippingInformation? = null","com.stripe.android.PaymentSessionConfig.prepopulatedShippingInfo"]},{"name":"val publishableKey: String","description":"com.stripe.android.PaymentConfiguration.publishableKey","location":"payments-core/com.stripe.android/-payment-configuration/publishable-key.html","searchKeys":["publishableKey","val publishableKey: String","com.stripe.android.PaymentConfiguration.publishableKey"]},{"name":"val purchaseCountry: String","description":"com.stripe.android.model.KlarnaSourceParams.purchaseCountry","location":"payments-core/com.stripe.android.model/-klarna-source-params/purchase-country.html","searchKeys":["purchaseCountry","val purchaseCountry: String","com.stripe.android.model.KlarnaSourceParams.purchaseCountry"]},{"name":"val purchaseCountry: String?","description":"com.stripe.android.model.Source.Klarna.purchaseCountry","location":"payments-core/com.stripe.android.model/-source/-klarna/purchase-country.html","searchKeys":["purchaseCountry","val purchaseCountry: String?","com.stripe.android.model.Source.Klarna.purchaseCountry"]},{"name":"val purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.purchaseType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/purchase-type.html","searchKeys":["purchaseType","val purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.purchaseType"]},{"name":"val purpose: StripeFilePurpose? = null","description":"com.stripe.android.model.StripeFile.purpose","location":"payments-core/com.stripe.android.model/-stripe-file/purpose.html","searchKeys":["purpose","val purpose: StripeFilePurpose? = null","com.stripe.android.model.StripeFile.purpose"]},{"name":"val qrCodeUrl: String? = null","description":"com.stripe.android.model.WeChat.qrCodeUrl","location":"payments-core/com.stripe.android.model/-we-chat/qr-code-url.html","searchKeys":["qrCodeUrl","val qrCodeUrl: String? = null","com.stripe.android.model.WeChat.qrCodeUrl"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.quantity","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.KlarnaSourceParams.LineItem.quantity"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.SourceOrder.Item.quantity","location":"payments-core/com.stripe.android.model/-source-order/-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.SourceOrder.Item.quantity"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.SourceOrderParams.Item.quantity","location":"payments-core/com.stripe.android.model/-source-order-params/-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.SourceOrderParams.Item.quantity"]},{"name":"val receiptEmail: String? = null","description":"com.stripe.android.model.PaymentIntent.receiptEmail","location":"payments-core/com.stripe.android.model/-payment-intent/receipt-email.html","searchKeys":["receiptEmail","val receiptEmail: String? = null","com.stripe.android.model.PaymentIntent.receiptEmail"]},{"name":"val receiver: Source.Receiver? = null","description":"com.stripe.android.model.Source.receiver","location":"payments-core/com.stripe.android.model/-source/receiver.html","searchKeys":["receiver","val receiver: Source.Receiver? = null","com.stripe.android.model.Source.receiver"]},{"name":"val redirect: Source.Redirect? = null","description":"com.stripe.android.model.Source.redirect","location":"payments-core/com.stripe.android.model/-source/redirect.html","searchKeys":["redirect","val redirect: Source.Redirect? = null","com.stripe.android.model.Source.redirect"]},{"name":"val relationship: PersonTokenParams.Relationship? = null","description":"com.stripe.android.model.PersonTokenParams.relationship","location":"payments-core/com.stripe.android.model/-person-token-params/relationship.html","searchKeys":["relationship","val relationship: PersonTokenParams.Relationship? = null","com.stripe.android.model.PersonTokenParams.relationship"]},{"name":"val representative: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.representative","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/representative.html","searchKeys":["representative","val representative: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.representative"]},{"name":"val requestId: String? = null","description":"com.stripe.android.exception.StripeException.requestId","location":"payments-core/com.stripe.android.exception/-stripe-exception/request-id.html","searchKeys":["requestId","val requestId: String? = null","com.stripe.android.exception.StripeException.requestId"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.requiresMandate"]},{"name":"val returnUrl: String?","description":"com.stripe.android.model.Source.Redirect.returnUrl","location":"payments-core/com.stripe.android.model/-source/-redirect/return-url.html","searchKeys":["returnUrl","val returnUrl: String?","com.stripe.android.model.Source.Redirect.returnUrl"]},{"name":"val returnUrl: String?","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.returnUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/return-url.html","searchKeys":["returnUrl","val returnUrl: String?","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.returnUrl"]},{"name":"val rootCertsData: List","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.rootCertsData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/root-certs-data.html","searchKeys":["rootCertsData","val rootCertsData: List","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.rootCertsData"]},{"name":"val routingNumber: String? = null","description":"com.stripe.android.model.BankAccount.routingNumber","location":"payments-core/com.stripe.android.model/-bank-account/routing-number.html","searchKeys":["routingNumber","val routingNumber: String? = null","com.stripe.android.model.BankAccount.routingNumber"]},{"name":"val secret: String","description":"com.stripe.android.EphemeralKey.secret","location":"payments-core/com.stripe.android/-ephemeral-key/secret.html","searchKeys":["secret","val secret: String","com.stripe.android.EphemeralKey.secret"]},{"name":"val selectionMandatory: Boolean = false","description":"com.stripe.android.model.PaymentMethod.Card.Networks.selectionMandatory","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/selection-mandatory.html","searchKeys":["selectionMandatory","val selectionMandatory: Boolean = false","com.stripe.android.model.PaymentMethod.Card.Networks.selectionMandatory"]},{"name":"val sepaDebit: PaymentMethod.SepaDebit? = null","description":"com.stripe.android.model.PaymentMethod.sepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/sepa-debit.html","searchKeys":["sepaDebit","val sepaDebit: PaymentMethod.SepaDebit? = null","com.stripe.android.model.PaymentMethod.sepaDebit"]},{"name":"val serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/server-encryption.html","searchKeys":["serverEncryption","val serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverEncryption"]},{"name":"val serverName: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverName","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/server-name.html","searchKeys":["serverName","val serverName: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverName"]},{"name":"val shipping: PaymentIntent.Shipping? = null","description":"com.stripe.android.model.PaymentIntent.shipping","location":"payments-core/com.stripe.android.model/-payment-intent/shipping.html","searchKeys":["shipping","val shipping: PaymentIntent.Shipping? = null","com.stripe.android.model.PaymentIntent.shipping"]},{"name":"val shipping: SourceOrder.Shipping? = null","description":"com.stripe.android.model.SourceOrder.shipping","location":"payments-core/com.stripe.android.model/-source-order/shipping.html","searchKeys":["shipping","val shipping: SourceOrder.Shipping? = null","com.stripe.android.model.SourceOrder.shipping"]},{"name":"val shipping: SourceOrderParams.Shipping? = null","description":"com.stripe.android.model.SourceOrderParams.shipping","location":"payments-core/com.stripe.android.model/-source-order-params/shipping.html","searchKeys":["shipping","val shipping: SourceOrderParams.Shipping? = null","com.stripe.android.model.SourceOrderParams.shipping"]},{"name":"val shippingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.shippingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/shipping-address.html","searchKeys":["shippingAddress","val shippingAddress: Address?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.shippingAddress"]},{"name":"val shippingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.shippingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/shipping-address.html","searchKeys":["shippingAddress","val shippingAddress: Address?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.shippingAddress"]},{"name":"val shippingInformation: ShippingInformation?","description":"com.stripe.android.model.Customer.shippingInformation","location":"payments-core/com.stripe.android.model/-customer/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation?","com.stripe.android.model.Customer.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation?","description":"com.stripe.android.view.ShippingInfoWidget.shippingInformation","location":"payments-core/com.stripe.android.view/-shipping-info-widget/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation?","com.stripe.android.view.ShippingInfoWidget.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation? = null","description":"com.stripe.android.PaymentSessionData.shippingInformation","location":"payments-core/com.stripe.android/-payment-session-data/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation? = null","com.stripe.android.PaymentSessionData.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation? = null","description":"com.stripe.android.model.GooglePayResult.shippingInformation","location":"payments-core/com.stripe.android.model/-google-pay-result/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation? = null","com.stripe.android.model.GooglePayResult.shippingInformation"]},{"name":"val shippingMethod: ShippingMethod? = null","description":"com.stripe.android.PaymentSessionData.shippingMethod","location":"payments-core/com.stripe.android/-payment-session-data/shipping-method.html","searchKeys":["shippingMethod","val shippingMethod: ShippingMethod? = null","com.stripe.android.PaymentSessionData.shippingMethod"]},{"name":"val shippingTotal: Long = 0L","description":"com.stripe.android.PaymentSessionData.shippingTotal","location":"payments-core/com.stripe.android/-payment-session-data/shipping-total.html","searchKeys":["shippingTotal","val shippingTotal: Long = 0L","com.stripe.android.PaymentSessionData.shippingTotal"]},{"name":"val shouldShowGooglePay: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.shouldShowGooglePay","location":"payments-core/com.stripe.android/-payment-session-config/should-show-google-pay.html","searchKeys":["shouldShowGooglePay","val shouldShowGooglePay: Boolean = false","com.stripe.android.PaymentSessionConfig.shouldShowGooglePay"]},{"name":"val sign: String?","description":"com.stripe.android.model.WeChat.sign","location":"payments-core/com.stripe.android.model/-we-chat/sign.html","searchKeys":["sign","val sign: String?","com.stripe.android.model.WeChat.sign"]},{"name":"val size: Int? = null","description":"com.stripe.android.model.StripeFile.size","location":"payments-core/com.stripe.android.model/-stripe-file/size.html","searchKeys":["size","val size: Int? = null","com.stripe.android.model.StripeFile.size"]},{"name":"val sofort: PaymentMethod.Sofort? = null","description":"com.stripe.android.model.PaymentMethod.sofort","location":"payments-core/com.stripe.android.model/-payment-method/sofort.html","searchKeys":["sofort","val sofort: PaymentMethod.Sofort? = null","com.stripe.android.model.PaymentMethod.sofort"]},{"name":"val sortCode: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.sortCode","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/sort-code.html","searchKeys":["sortCode","val sortCode: String?","com.stripe.android.model.PaymentMethod.BacsDebit.sortCode"]},{"name":"val source: Source","description":"com.stripe.android.model.CustomerSource.source","location":"payments-core/com.stripe.android.model/-customer-source/source.html","searchKeys":["source","val source: Source","com.stripe.android.model.CustomerSource.source"]},{"name":"val source: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.source","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/source.html","searchKeys":["source","val source: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.source"]},{"name":"val sourceId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.sourceId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/source-id.html","searchKeys":["sourceId","val sourceId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.sourceId"]},{"name":"val sourceOrder: SourceOrder? = null","description":"com.stripe.android.model.Source.sourceOrder","location":"payments-core/com.stripe.android.model/-source/source-order.html","searchKeys":["sourceOrder","val sourceOrder: SourceOrder? = null","com.stripe.android.model.Source.sourceOrder"]},{"name":"val sourceParams: SourceParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.sourceParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/source-params.html","searchKeys":["sourceParams","val sourceParams: SourceParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.sourceParams"]},{"name":"val sourceTypeData: Map? = null","description":"com.stripe.android.model.Source.sourceTypeData","location":"payments-core/com.stripe.android.model/-source/source-type-data.html","searchKeys":["sourceTypeData","val sourceTypeData: Map? = null","com.stripe.android.model.Source.sourceTypeData"]},{"name":"val sourceTypeModel: SourceTypeModel? = null","description":"com.stripe.android.model.Source.sourceTypeModel","location":"payments-core/com.stripe.android.model/-source/source-type-model.html","searchKeys":["sourceTypeModel","val sourceTypeModel: SourceTypeModel? = null","com.stripe.android.model.Source.sourceTypeModel"]},{"name":"val sources: List","description":"com.stripe.android.model.Customer.sources","location":"payments-core/com.stripe.android.model/-customer/sources.html","searchKeys":["sources","val sources: List","com.stripe.android.model.Customer.sources"]},{"name":"val ssnLast4: String? = null","description":"com.stripe.android.model.PersonTokenParams.ssnLast4","location":"payments-core/com.stripe.android.model/-person-token-params/ssn-last4.html","searchKeys":["ssnLast4","val ssnLast4: String? = null","com.stripe.android.model.PersonTokenParams.ssnLast4"]},{"name":"val state: String? = null","description":"com.stripe.android.model.Address.state","location":"payments-core/com.stripe.android.model/-address/state.html","searchKeys":["state","val state: String? = null","com.stripe.android.model.Address.state"]},{"name":"val state: String? = null","description":"com.stripe.android.model.AddressJapanParams.state","location":"payments-core/com.stripe.android.model/-address-japan-params/state.html","searchKeys":["state","val state: String? = null","com.stripe.android.model.AddressJapanParams.state"]},{"name":"val statementDescriptor: String? = null","description":"com.stripe.android.model.Source.statementDescriptor","location":"payments-core/com.stripe.android.model/-source/statement-descriptor.html","searchKeys":["statementDescriptor","val statementDescriptor: String? = null","com.stripe.android.model.Source.statementDescriptor"]},{"name":"val statementDescriptor: String? = null","description":"com.stripe.android.model.WeChat.statementDescriptor","location":"payments-core/com.stripe.android.model/-we-chat/statement-descriptor.html","searchKeys":["statementDescriptor","val statementDescriptor: String? = null","com.stripe.android.model.WeChat.statementDescriptor"]},{"name":"val status: BankAccount.Status? = null","description":"com.stripe.android.model.BankAccount.status","location":"payments-core/com.stripe.android.model/-bank-account/status.html","searchKeys":["status","val status: BankAccount.Status? = null","com.stripe.android.model.BankAccount.status"]},{"name":"val status: Source.CodeVerification.Status?","description":"com.stripe.android.model.Source.CodeVerification.status","location":"payments-core/com.stripe.android.model/-source/-code-verification/status.html","searchKeys":["status","val status: Source.CodeVerification.Status?","com.stripe.android.model.Source.CodeVerification.status"]},{"name":"val status: Source.Redirect.Status?","description":"com.stripe.android.model.Source.Redirect.status","location":"payments-core/com.stripe.android.model/-source/-redirect/status.html","searchKeys":["status","val status: Source.Redirect.Status?","com.stripe.android.model.Source.Redirect.status"]},{"name":"val status: Source.Status? = null","description":"com.stripe.android.model.Source.status","location":"payments-core/com.stripe.android.model/-source/status.html","searchKeys":["status","val status: Source.Status? = null","com.stripe.android.model.Source.status"]},{"name":"val statusCode: Int = 0","description":"com.stripe.android.exception.StripeException.statusCode","location":"payments-core/com.stripe.android.exception/-stripe-exception/status-code.html","searchKeys":["statusCode","val statusCode: Int = 0","com.stripe.android.exception.StripeException.statusCode"]},{"name":"val stripeAccountId: String? = null","description":"com.stripe.android.PaymentConfiguration.stripeAccountId","location":"payments-core/com.stripe.android/-payment-configuration/stripe-account-id.html","searchKeys":["stripeAccountId","val stripeAccountId: String? = null","com.stripe.android.PaymentConfiguration.stripeAccountId"]},{"name":"val stripeError: StripeError? = null","description":"com.stripe.android.exception.StripeException.stripeError","location":"payments-core/com.stripe.android.exception/-stripe-exception/stripe-error.html","searchKeys":["stripeError","val stripeError: StripeError? = null","com.stripe.android.exception.StripeException.stripeError"]},{"name":"val threeDSecureStatus: SourceTypeModel.Card.ThreeDSecureStatus? = null","description":"com.stripe.android.model.SourceTypeModel.Card.threeDSecureStatus","location":"payments-core/com.stripe.android.model/-source-type-model/-card/three-d-secure-status.html","searchKeys":["threeDSecureStatus","val threeDSecureStatus: SourceTypeModel.Card.ThreeDSecureStatus? = null","com.stripe.android.model.SourceTypeModel.Card.threeDSecureStatus"]},{"name":"val threeDSecureUsage: PaymentMethod.Card.ThreeDSecureUsage? = null","description":"com.stripe.android.model.PaymentMethod.Card.threeDSecureUsage","location":"payments-core/com.stripe.android.model/-payment-method/-card/three-d-secure-usage.html","searchKeys":["threeDSecureUsage","val threeDSecureUsage: PaymentMethod.Card.ThreeDSecureUsage? = null","com.stripe.android.model.PaymentMethod.Card.threeDSecureUsage"]},{"name":"val timestamp: String?","description":"com.stripe.android.model.WeChat.timestamp","location":"payments-core/com.stripe.android.model/-we-chat/timestamp.html","searchKeys":["timestamp","val timestamp: String?","com.stripe.android.model.WeChat.timestamp"]},{"name":"val title: String? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.title","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/title.html","searchKeys":["title","val title: String? = null","com.stripe.android.model.PersonTokenParams.Relationship.title"]},{"name":"val title: String? = null","description":"com.stripe.android.model.StripeFile.title","location":"payments-core/com.stripe.android.model/-stripe-file/title.html","searchKeys":["title","val title: String? = null","com.stripe.android.model.StripeFile.title"]},{"name":"val token: Token? = null","description":"com.stripe.android.model.GooglePayResult.token","location":"payments-core/com.stripe.android.model/-google-pay-result/token.html","searchKeys":["token","val token: Token? = null","com.stripe.android.model.GooglePayResult.token"]},{"name":"val tokenizationMethod: TokenizationMethod? = null","description":"com.stripe.android.model.Card.tokenizationMethod","location":"payments-core/com.stripe.android.model/-card/tokenization-method.html","searchKeys":["tokenizationMethod","val tokenizationMethod: TokenizationMethod? = null","com.stripe.android.model.Card.tokenizationMethod"]},{"name":"val tokenizationMethod: TokenizationMethod? = null","description":"com.stripe.android.model.SourceTypeModel.Card.tokenizationMethod","location":"payments-core/com.stripe.android.model/-source-type-model/-card/tokenization-method.html","searchKeys":["tokenizationMethod","val tokenizationMethod: TokenizationMethod? = null","com.stripe.android.model.SourceTypeModel.Card.tokenizationMethod"]},{"name":"val tokenizationSpecification: JSONObject","description":"com.stripe.android.GooglePayConfig.tokenizationSpecification","location":"payments-core/com.stripe.android/-google-pay-config/tokenization-specification.html","searchKeys":["tokenizationSpecification","val tokenizationSpecification: JSONObject","com.stripe.android.GooglePayConfig.tokenizationSpecification"]},{"name":"val totalAmount: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.totalAmount","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/total-amount.html","searchKeys":["totalAmount","val totalAmount: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.totalAmount"]},{"name":"val totalCount: Int?","description":"com.stripe.android.model.Customer.totalCount","location":"payments-core/com.stripe.android.model/-customer/total-count.html","searchKeys":["totalCount","val totalCount: Int?","com.stripe.android.model.Customer.totalCount"]},{"name":"val town: String? = null","description":"com.stripe.android.model.AddressJapanParams.town","location":"payments-core/com.stripe.android.model/-address-japan-params/town.html","searchKeys":["town","val town: String? = null","com.stripe.android.model.AddressJapanParams.town"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.PaymentIntent.Shipping.trackingNumber"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-source-order/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.SourceOrder.Shipping.trackingNumber"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.trackingNumber"]},{"name":"val transactionId: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.transactionId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/transaction-id.html","searchKeys":["transactionId","val transactionId: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.transactionId"]},{"name":"val type: PaymentIntent.Error.Type?","description":"com.stripe.android.model.PaymentIntent.Error.type","location":"payments-core/com.stripe.android.model/-payment-intent/-error/type.html","searchKeys":["type","val type: PaymentIntent.Error.Type?","com.stripe.android.model.PaymentIntent.Error.type"]},{"name":"val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethodOptionsParams.type","location":"payments-core/com.stripe.android.model/-payment-method-options-params/type.html","searchKeys":["type","val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethodOptionsParams.type"]},{"name":"val type: PaymentMethod.Type?","description":"com.stripe.android.model.PaymentMethod.type","location":"payments-core/com.stripe.android.model/-payment-method/type.html","searchKeys":["type","val type: PaymentMethod.Type?","com.stripe.android.model.PaymentMethod.type"]},{"name":"val type: SetupIntent.Error.Type?","description":"com.stripe.android.model.SetupIntent.Error.type","location":"payments-core/com.stripe.android.model/-setup-intent/-error/type.html","searchKeys":["type","val type: SetupIntent.Error.Type?","com.stripe.android.model.SetupIntent.Error.type"]},{"name":"val type: SourceOrder.Item.Type","description":"com.stripe.android.model.SourceOrder.Item.type","location":"payments-core/com.stripe.android.model/-source-order/-item/type.html","searchKeys":["type","val type: SourceOrder.Item.Type","com.stripe.android.model.SourceOrder.Item.type"]},{"name":"val type: SourceOrderParams.Item.Type? = null","description":"com.stripe.android.model.SourceOrderParams.Item.type","location":"payments-core/com.stripe.android.model/-source-order-params/-item/type.html","searchKeys":["type","val type: SourceOrderParams.Item.Type? = null","com.stripe.android.model.SourceOrderParams.Item.type"]},{"name":"val type: String","description":"com.stripe.android.model.Source.type","location":"payments-core/com.stripe.android.model/-source/type.html","searchKeys":["type","val type: String","com.stripe.android.model.Source.type"]},{"name":"val type: String","description":"com.stripe.android.model.SourceParams.type","location":"payments-core/com.stripe.android.model/-source-params/type.html","searchKeys":["type","val type: String","com.stripe.android.model.SourceParams.type"]},{"name":"val type: String? = null","description":"com.stripe.android.StripeError.type","location":"payments-core/com.stripe.android/-stripe-error/type.html","searchKeys":["type","val type: String? = null","com.stripe.android.StripeError.type"]},{"name":"val type: String? = null","description":"com.stripe.android.model.StripeFile.type","location":"payments-core/com.stripe.android.model/-stripe-file/type.html","searchKeys":["type","val type: String? = null","com.stripe.android.model.StripeFile.type"]},{"name":"val type: Token.Type","description":"com.stripe.android.model.Token.type","location":"payments-core/com.stripe.android.model/-token/type.html","searchKeys":["type","val type: Token.Type","com.stripe.android.model.Token.type"]},{"name":"val typeCode: String","description":"com.stripe.android.model.PaymentMethodCreateParams.typeCode","location":"payments-core/com.stripe.android.model/-payment-method-create-params/type-code.html","searchKeys":["typeCode","val typeCode: String","com.stripe.android.model.PaymentMethodCreateParams.typeCode"]},{"name":"val typeRaw: String","description":"com.stripe.android.model.Source.typeRaw","location":"payments-core/com.stripe.android.model/-source/type-raw.html","searchKeys":["typeRaw","val typeRaw: String","com.stripe.android.model.Source.typeRaw"]},{"name":"val typeRaw: String","description":"com.stripe.android.model.SourceParams.typeRaw","location":"payments-core/com.stripe.android.model/-source-params/type-raw.html","searchKeys":["typeRaw","val typeRaw: String","com.stripe.android.model.SourceParams.typeRaw"]},{"name":"val uiCustomization: StripeUiCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.uiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/ui-customization.html","searchKeys":["uiCustomization","val uiCustomization: StripeUiCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.uiCustomization"]},{"name":"val upi: PaymentMethod.Upi? = null","description":"com.stripe.android.model.PaymentMethod.upi","location":"payments-core/com.stripe.android.model/-payment-method/upi.html","searchKeys":["upi","val upi: PaymentMethod.Upi? = null","com.stripe.android.model.PaymentMethod.upi"]},{"name":"val url: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.url","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/url.html","searchKeys":["url","val url: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.url"]},{"name":"val url: String?","description":"com.stripe.android.model.Customer.url","location":"payments-core/com.stripe.android.model/-customer/url.html","searchKeys":["url","val url: String?","com.stripe.android.model.Customer.url"]},{"name":"val url: String?","description":"com.stripe.android.model.Source.Redirect.url","location":"payments-core/com.stripe.android.model/-source/-redirect/url.html","searchKeys":["url","val url: String?","com.stripe.android.model.Source.Redirect.url"]},{"name":"val url: String? = null","description":"com.stripe.android.model.StripeFile.url","location":"payments-core/com.stripe.android.model/-stripe-file/url.html","searchKeys":["url","val url: String? = null","com.stripe.android.model.StripeFile.url"]},{"name":"val url: Uri","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.url","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/url.html","searchKeys":["url","val url: Uri","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.url"]},{"name":"val usage: Source.Usage? = null","description":"com.stripe.android.model.Source.usage","location":"payments-core/com.stripe.android.model/-source/usage.html","searchKeys":["usage","val usage: Source.Usage? = null","com.stripe.android.model.Source.usage"]},{"name":"val usage: StripeIntent.Usage?","description":"com.stripe.android.model.SetupIntent.usage","location":"payments-core/com.stripe.android.model/-setup-intent/usage.html","searchKeys":["usage","val usage: StripeIntent.Usage?","com.stripe.android.model.SetupIntent.usage"]},{"name":"val useGooglePay: Boolean = false","description":"com.stripe.android.PaymentSessionData.useGooglePay","location":"payments-core/com.stripe.android/-payment-session-data/use-google-pay.html","searchKeys":["useGooglePay","val useGooglePay: Boolean = false","com.stripe.android.PaymentSessionData.useGooglePay"]},{"name":"val useGooglePay: Boolean = false","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.useGooglePay","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/use-google-pay.html","searchKeys":["useGooglePay","val useGooglePay: Boolean = false","com.stripe.android.view.PaymentMethodsActivityStarter.Result.useGooglePay"]},{"name":"val used: Boolean","description":"com.stripe.android.model.Token.used","location":"payments-core/com.stripe.android.model/-token/used.html","searchKeys":["used","val used: Boolean","com.stripe.android.model.Token.used"]},{"name":"val validatedDate: ExpirationDate.Validated?","description":"com.stripe.android.view.ExpiryDateEditText.validatedDate","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/validated-date.html","searchKeys":["validatedDate","val validatedDate: ExpirationDate.Validated?","com.stripe.android.view.ExpiryDateEditText.validatedDate"]},{"name":"val value: KClass","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey.value","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/value.html","searchKeys":["value","val value: KClass","com.stripe.android.payments.core.injection.IntentAuthenticatorKey.value"]},{"name":"val verification: PersonTokenParams.Verification? = null","description":"com.stripe.android.model.PersonTokenParams.verification","location":"payments-core/com.stripe.android.model/-person-token-params/verification.html","searchKeys":["verification","val verification: PersonTokenParams.Verification? = null","com.stripe.android.model.PersonTokenParams.verification"]},{"name":"val verifiedAddress: Address?","description":"com.stripe.android.model.Source.Owner.verifiedAddress","location":"payments-core/com.stripe.android.model/-source/-owner/verified-address.html","searchKeys":["verifiedAddress","val verifiedAddress: Address?","com.stripe.android.model.Source.Owner.verifiedAddress"]},{"name":"val verifiedEmail: String?","description":"com.stripe.android.model.Source.Owner.verifiedEmail","location":"payments-core/com.stripe.android.model/-source/-owner/verified-email.html","searchKeys":["verifiedEmail","val verifiedEmail: String?","com.stripe.android.model.Source.Owner.verifiedEmail"]},{"name":"val verifiedName: String?","description":"com.stripe.android.model.Source.Owner.verifiedName","location":"payments-core/com.stripe.android.model/-source/-owner/verified-name.html","searchKeys":["verifiedName","val verifiedName: String?","com.stripe.android.model.Source.Owner.verifiedName"]},{"name":"val verifiedPhone: String?","description":"com.stripe.android.model.Source.Owner.verifiedPhone","location":"payments-core/com.stripe.android.model/-source/-owner/verified-phone.html","searchKeys":["verifiedPhone","val verifiedPhone: String?","com.stripe.android.model.Source.Owner.verifiedPhone"]},{"name":"val vpa: String?","description":"com.stripe.android.model.PaymentMethod.Upi.vpa","location":"payments-core/com.stripe.android.model/-payment-method/-upi/vpa.html","searchKeys":["vpa","val vpa: String?","com.stripe.android.model.PaymentMethod.Upi.vpa"]},{"name":"val wallet: Wallet? = null","description":"com.stripe.android.model.PaymentMethod.Card.wallet","location":"payments-core/com.stripe.android.model/-payment-method/-card/wallet.html","searchKeys":["wallet","val wallet: Wallet? = null","com.stripe.android.model.PaymentMethod.Card.wallet"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.Source.weChat","location":"payments-core/com.stripe.android.model/-source/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.Source.weChat"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.weChat","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.weChat"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.WeChatPayNextAction.weChat","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.WeChatPayNextAction.weChat"]},{"name":"val year: Int","description":"com.stripe.android.model.DateOfBirth.year","location":"payments-core/com.stripe.android.model/-date-of-birth/year.html","searchKeys":["year","val year: Int","com.stripe.android.model.DateOfBirth.year"]},{"name":"val year: Int","description":"com.stripe.android.model.ExpirationDate.Validated.year","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/year.html","searchKeys":["year","val year: Int","com.stripe.android.model.ExpirationDate.Validated.year"]},{"name":"var accountNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.accountNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/account-number.html","searchKeys":["accountNumber","var accountNumber: String","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.accountNumber"]},{"name":"var accountNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.accountNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/account-number.html","searchKeys":["accountNumber","var accountNumber: String","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.accountNumber"]},{"name":"var additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.additionalDocument","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/additional-document.html","searchKeys":["additionalDocument","var additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.additionalDocument"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.address","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.address"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.address","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.address"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.CardParams.address","location":"payments-core/com.stripe.android.model/-card-params/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.CardParams.address"]},{"name":"var addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address-kana.html","searchKeys":["addressKana","var addressKana: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKana"]},{"name":"var addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address-kana.html","searchKeys":["addressKana","var addressKana: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKana"]},{"name":"var addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address-kanji.html","searchKeys":["addressKanji","var addressKanji: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKanji"]},{"name":"var addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address-kanji.html","searchKeys":["addressKanji","var addressKanji: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKanji"]},{"name":"var advancedFraudSignalsEnabled: Boolean = true","description":"com.stripe.android.Stripe.Companion.advancedFraudSignalsEnabled","location":"payments-core/com.stripe.android/-stripe/-companion/advanced-fraud-signals-enabled.html","searchKeys":["advancedFraudSignalsEnabled","var advancedFraudSignalsEnabled: Boolean = true","com.stripe.android.Stripe.Companion.advancedFraudSignalsEnabled"]},{"name":"var amount: Long? = null","description":"com.stripe.android.model.SourceParams.amount","location":"payments-core/com.stripe.android.model/-source-params/amount.html","searchKeys":["amount","var amount: Long? = null","com.stripe.android.model.SourceParams.amount"]},{"name":"var appId: String","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.appId","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/app-id.html","searchKeys":["appId","var appId: String","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.appId"]},{"name":"var appInfo: AppInfo? = null","description":"com.stripe.android.Stripe.Companion.appInfo","location":"payments-core/com.stripe.android/-stripe/-companion/app-info.html","searchKeys":["appInfo","var appInfo: AppInfo? = null","com.stripe.android.Stripe.Companion.appInfo"]},{"name":"var bank: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.bank","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/bank.html","searchKeys":["bank","var bank: String?","com.stripe.android.model.PaymentMethodCreateParams.Fpx.bank"]},{"name":"var bank: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.bank","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/bank.html","searchKeys":["bank","var bank: String?","com.stripe.android.model.PaymentMethodCreateParams.Ideal.bank"]},{"name":"var billingAddressConfig: GooglePayLauncher.BillingAddressConfig","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.billingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/billing-address-config.html","searchKeys":["billingAddressConfig","var billingAddressConfig: GooglePayLauncher.BillingAddressConfig","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.billingAddressConfig"]},{"name":"var billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.billingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/billing-address-config.html","searchKeys":["billingAddressConfig","var billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.billingAddressConfig"]},{"name":"var bsbNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.bsbNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/bsb-number.html","searchKeys":["bsbNumber","var bsbNumber: String","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.bsbNumber"]},{"name":"var cardBrand: CardBrand","description":"com.stripe.android.view.CardNumberEditText.cardBrand","location":"payments-core/com.stripe.android.view/-card-number-edit-text/card-brand.html","searchKeys":["cardBrand","var cardBrand: CardBrand","com.stripe.android.view.CardNumberEditText.cardBrand"]},{"name":"var code: String","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik.code","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/code.html","searchKeys":["code","var code: String","com.stripe.android.model.PaymentMethodOptionsParams.Blik.code"]},{"name":"var companyName: String","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView.companyName","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/company-name.html","searchKeys":["companyName","var companyName: String","com.stripe.android.view.BecsDebitMandateAcceptanceTextView.companyName"]},{"name":"var currency: String? = null","description":"com.stripe.android.model.CardParams.currency","location":"payments-core/com.stripe.android.model/-card-params/currency.html","searchKeys":["currency","var currency: String? = null","com.stripe.android.model.CardParams.currency"]},{"name":"var currency: String? = null","description":"com.stripe.android.model.SourceParams.currency","location":"payments-core/com.stripe.android.model/-source-params/currency.html","searchKeys":["currency","var currency: String? = null","com.stripe.android.model.SourceParams.currency"]},{"name":"var customer: PaymentSheet.CustomerConfiguration? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.customer","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/customer.html","searchKeys":["customer","var customer: PaymentSheet.CustomerConfiguration? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.customer"]},{"name":"var cvc: String? = null","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.cvc","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/cvc.html","searchKeys":["cvc","var cvc: String? = null","com.stripe.android.model.PaymentMethodOptionsParams.Card.cvc"]},{"name":"var dateOfBirth: DateOfBirth? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.dateOfBirth","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/date-of-birth.html","searchKeys":["dateOfBirth","var dateOfBirth: DateOfBirth? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.dateOfBirth"]},{"name":"var directorsProvided: Boolean? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.directorsProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/directors-provided.html","searchKeys":["directorsProvided","var directorsProvided: Boolean? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.directorsProvided"]},{"name":"var document: AccountParams.BusinessTypeParams.Company.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/document.html","searchKeys":["document","var document: AccountParams.BusinessTypeParams.Company.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.document"]},{"name":"var document: AccountParams.BusinessTypeParams.Individual.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/document.html","searchKeys":["document","var document: AccountParams.BusinessTypeParams.Individual.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.document"]},{"name":"var email: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.email","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/email.html","searchKeys":["email","var email: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.email"]},{"name":"var executivesProvided: Boolean? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.executivesProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/executives-provided.html","searchKeys":["executivesProvided","var executivesProvided: Boolean? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.executivesProvided"]},{"name":"var existingPaymentMethodRequired: Boolean = true","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.existingPaymentMethodRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/existing-payment-method-required.html","searchKeys":["existingPaymentMethodRequired","var existingPaymentMethodRequired: Boolean = true","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.existingPaymentMethodRequired"]},{"name":"var existingPaymentMethodRequired: Boolean = true","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.existingPaymentMethodRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/existing-payment-method-required.html","searchKeys":["existingPaymentMethodRequired","var existingPaymentMethodRequired: Boolean = true","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.existingPaymentMethodRequired"]},{"name":"var firstName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name.html","searchKeys":["firstName","var firstName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstName"]},{"name":"var firstNameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name-kana.html","searchKeys":["firstNameKana","var firstNameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKana"]},{"name":"var firstNameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name-kanji.html","searchKeys":["firstNameKanji","var firstNameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKanji"]},{"name":"var flow: SourceParams.Flow? = null","description":"com.stripe.android.model.SourceParams.flow","location":"payments-core/com.stripe.android.model/-source-params/flow.html","searchKeys":["flow","var flow: SourceParams.Flow? = null","com.stripe.android.model.SourceParams.flow"]},{"name":"var gender: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.gender","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/gender.html","searchKeys":["gender","var gender: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.gender"]},{"name":"var googlePay: PaymentSheet.GooglePayConfiguration? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.googlePay","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/google-pay.html","searchKeys":["googlePay","var googlePay: PaymentSheet.GooglePayConfiguration? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.googlePay"]},{"name":"var hiddenFields: List","description":"com.stripe.android.view.ShippingInfoWidget.hiddenFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/hidden-fields.html","searchKeys":["hiddenFields","var hiddenFields: List","com.stripe.android.view.ShippingInfoWidget.hiddenFields"]},{"name":"var iban: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.iban","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/iban.html","searchKeys":["iban","var iban: String?","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.iban"]},{"name":"var idNumber: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.idNumber","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/id-number.html","searchKeys":["idNumber","var idNumber: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.idNumber"]},{"name":"var isCardNumberValid: Boolean = false","description":"com.stripe.android.view.CardNumberEditText.isCardNumberValid","location":"payments-core/com.stripe.android.view/-card-number-edit-text/is-card-number-valid.html","searchKeys":["isCardNumberValid","var isCardNumberValid: Boolean = false","com.stripe.android.view.CardNumberEditText.isCardNumberValid"]},{"name":"var isDateValid: Boolean = false","description":"com.stripe.android.view.ExpiryDateEditText.isDateValid","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/is-date-valid.html","searchKeys":["isDateValid","var isDateValid: Boolean = false","com.stripe.android.view.ExpiryDateEditText.isDateValid"]},{"name":"var isEmailRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.isEmailRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/is-email-required.html","searchKeys":["isEmailRequired","var isEmailRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.isEmailRequired"]},{"name":"var isEmailRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.isEmailRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/is-email-required.html","searchKeys":["isEmailRequired","var isEmailRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.isEmailRequired"]},{"name":"var lastName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name.html","searchKeys":["lastName","var lastName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastName"]},{"name":"var lastNameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name-kana.html","searchKeys":["lastNameKana","var lastNameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKana"]},{"name":"var lastNameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name-kanji.html","searchKeys":["lastNameKanji","var lastNameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKanji"]},{"name":"var maidenName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.maidenName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/maiden-name.html","searchKeys":["maidenName","var maidenName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.maidenName"]},{"name":"var mandateData: MandateDataParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.mandateData","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/mandate-data.html","searchKeys":["mandateData","var mandateData: MandateDataParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.mandateData"]},{"name":"var mandateData: MandateDataParams? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.mandateData","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/mandate-data.html","searchKeys":["mandateData","var mandateData: MandateDataParams? = null","com.stripe.android.model.ConfirmSetupIntentParams.mandateData"]},{"name":"var mandateId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.mandateId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/mandate-id.html","searchKeys":["mandateId","var mandateId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.mandateId"]},{"name":"var mandateId: String? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.mandateId","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/mandate-id.html","searchKeys":["mandateId","var mandateId: String? = null","com.stripe.android.model.ConfirmSetupIntentParams.mandateId"]},{"name":"var merchantDisplayName: String","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.merchantDisplayName","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/merchant-display-name.html","searchKeys":["merchantDisplayName","var merchantDisplayName: String","com.stripe.android.paymentsheet.PaymentSheet.Configuration.merchantDisplayName"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.metadata","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.metadata"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.CardParams.metadata","location":"payments-core/com.stripe.android.model/-card-params/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.CardParams.metadata"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.SourceParams.metadata","location":"payments-core/com.stripe.android.model/-source-params/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.SourceParams.metadata"]},{"name":"var name: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name.html","searchKeys":["name","var name: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.name"]},{"name":"var name: String? = null","description":"com.stripe.android.model.CardParams.name","location":"payments-core/com.stripe.android.model/-card-params/name.html","searchKeys":["name","var name: String? = null","com.stripe.android.model.CardParams.name"]},{"name":"var nameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name-kana.html","searchKeys":["nameKana","var nameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKana"]},{"name":"var nameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name-kanji.html","searchKeys":["nameKanji","var nameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKanji"]},{"name":"var network: String? = null","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.network","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/network.html","searchKeys":["network","var network: String? = null","com.stripe.android.model.PaymentMethodOptionsParams.Card.network"]},{"name":"var optionalFields: List","description":"com.stripe.android.view.ShippingInfoWidget.optionalFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/optional-fields.html","searchKeys":["optionalFields","var optionalFields: List","com.stripe.android.view.ShippingInfoWidget.optionalFields"]},{"name":"var owner: SourceParams.OwnerParams? = null","description":"com.stripe.android.model.SourceParams.owner","location":"payments-core/com.stripe.android.model/-source-params/owner.html","searchKeys":["owner","var owner: SourceParams.OwnerParams? = null","com.stripe.android.model.SourceParams.owner"]},{"name":"var ownersProvided: Boolean? = false","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.ownersProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/owners-provided.html","searchKeys":["ownersProvided","var ownersProvided: Boolean? = false","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.ownersProvided"]},{"name":"var paymentMethodOptions: PaymentMethodOptionsParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodOptions","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-options.html","searchKeys":["paymentMethodOptions","var paymentMethodOptions: PaymentMethodOptionsParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodOptions"]},{"name":"var phone: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.phone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/phone.html","searchKeys":["phone","var phone: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.phone"]},{"name":"var phone: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.phone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/phone.html","searchKeys":["phone","var phone: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.phone"]},{"name":"var postalCodeEnabled: Boolean","description":"com.stripe.android.view.CardInputWidget.postalCodeEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/postal-code-enabled.html","searchKeys":["postalCodeEnabled","var postalCodeEnabled: Boolean","com.stripe.android.view.CardInputWidget.postalCodeEnabled"]},{"name":"var postalCodeRequired: Boolean","description":"com.stripe.android.view.CardInputWidget.postalCodeRequired","location":"payments-core/com.stripe.android.view/-card-input-widget/postal-code-required.html","searchKeys":["postalCodeRequired","var postalCodeRequired: Boolean","com.stripe.android.view.CardInputWidget.postalCodeRequired"]},{"name":"var postalCodeRequired: Boolean","description":"com.stripe.android.view.CardMultilineWidget.postalCodeRequired","location":"payments-core/com.stripe.android.view/-card-multiline-widget/postal-code-required.html","searchKeys":["postalCodeRequired","var postalCodeRequired: Boolean","com.stripe.android.view.CardMultilineWidget.postalCodeRequired"]},{"name":"var primaryButtonColor: ColorStateList? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.primaryButtonColor","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/primary-button-color.html","searchKeys":["primaryButtonColor","var primaryButtonColor: ColorStateList? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.primaryButtonColor"]},{"name":"var receiptEmail: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.receiptEmail","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/receipt-email.html","searchKeys":["receiptEmail","var receiptEmail: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.receiptEmail"]},{"name":"var returnUrl: String? = null","description":"com.stripe.android.model.SourceParams.returnUrl","location":"payments-core/com.stripe.android.model/-source-params/return-url.html","searchKeys":["returnUrl","var returnUrl: String? = null","com.stripe.android.model.SourceParams.returnUrl"]},{"name":"var savePaymentMethod: Boolean? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.savePaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/save-payment-method.html","searchKeys":["savePaymentMethod","var savePaymentMethod: Boolean? = null","com.stripe.android.model.ConfirmPaymentIntentParams.savePaymentMethod"]},{"name":"var setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.setupFutureUsage","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/setup-future-usage.html","searchKeys":["setupFutureUsage","var setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null","com.stripe.android.model.ConfirmPaymentIntentParams.setupFutureUsage"]},{"name":"var shipping: ConfirmPaymentIntentParams.Shipping? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/shipping.html","searchKeys":["shipping","var shipping: ConfirmPaymentIntentParams.Shipping? = null","com.stripe.android.model.ConfirmPaymentIntentParams.shipping"]},{"name":"var shouldShowError: Boolean = false","description":"com.stripe.android.view.StripeEditText.shouldShowError","location":"payments-core/com.stripe.android.view/-stripe-edit-text/should-show-error.html","searchKeys":["shouldShowError","var shouldShowError: Boolean = false","com.stripe.android.view.StripeEditText.shouldShowError"]},{"name":"var sortCode: String","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.sortCode","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/sort-code.html","searchKeys":["sortCode","var sortCode: String","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.sortCode"]},{"name":"var sourceOrder: SourceOrderParams? = null","description":"com.stripe.android.model.SourceParams.sourceOrder","location":"payments-core/com.stripe.android.model/-source-params/source-order.html","searchKeys":["sourceOrder","var sourceOrder: SourceOrderParams? = null","com.stripe.android.model.SourceParams.sourceOrder"]},{"name":"var ssnLast4: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.ssnLast4","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/ssn-last4.html","searchKeys":["ssnLast4","var ssnLast4: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.ssnLast4"]},{"name":"var taxId: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/tax-id.html","searchKeys":["taxId","var taxId: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxId"]},{"name":"var taxIdRegistrar: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxIdRegistrar","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/tax-id-registrar.html","searchKeys":["taxIdRegistrar","var taxIdRegistrar: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxIdRegistrar"]},{"name":"var token: String? = null","description":"com.stripe.android.model.SourceParams.token","location":"payments-core/com.stripe.android.model/-source-params/token.html","searchKeys":["token","var token: String? = null","com.stripe.android.model.SourceParams.token"]},{"name":"var usZipCodeRequired: Boolean","description":"com.stripe.android.view.CardInputWidget.usZipCodeRequired","location":"payments-core/com.stripe.android.view/-card-input-widget/us-zip-code-required.html","searchKeys":["usZipCodeRequired","var usZipCodeRequired: Boolean","com.stripe.android.view.CardInputWidget.usZipCodeRequired"]},{"name":"var usZipCodeRequired: Boolean","description":"com.stripe.android.view.CardMultilineWidget.usZipCodeRequired","location":"payments-core/com.stripe.android.view/-card-multiline-widget/us-zip-code-required.html","searchKeys":["usZipCodeRequired","var usZipCodeRequired: Boolean","com.stripe.android.view.CardMultilineWidget.usZipCodeRequired"]},{"name":"var usage: Source.Usage? = null","description":"com.stripe.android.model.SourceParams.usage","location":"payments-core/com.stripe.android.model/-source-params/usage.html","searchKeys":["usage","var usage: Source.Usage? = null","com.stripe.android.model.SourceParams.usage"]},{"name":"var validParamsCallback: BecsDebitWidget.ValidParamsCallback","description":"com.stripe.android.view.BecsDebitWidget.validParamsCallback","location":"payments-core/com.stripe.android.view/-becs-debit-widget/valid-params-callback.html","searchKeys":["validParamsCallback","var validParamsCallback: BecsDebitWidget.ValidParamsCallback","com.stripe.android.view.BecsDebitWidget.validParamsCallback"]},{"name":"var vatId: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.vatId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/vat-id.html","searchKeys":["vatId","var vatId: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.vatId"]},{"name":"var verification: AccountParams.BusinessTypeParams.Company.Verification? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/verification.html","searchKeys":["verification","var verification: AccountParams.BusinessTypeParams.Company.Verification? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.verification"]},{"name":"var verification: AccountParams.BusinessTypeParams.Individual.Verification? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/verification.html","searchKeys":["verification","var verification: AccountParams.BusinessTypeParams.Individual.Verification? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.verification"]},{"name":"Bancontact(\"bancontact\", R.string.stripe_paymentsheet_payment_method_bancontact, R.drawable.stripe_ic_paymentsheet_pm_bancontact, bancontact)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/index.html","searchKeys":["Bancontact","Bancontact(\"bancontact\", R.string.stripe_paymentsheet_payment_method_bancontact, R.drawable.stripe_ic_paymentsheet_pm_bancontact, bancontact)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact"]},{"name":"Card(\"card\", R.string.stripe_paymentsheet_payment_method_card, R.drawable.stripe_ic_paymentsheet_pm_card, null)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/index.html","searchKeys":["Card","Card(\"card\", R.string.stripe_paymentsheet_payment_method_card, R.drawable.stripe_ic_paymentsheet_pm_card, null)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card"]},{"name":"Ideal(\"ideal\", R.string.stripe_paymentsheet_payment_method_ideal, R.drawable.stripe_ic_paymentsheet_pm_ideal, ideal)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/index.html","searchKeys":["Ideal","Ideal(\"ideal\", R.string.stripe_paymentsheet_payment_method_ideal, R.drawable.stripe_ic_paymentsheet_pm_ideal, ideal)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal"]},{"name":"SepaDebit(\"sepa_debit\", R.string.stripe_paymentsheet_payment_method_sepa_debit, R.drawable.stripe_ic_paymentsheet_pm_sepa_debit, sepaDebit)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit","SepaDebit(\"sepa_debit\", R.string.stripe_paymentsheet_payment_method_sepa_debit, R.drawable.stripe_ic_paymentsheet_pm_sepa_debit, sepaDebit)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit"]},{"name":"Sofort(\"sofort\", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_sofort, sofort)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html","searchKeys":["Sofort","Sofort(\"sofort\", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_sofort, sofort)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort"]},{"name":"abstract val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.RequiredItemSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/identifier.html","searchKeys":["identifier","abstract val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.RequiredItemSpec.identifier"]},{"name":"class ComposeFormDataCollectionFragment : Fragment","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/index.html","searchKeys":["ComposeFormDataCollectionFragment","class ComposeFormDataCollectionFragment : Fragment","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment"]},{"name":"class FormFieldValues(fieldValuePairs: Map, saveForFutureUse: Boolean, showsMandate: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/index.html","searchKeys":["FormFieldValues","class FormFieldValues(fieldValuePairs: Map, saveForFutureUse: Boolean, showsMandate: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldValues"]},{"name":"class FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String) : ViewModel","description":"com.stripe.android.paymentsheet.forms.FormViewModel","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html","searchKeys":["FormViewModel","class FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String) : ViewModel","com.stripe.android.paymentsheet.forms.FormViewModel"]},{"name":"const val EXTRA_MERCHANT_NAME: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_MERCHANT_NAME","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-m-e-r-c-h-a-n-t_-n-a-m-e.html","searchKeys":["EXTRA_MERCHANT_NAME","const val EXTRA_MERCHANT_NAME: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_MERCHANT_NAME"]},{"name":"const val EXTRA_PAYMENT_METHOD: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_PAYMENT_METHOD","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-p-a-y-m-e-n-t_-m-e-t-h-o-d.html","searchKeys":["EXTRA_PAYMENT_METHOD","const val EXTRA_PAYMENT_METHOD: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_PAYMENT_METHOD"]},{"name":"const val EXTRA_SAVE_FOR_FUTURE_USE_VALUE: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VALUE","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-s-a-v-e_-f-o-r_-f-u-t-u-r-e_-u-s-e_-v-a-l-u-e.html","searchKeys":["EXTRA_SAVE_FOR_FUTURE_USE_VALUE","const val EXTRA_SAVE_FOR_FUTURE_USE_VALUE: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VALUE"]},{"name":"const val EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-s-a-v-e_-f-o-r_-f-u-t-u-r-e_-u-s-e_-v-i-s-i-b-i-l-i-t-y.html","searchKeys":["EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY","const val EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY"]},{"name":"data class Country(onlyShowCountryCodes: Set) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/index.html","searchKeys":["Country","data class Country(onlyShowCountryCodes: Set) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country"]},{"name":"data class FormFieldEntry(value: String?, isComplete: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/index.html","searchKeys":["FormFieldEntry","data class FormFieldEntry(value: String?, isComplete: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldEntry"]},{"name":"data class FormSpec(layout: LayoutSpec, paramKey: MutableMap)","description":"com.stripe.android.paymentsheet.specifications.FormSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/index.html","searchKeys":["FormSpec","data class FormSpec(layout: LayoutSpec, paramKey: MutableMap)","com.stripe.android.paymentsheet.specifications.FormSpec"]},{"name":"data class IdentifierSpec(value: String)","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/index.html","searchKeys":["IdentifierSpec","data class IdentifierSpec(value: String)","com.stripe.android.paymentsheet.specifications.IdentifierSpec"]},{"name":"data class LayoutSpec(items: List)","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/index.html","searchKeys":["LayoutSpec","data class LayoutSpec(items: List)","com.stripe.android.paymentsheet.specifications.LayoutSpec"]},{"name":"data class MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/index.html","searchKeys":["MandateTextSpec","data class MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec"]},{"name":"data class SaveForFutureUseSpec(identifierRequiredForFutureUse: List) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/index.html","searchKeys":["SaveForFutureUseSpec","data class SaveForFutureUseSpec(identifierRequiredForFutureUse: List) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec"]},{"name":"data class SectionSpec(identifier: IdentifierSpec, fields: List, title: Int?) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/index.html","searchKeys":["SectionSpec","data class SectionSpec(identifier: IdentifierSpec, fields: List, title: Int?) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec"]},{"name":"data class SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/index.html","searchKeys":["SimpleText","data class SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText"]},{"name":"enum SupportedPaymentMethod : Enum ","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html","searchKeys":["SupportedPaymentMethod","enum SupportedPaymentMethod : Enum ","com.stripe.android.paymentsheet.model.SupportedPaymentMethod"]},{"name":"fun ComposeFormDataCollectionFragment()","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.ComposeFormDataCollectionFragment","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-compose-form-data-collection-fragment.html","searchKeys":["ComposeFormDataCollectionFragment","fun ComposeFormDataCollectionFragment()","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.ComposeFormDataCollectionFragment"]},{"name":"fun Country(onlyShowCountryCodes: Set = emptySet())","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.Country","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/-country.html","searchKeys":["Country","fun Country(onlyShowCountryCodes: Set = emptySet())","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.Country"]},{"name":"fun FormFieldEntry(value: String?, isComplete: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.FormFieldEntry","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/-form-field-entry.html","searchKeys":["FormFieldEntry","fun FormFieldEntry(value: String?, isComplete: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldEntry.FormFieldEntry"]},{"name":"fun FormFieldValues(fieldValuePairs: Map = mapOf(), saveForFutureUse: Boolean, showsMandate: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.FormFieldValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/-form-field-values.html","searchKeys":["FormFieldValues","fun FormFieldValues(fieldValuePairs: Map = mapOf(), saveForFutureUse: Boolean, showsMandate: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldValues.FormFieldValues"]},{"name":"fun FormSpec(layout: LayoutSpec, paramKey: MutableMap)","description":"com.stripe.android.paymentsheet.specifications.FormSpec.FormSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/-form-spec.html","searchKeys":["FormSpec","fun FormSpec(layout: LayoutSpec, paramKey: MutableMap)","com.stripe.android.paymentsheet.specifications.FormSpec.FormSpec"]},{"name":"fun FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String)","description":"com.stripe.android.paymentsheet.forms.FormViewModel.FormViewModel","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/-form-view-model.html","searchKeys":["FormViewModel","fun FormViewModel(layout: LayoutSpec, saveForFutureUseInitialValue: Boolean, saveForFutureUseInitialVisibility: Boolean, merchantName: String)","com.stripe.android.paymentsheet.forms.FormViewModel.FormViewModel"]},{"name":"fun IdentifierSpec(value: String)","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec.IdentifierSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/-identifier-spec.html","searchKeys":["IdentifierSpec","fun IdentifierSpec(value: String)","com.stripe.android.paymentsheet.specifications.IdentifierSpec.IdentifierSpec"]},{"name":"fun LayoutSpec(items: List)","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec.LayoutSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/-layout-spec.html","searchKeys":["LayoutSpec","fun LayoutSpec(items: List)","com.stripe.android.paymentsheet.specifications.LayoutSpec.LayoutSpec"]},{"name":"fun MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.MandateTextSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/-mandate-text-spec.html","searchKeys":["MandateTextSpec","fun MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color)","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.MandateTextSpec"]},{"name":"fun SaveForFutureUseSpec(identifierRequiredForFutureUse: List)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.SaveForFutureUseSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/-save-for-future-use-spec.html","searchKeys":["SaveForFutureUseSpec","fun SaveForFutureUseSpec(identifierRequiredForFutureUse: List)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.SaveForFutureUseSpec"]},{"name":"fun SectionSpec(identifier: IdentifierSpec, field: SectionFieldSpec, title: Int? = null)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/-section-spec.html","searchKeys":["SectionSpec","fun SectionSpec(identifier: IdentifierSpec, field: SectionFieldSpec, title: Int? = null)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec"]},{"name":"fun SectionSpec(identifier: IdentifierSpec, fields: List, title: Int? = null)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/-section-spec.html","searchKeys":["SectionSpec","fun SectionSpec(identifier: IdentifierSpec, fields: List, title: Int? = null)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec"]},{"name":"fun SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean = false)","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.SimpleText","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/-simple-text.html","searchKeys":["SimpleText","fun SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean = false)","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.SimpleText"]},{"name":"fun fromCode(code: String?): SupportedPaymentMethod?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.fromCode","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/from-code.html","searchKeys":["fromCode","fun fromCode(code: String?): SupportedPaymentMethod?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.fromCode"]},{"name":"fun setProcessing(processing: Boolean)","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.setProcessing","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/set-processing.html","searchKeys":["setProcessing","fun setProcessing(processing: Boolean)","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.setProcessing"]},{"name":"interface RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.RequiredItemSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/index.html","searchKeys":["RequiredItemSpec","interface RequiredItemSpec","com.stripe.android.paymentsheet.specifications.RequiredItemSpec"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion"]},{"name":"object Email : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Email","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-email/index.html","searchKeys":["Email","object Email : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Email"]},{"name":"object Iban : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Iban","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-iban/index.html","searchKeys":["Iban","object Iban : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Iban"]},{"name":"object IdealBank : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.IdealBank","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-ideal-bank/index.html","searchKeys":["IdealBank","object IdealBank : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.IdealBank"]},{"name":"open override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.onCreateView","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/on-create-view.html","searchKeys":["onCreateView","open override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.onCreateView"]},{"name":"open override fun toString(): String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.toString","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.toString"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.identifier"]},{"name":"open val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/identifier.html","searchKeys":["identifier","open val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.identifier"]},{"name":"sealed class FormItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/index.html","searchKeys":["FormItemSpec","sealed class FormItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec"]},{"name":"sealed class SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html","searchKeys":["SectionFieldSpec","sealed class SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec"]},{"name":"val capitalization: KeyboardCapitalization","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.capitalization","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/capitalization.html","searchKeys":["capitalization","val capitalization: KeyboardCapitalization","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.capitalization"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.code"]},{"name":"val color: Color","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.color","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/color.html","searchKeys":["color","val color: Color","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.color"]},{"name":"val completeFormValues: Flow","description":"com.stripe.android.paymentsheet.forms.FormViewModel.completeFormValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html","searchKeys":["completeFormValues","val completeFormValues: Flow","com.stripe.android.paymentsheet.forms.FormViewModel.completeFormValues"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.displayNameResource"]},{"name":"val fieldValuePairs: Map","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.fieldValuePairs","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/field-value-pairs.html","searchKeys":["fieldValuePairs","val fieldValuePairs: Map","com.stripe.android.paymentsheet.forms.FormFieldValues.fieldValuePairs"]},{"name":"val fields: List","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.fields","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/fields.html","searchKeys":["fields","val fields: List","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.fields"]},{"name":"val formSpec: FormSpec","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.formSpec"]},{"name":"val formViewModel: FormViewModel","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formViewModel","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/form-view-model.html","searchKeys":["formViewModel","val formViewModel: FormViewModel","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formViewModel"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.iconResource"]},{"name":"val identifierRequiredForFutureUse: List","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifierRequiredForFutureUse","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/identifier-required-for-future-use.html","searchKeys":["identifierRequiredForFutureUse","val identifierRequiredForFutureUse: List","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifierRequiredForFutureUse"]},{"name":"val isComplete: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.isComplete","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/is-complete.html","searchKeys":["isComplete","val isComplete: Boolean","com.stripe.android.paymentsheet.forms.FormFieldEntry.isComplete"]},{"name":"val items: List","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec.items","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/items.html","searchKeys":["items","val items: List","com.stripe.android.paymentsheet.specifications.LayoutSpec.items"]},{"name":"val keyboardType: KeyboardType","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.keyboardType","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/keyboard-type.html","searchKeys":["keyboardType","val keyboardType: KeyboardType","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.keyboardType"]},{"name":"val label: Int","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.label","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/label.html","searchKeys":["label","val label: Int","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.label"]},{"name":"val layout: LayoutSpec","description":"com.stripe.android.paymentsheet.specifications.FormSpec.layout","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/layout.html","searchKeys":["layout","val layout: LayoutSpec","com.stripe.android.paymentsheet.specifications.FormSpec.layout"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.name"]},{"name":"val onlyShowCountryCodes: Set","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.onlyShowCountryCodes","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/only-show-country-codes.html","searchKeys":["onlyShowCountryCodes","val onlyShowCountryCodes: Set","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.onlyShowCountryCodes"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.ordinal"]},{"name":"val paramKey: MutableMap","description":"com.stripe.android.paymentsheet.specifications.FormSpec.paramKey","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/param-key.html","searchKeys":["paramKey","val paramKey: MutableMap","com.stripe.android.paymentsheet.specifications.FormSpec.paramKey"]},{"name":"val saveForFutureUse: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.saveForFutureUse","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/save-for-future-use.html","searchKeys":["saveForFutureUse","val saveForFutureUse: Boolean","com.stripe.android.paymentsheet.forms.FormFieldValues.saveForFutureUse"]},{"name":"val showOptionalLabel: Boolean = false","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.showOptionalLabel","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/show-optional-label.html","searchKeys":["showOptionalLabel","val showOptionalLabel: Boolean = false","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.showOptionalLabel"]},{"name":"val showsMandate: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.showsMandate","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/shows-mandate.html","searchKeys":["showsMandate","val showsMandate: Boolean","com.stripe.android.paymentsheet.forms.FormFieldValues.showsMandate"]},{"name":"val stringResId: Int","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.stringResId","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/string-res-id.html","searchKeys":["stringResId","val stringResId: Int","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.stringResId"]},{"name":"val supportedSavedPaymentMethods: Set","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.supportedSavedPaymentMethods","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/supported-saved-payment-methods.html","searchKeys":["supportedSavedPaymentMethods","val supportedSavedPaymentMethods: Set","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.supportedSavedPaymentMethods"]},{"name":"val title: Int? = null","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.title","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/title.html","searchKeys":["title","val title: Int? = null","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.title"]},{"name":"val value: String","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec.value","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/value.html","searchKeys":["value","val value: String","com.stripe.android.paymentsheet.specifications.IdentifierSpec.value"]},{"name":"val value: String?","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.value","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/value.html","searchKeys":["value","val value: String?","com.stripe.android.paymentsheet.forms.FormFieldEntry.value"]}] \ No newline at end of file +[{"name":"Abandoned(\"abandoned\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/index.html","searchKeys":["Abandoned","Abandoned(\"abandoned\")","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned"]},{"name":"Abandoned(\"abandoned\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/index.html","searchKeys":["Abandoned","Abandoned(\"abandoned\")","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned"]},{"name":"Account(\"account\")","description":"com.stripe.android.model.Token.Type.Account","location":"payments-core/com.stripe.android.model/-token/-type/-account/index.html","searchKeys":["Account","Account(\"account\")","com.stripe.android.model.Token.Type.Account"]},{"name":"AfterpayClearpay(\"afterpay_clearpay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/index.html","searchKeys":["AfterpayClearpay","AfterpayClearpay(\"afterpay_clearpay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay"]},{"name":"Alipay(\"alipay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Alipay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/index.html","searchKeys":["Alipay","Alipay(\"alipay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Alipay"]},{"name":"AlipayRedirect(\"alipay_handle_redirect\")","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/index.html","searchKeys":["AlipayRedirect","AlipayRedirect(\"alipay_handle_redirect\")","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect"]},{"name":"AmericanExpress(\"amex\", \"American Express\", R.drawable.stripe_ic_amex, cvcIcon, R.drawable.stripe_ic_cvc_amex, errorIcon, R.drawable.stripe_ic_error_amex, cvcLength, setOf(3, 4), defaultMaxLength, 15, pattern, Pattern.compile(\"^(34|37)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ))","description":"com.stripe.android.model.CardBrand.AmericanExpress","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/index.html","searchKeys":["AmericanExpress","AmericanExpress(\"amex\", \"American Express\", R.drawable.stripe_ic_amex, cvcIcon, R.drawable.stripe_ic_cvc_amex, errorIcon, R.drawable.stripe_ic_error_amex, cvcLength, setOf(3, 4), defaultMaxLength, 15, pattern, Pattern.compile(\"^(34|37)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ))","com.stripe.android.model.CardBrand.AmericanExpress"]},{"name":"ApiConnectionError(\"api_connection_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/index.html","searchKeys":["ApiConnectionError","ApiConnectionError(\"api_connection_error\")","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError"]},{"name":"ApiConnectionError(\"api_connection_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/index.html","searchKeys":["ApiConnectionError","ApiConnectionError(\"api_connection_error\")","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError"]},{"name":"ApiError(\"api_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/index.html","searchKeys":["ApiError","ApiError(\"api_error\")","com.stripe.android.model.PaymentIntent.Error.Type.ApiError"]},{"name":"ApiError(\"api_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/index.html","searchKeys":["ApiError","ApiError(\"api_error\")","com.stripe.android.model.SetupIntent.Error.Type.ApiError"]},{"name":"ApplePay(setOf(\"apple_pay\"))","description":"com.stripe.android.model.TokenizationMethod.ApplePay","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/index.html","searchKeys":["ApplePay","ApplePay(setOf(\"apple_pay\"))","com.stripe.android.model.TokenizationMethod.ApplePay"]},{"name":"AuBecsDebit(\"au_becs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","AuBecsDebit(\"au_becs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit"]},{"name":"AuthenticationError(\"authentication_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/index.html","searchKeys":["AuthenticationError","AuthenticationError(\"authentication_error\")","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError"]},{"name":"AuthenticationError(\"authentication_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/index.html","searchKeys":["AuthenticationError","AuthenticationError(\"authentication_error\")","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic"]},{"name":"Automatic(\"automatic\")","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/index.html","searchKeys":["Automatic","Automatic(\"automatic\")","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic"]},{"name":"BacsDebit(\"bacs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/index.html","searchKeys":["BacsDebit","BacsDebit(\"bacs_debit\", isReusable, true, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.BacsDebit"]},{"name":"Bancontact(\"bancontact\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/index.html","searchKeys":["Bancontact","Bancontact(\"bancontact\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Bancontact"]},{"name":"BankAccount(\"bank_account\")","description":"com.stripe.android.model.Token.Type.BankAccount","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/index.html","searchKeys":["BankAccount","BankAccount(\"bank_account\")","com.stripe.android.model.Token.Type.BankAccount"]},{"name":"Blik(\"blik\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Blik","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/index.html","searchKeys":["Blik","Blik(\"blik\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Blik"]},{"name":"BlikAuthorize(\"blik_authorize\")","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/index.html","searchKeys":["BlikAuthorize","BlikAuthorize(\"blik_authorize\")","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize"]},{"name":"Book(\"book\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/index.html","searchKeys":["Book","Book(\"book\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book"]},{"name":"BusinessIcon(\"business_icon\")","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/index.html","searchKeys":["BusinessIcon","BusinessIcon(\"business_icon\")","com.stripe.android.model.StripeFilePurpose.BusinessIcon"]},{"name":"BusinessLogo(\"business_logo\")","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/index.html","searchKeys":["BusinessLogo","BusinessLogo(\"business_logo\")","com.stripe.android.model.StripeFilePurpose.BusinessLogo"]},{"name":"Buy(\"buy\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/index.html","searchKeys":["Buy","Buy(\"buy\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy"]},{"name":"CANCEL()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/index.html","searchKeys":["CANCEL","CANCEL()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL"]},{"name":"CONTINUE()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/index.html","searchKeys":["CONTINUE","CONTINUE()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE"]},{"name":"Canceled(\"canceled\")","description":"com.stripe.android.model.Source.Status.Canceled","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/index.html","searchKeys":["Canceled","Canceled(\"canceled\")","com.stripe.android.model.Source.Status.Canceled"]},{"name":"Canceled(\"canceled\")","description":"com.stripe.android.model.StripeIntent.Status.Canceled","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/index.html","searchKeys":["Canceled","Canceled(\"canceled\")","com.stripe.android.model.StripeIntent.Status.Canceled"]},{"name":"Card(\"card\")","description":"com.stripe.android.model.Token.Type.Card","location":"payments-core/com.stripe.android.model/-token/-type/-card/index.html","searchKeys":["Card","Card(\"card\")","com.stripe.android.model.Token.Type.Card"]},{"name":"Card(\"card\", isReusable, true, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Card","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/index.html","searchKeys":["Card","Card(\"card\", isReusable, true, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Card"]},{"name":"CardError(\"card_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/index.html","searchKeys":["CardError","CardError(\"card_error\")","com.stripe.android.model.PaymentIntent.Error.Type.CardError"]},{"name":"CardError(\"card_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/index.html","searchKeys":["CardError","CardError(\"card_error\")","com.stripe.android.model.SetupIntent.Error.Type.CardError"]},{"name":"CardNumber()","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/index.html","searchKeys":["CardNumber","CardNumber()","com.stripe.android.view.CardInputListener.FocusField.CardNumber"]},{"name":"CardPresent(\"card_present\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/index.html","searchKeys":["CardPresent","CardPresent(\"card_present\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.CardPresent"]},{"name":"Chargeable(\"chargeable\")","description":"com.stripe.android.model.Source.Status.Chargeable","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/index.html","searchKeys":["Chargeable","Chargeable(\"chargeable\")","com.stripe.android.model.Source.Status.Chargeable"]},{"name":"City()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/index.html","searchKeys":["City","City()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City"]},{"name":"CodeVerification(\"code_verification\")","description":"com.stripe.android.model.Source.Flow.CodeVerification","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/index.html","searchKeys":["CodeVerification","CodeVerification(\"code_verification\")","com.stripe.android.model.Source.Flow.CodeVerification"]},{"name":"CodeVerification(\"code_verification\")","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/index.html","searchKeys":["CodeVerification","CodeVerification(\"code_verification\")","com.stripe.android.model.SourceParams.Flow.CodeVerification"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.AccountParams.BusinessType.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.AccountParams.BusinessType.Company"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.BankAccount.Type.Company","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.BankAccount.Type.Company"]},{"name":"Company(\"company\")","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/index.html","searchKeys":["Company","Company(\"company\")","com.stripe.android.model.BankAccountTokenParams.Type.Company"]},{"name":"CompleteImmediatePurchase(\"COMPLETE_IMMEDIATE_PURCHASE\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/index.html","searchKeys":["CompleteImmediatePurchase","CompleteImmediatePurchase(\"COMPLETE_IMMEDIATE_PURCHASE\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase"]},{"name":"Consumed(\"consumed\")","description":"com.stripe.android.model.Source.Status.Consumed","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/index.html","searchKeys":["Consumed","Consumed(\"consumed\")","com.stripe.android.model.Source.Status.Consumed"]},{"name":"Continue(\"continue\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/index.html","searchKeys":["Continue","Continue(\"continue\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue"]},{"name":"Credit(\"credit\")","description":"com.stripe.android.model.CardFunding.Credit","location":"payments-core/com.stripe.android.model/-card-funding/-credit/index.html","searchKeys":["Credit","Credit(\"credit\")","com.stripe.android.model.CardFunding.Credit"]},{"name":"CustomerSignature(\"customer_signature\")","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/index.html","searchKeys":["CustomerSignature","CustomerSignature(\"customer_signature\")","com.stripe.android.model.StripeFilePurpose.CustomerSignature"]},{"name":"Cvc()","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/index.html","searchKeys":["Cvc","Cvc()","com.stripe.android.view.CardInputListener.FocusField.Cvc"]},{"name":"Cvc()","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/index.html","searchKeys":["Cvc","Cvc()","com.stripe.android.view.CardValidCallback.Fields.Cvc"]},{"name":"CvcUpdate(\"cvc_update\")","description":"com.stripe.android.model.Token.Type.CvcUpdate","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/index.html","searchKeys":["CvcUpdate","CvcUpdate(\"cvc_update\")","com.stripe.android.model.Token.Type.CvcUpdate"]},{"name":"Debit(\"debit\")","description":"com.stripe.android.model.CardFunding.Debit","location":"payments-core/com.stripe.android.model/-card-funding/-debit/index.html","searchKeys":["Debit","Debit(\"debit\")","com.stripe.android.model.CardFunding.Debit"]},{"name":"Default(\"DEFAULT\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/index.html","searchKeys":["Default","Default(\"DEFAULT\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default"]},{"name":"DinersClub(\"diners\", \"Diners Club\", R.drawable.stripe_ic_diners, defaultMaxLength, 16, pattern, Pattern.compile(\"^(36|30|38|39)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ), variantMaxLength, mapOf(\n Pattern.compile(\"^(36)[0-9]*$\") to 14\n ))","description":"com.stripe.android.model.CardBrand.DinersClub","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/index.html","searchKeys":["DinersClub","DinersClub(\"diners\", \"Diners Club\", R.drawable.stripe_ic_diners, defaultMaxLength, 16, pattern, Pattern.compile(\"^(36|30|38|39)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\")\n ), variantMaxLength, mapOf(\n Pattern.compile(\"^(36)[0-9]*$\") to 14\n ))","com.stripe.android.model.CardBrand.DinersClub"]},{"name":"Discover(\"discover\", \"Discover\", R.drawable.stripe_ic_discover, pattern, Pattern.compile(\"^(60|64|65)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6$\")\n ))","description":"com.stripe.android.model.CardBrand.Discover","location":"payments-core/com.stripe.android.model/-card-brand/-discover/index.html","searchKeys":["Discover","Discover(\"discover\", \"Discover\", R.drawable.stripe_ic_discover, pattern, Pattern.compile(\"^(60|64|65)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6$\")\n ))","com.stripe.android.model.CardBrand.Discover"]},{"name":"DisplayOxxoDetails(\"oxxo_display_details\")","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/index.html","searchKeys":["DisplayOxxoDetails","DisplayOxxoDetails(\"oxxo_display_details\")","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails"]},{"name":"DisputeEvidence(\"dispute_evidence\")","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/index.html","searchKeys":["DisputeEvidence","DisputeEvidence(\"dispute_evidence\")","com.stripe.android.model.StripeFilePurpose.DisputeEvidence"]},{"name":"Download(\"download\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/index.html","searchKeys":["Download","Download(\"download\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download"]},{"name":"Duplicate(\"duplicate\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/index.html","searchKeys":["Duplicate","Duplicate(\"duplicate\")","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate"]},{"name":"Duplicate(\"duplicate\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/index.html","searchKeys":["Duplicate","Duplicate(\"duplicate\")","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate"]},{"name":"EPHEMERAL_KEY_ERROR()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/index.html","searchKeys":["EPHEMERAL_KEY_ERROR","EPHEMERAL_KEY_ERROR()","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR"]},{"name":"Eps(\"eps\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Eps","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/index.html","searchKeys":["Eps","Eps(\"eps\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Eps"]},{"name":"Errored(\"errored\")","description":"com.stripe.android.model.BankAccount.Status.Errored","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/index.html","searchKeys":["Errored","Errored(\"errored\")","com.stripe.android.model.BankAccount.Status.Errored"]},{"name":"Estimated(\"ESTIMATED\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/index.html","searchKeys":["Estimated","Estimated(\"ESTIMATED\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated"]},{"name":"Expiry()","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/index.html","searchKeys":["Expiry","Expiry()","com.stripe.android.view.CardValidCallback.Fields.Expiry"]},{"name":"ExpiryDate()","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/index.html","searchKeys":["ExpiryDate","ExpiryDate()","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.CodeVerification.Status.Failed"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.Redirect.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.Redirect.Status.Failed"]},{"name":"Failed(\"failed\")","description":"com.stripe.android.model.Source.Status.Failed","location":"payments-core/com.stripe.android.model/-source/-status/-failed/index.html","searchKeys":["Failed","Failed(\"failed\")","com.stripe.android.model.Source.Status.Failed"]},{"name":"FailedInvoice(\"failed_invoice\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/index.html","searchKeys":["FailedInvoice","FailedInvoice(\"failed_invoice\")","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice"]},{"name":"Final(\"FINAL\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/index.html","searchKeys":["Final","Final(\"FINAL\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final"]},{"name":"Fpx(\"fpx\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Fpx","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/index.html","searchKeys":["Fpx","Fpx(\"fpx\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Fpx"]},{"name":"Fraudulent(\"fraudulent\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/index.html","searchKeys":["Fraudulent","Fraudulent(\"fraudulent\")","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full"]},{"name":"Full(\"FULL\")","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/index.html","searchKeys":["Full","Full(\"FULL\")","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full"]},{"name":"Full()","description":"com.stripe.android.view.BillingAddressFields.Full","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/index.html","searchKeys":["Full","Full()","com.stripe.android.view.BillingAddressFields.Full"]},{"name":"Giropay(\"giropay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Giropay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/index.html","searchKeys":["Giropay","Giropay(\"giropay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Giropay"]},{"name":"GooglePay(setOf(\"android_pay\", \"google\"))","description":"com.stripe.android.model.TokenizationMethod.GooglePay","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/index.html","searchKeys":["GooglePay","GooglePay(setOf(\"android_pay\", \"google\"))","com.stripe.android.model.TokenizationMethod.GooglePay"]},{"name":"GrabPay(\"grabpay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/index.html","searchKeys":["GrabPay","GrabPay(\"grabpay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.GrabPay"]},{"name":"Ideal(\"ideal\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Ideal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/index.html","searchKeys":["Ideal","Ideal(\"ideal\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Ideal"]},{"name":"IdempotencyError(\"idempotency_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/index.html","searchKeys":["IdempotencyError","IdempotencyError(\"idempotency_error\")","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError"]},{"name":"IdempotencyError(\"idempotency_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/index.html","searchKeys":["IdempotencyError","IdempotencyError(\"idempotency_error\")","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError"]},{"name":"IdentityDocument(\"identity_document\")","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/index.html","searchKeys":["IdentityDocument","IdentityDocument(\"identity_document\")","com.stripe.android.model.StripeFilePurpose.IdentityDocument"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.AccountParams.BusinessType.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.AccountParams.BusinessType.Individual"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.BankAccount.Type.Individual","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.BankAccount.Type.Individual"]},{"name":"Individual(\"individual\")","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/index.html","searchKeys":["Individual","Individual(\"individual\")","com.stripe.android.model.BankAccountTokenParams.Type.Individual"]},{"name":"Installments(\"installments\")","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/index.html","searchKeys":["Installments","Installments(\"installments\")","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments"]},{"name":"InvalidRequestError(\"invalid_request_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/index.html","searchKeys":["InvalidRequestError","InvalidRequestError(\"invalid_request_error\")","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError"]},{"name":"InvalidRequestError(\"invalid_request_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/index.html","searchKeys":["InvalidRequestError","InvalidRequestError(\"invalid_request_error\")","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError"]},{"name":"JCB(\"jcb\", \"JCB\", R.drawable.stripe_ic_jcb, pattern, Pattern.compile(\"^(352[89]|35[3-8][0-9])[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\"),\n 2 to Pattern.compile(\"^(35)$\"),\n 3 to Pattern.compile(\"^(35[2-8])$\")\n ))","description":"com.stripe.android.model.CardBrand.JCB","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/index.html","searchKeys":["JCB","JCB(\"jcb\", \"JCB\", R.drawable.stripe_ic_jcb, pattern, Pattern.compile(\"^(352[89]|35[3-8][0-9])[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^3$\"),\n 2 to Pattern.compile(\"^(35)$\"),\n 3 to Pattern.compile(\"^(35[2-8])$\")\n ))","com.stripe.android.model.CardBrand.JCB"]},{"name":"Line1()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/index.html","searchKeys":["Line1","Line1()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1"]},{"name":"Line2()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/index.html","searchKeys":["Line2","Line2()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2"]},{"name":"Manual(\"manual\")","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/index.html","searchKeys":["Manual","Manual(\"manual\")","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual"]},{"name":"Manual(\"manual\")","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/index.html","searchKeys":["Manual","Manual(\"manual\")","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual"]},{"name":"MasterCard(\"mastercard\", \"Mastercard\", R.drawable.stripe_ic_mastercard, pattern, Pattern.compile(\"^(2221|2222|2223|2224|2225|2226|2227|2228|2229|222|223|224|225|226|227|228|229|23|24|25|26|270|271|2720|50|51|52|53|54|55|56|57|58|59|67)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^2|5|6$\"),\n 2 to Pattern.compile(\"^(22|23|24|25|26|27|50|51|52|53|54|55|56|57|58|59|67)$\")\n ))","description":"com.stripe.android.model.CardBrand.MasterCard","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/index.html","searchKeys":["MasterCard","MasterCard(\"mastercard\", \"Mastercard\", R.drawable.stripe_ic_mastercard, pattern, Pattern.compile(\"^(2221|2222|2223|2224|2225|2226|2227|2228|2229|222|223|224|225|226|227|228|229|23|24|25|26|270|271|2720|50|51|52|53|54|55|56|57|58|59|67)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^2|5|6$\"),\n 2 to Pattern.compile(\"^(22|23|24|25|26|27|50|51|52|53|54|55|56|57|58|59|67)$\")\n ))","com.stripe.android.model.CardBrand.MasterCard"]},{"name":"Masterpass(setOf(\"masterpass\"))","description":"com.stripe.android.model.TokenizationMethod.Masterpass","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/index.html","searchKeys":["Masterpass","Masterpass(setOf(\"masterpass\"))","com.stripe.android.model.TokenizationMethod.Masterpass"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min"]},{"name":"Min(\"MIN\")","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/index.html","searchKeys":["Min","Min(\"MIN\")","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min"]},{"name":"NEXT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/index.html","searchKeys":["NEXT","NEXT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT"]},{"name":"Netbanking(\"netbanking\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/index.html","searchKeys":["Netbanking","Netbanking(\"netbanking\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Netbanking"]},{"name":"New(\"new\")","description":"com.stripe.android.model.BankAccount.Status.New","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/index.html","searchKeys":["New","New(\"new\")","com.stripe.android.model.BankAccount.Status.New"]},{"name":"None(\"none\")","description":"com.stripe.android.model.Source.Flow.None","location":"payments-core/com.stripe.android.model/-source/-flow/-none/index.html","searchKeys":["None","None(\"none\")","com.stripe.android.model.Source.Flow.None"]},{"name":"None(\"none\")","description":"com.stripe.android.model.SourceParams.Flow.None","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/index.html","searchKeys":["None","None(\"none\")","com.stripe.android.model.SourceParams.Flow.None"]},{"name":"None()","description":"com.stripe.android.view.BillingAddressFields.None","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/index.html","searchKeys":["None","None()","com.stripe.android.view.BillingAddressFields.None"]},{"name":"NotCurrentlyKnown(\"NOT_CURRENTLY_KNOWN\")","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/index.html","searchKeys":["NotCurrentlyKnown","NotCurrentlyKnown(\"NOT_CURRENTLY_KNOWN\")","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown"]},{"name":"NotRequired(\"not_required\")","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/index.html","searchKeys":["NotRequired","NotRequired(\"not_required\")","com.stripe.android.model.Source.Redirect.Status.NotRequired"]},{"name":"NotSupported(\"not_supported\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/index.html","searchKeys":["NotSupported","NotSupported(\"not_supported\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported"]},{"name":"Number()","description":"com.stripe.android.view.CardValidCallback.Fields.Number","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/index.html","searchKeys":["Number","Number()","com.stripe.android.view.CardValidCallback.Fields.Number"]},{"name":"ONE_TIME_CODE_ALREADY_REDEEMED()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/index.html","searchKeys":["ONE_TIME_CODE_ALREADY_REDEEMED","ONE_TIME_CODE_ALREADY_REDEEMED()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED"]},{"name":"ONE_TIME_CODE_EXPIRED()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/index.html","searchKeys":["ONE_TIME_CODE_EXPIRED","ONE_TIME_CODE_EXPIRED()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED"]},{"name":"ONE_TIME_CODE_INCORRECT()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/index.html","searchKeys":["ONE_TIME_CODE_INCORRECT","ONE_TIME_CODE_INCORRECT()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT"]},{"name":"ONE_TIME_CODE_TOO_MANY_ATTEMPTS()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/index.html","searchKeys":["ONE_TIME_CODE_TOO_MANY_ATTEMPTS","ONE_TIME_CODE_TOO_MANY_ATTEMPTS()","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS"]},{"name":"OffSession(\"off_session\")","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/index.html","searchKeys":["OffSession","OffSession(\"off_session\")","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession"]},{"name":"OffSession(\"off_session\")","description":"com.stripe.android.model.StripeIntent.Usage.OffSession","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/index.html","searchKeys":["OffSession","OffSession(\"off_session\")","com.stripe.android.model.StripeIntent.Usage.OffSession"]},{"name":"OnSession(\"on_session\")","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/index.html","searchKeys":["OnSession","OnSession(\"on_session\")","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession"]},{"name":"OnSession(\"on_session\")","description":"com.stripe.android.model.StripeIntent.Usage.OnSession","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/index.html","searchKeys":["OnSession","OnSession(\"on_session\")","com.stripe.android.model.StripeIntent.Usage.OnSession"]},{"name":"OneTime(\"one_time\")","description":"com.stripe.android.model.StripeIntent.Usage.OneTime","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/index.html","searchKeys":["OneTime","OneTime(\"one_time\")","com.stripe.android.model.StripeIntent.Usage.OneTime"]},{"name":"Optional(\"optional\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/index.html","searchKeys":["Optional","Optional(\"optional\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional"]},{"name":"Order(\"order\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/index.html","searchKeys":["Order","Order(\"order\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order"]},{"name":"Oxxo(\"oxxo\", isReusable, false, isVoucher, true, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/index.html","searchKeys":["Oxxo","Oxxo(\"oxxo\", isReusable, false, isVoucher, true, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Oxxo"]},{"name":"P24(\"p24\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.P24","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/index.html","searchKeys":["P24","P24(\"p24\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.P24"]},{"name":"PayIn4(\"payin4\")","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/index.html","searchKeys":["PayIn4","PayIn4(\"payin4\")","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4"]},{"name":"PayPal(\"paypal\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.PayPal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/index.html","searchKeys":["PayPal","PayPal(\"paypal\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.PayPal"]},{"name":"PciDocument(\"pci_document\")","description":"com.stripe.android.model.StripeFilePurpose.PciDocument","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/index.html","searchKeys":["PciDocument","PciDocument(\"pci_document\")","com.stripe.android.model.StripeFilePurpose.PciDocument"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.CodeVerification.Status.Pending"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.Redirect.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.Redirect.Status.Pending"]},{"name":"Pending(\"pending\")","description":"com.stripe.android.model.Source.Status.Pending","location":"payments-core/com.stripe.android.model/-source/-status/-pending/index.html","searchKeys":["Pending","Pending(\"pending\")","com.stripe.android.model.Source.Status.Pending"]},{"name":"Person(\"person\")","description":"com.stripe.android.model.Token.Type.Person","location":"payments-core/com.stripe.android.model/-token/-type/-person/index.html","searchKeys":["Person","Person(\"person\")","com.stripe.android.model.Token.Type.Person"]},{"name":"Phone()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/index.html","searchKeys":["Phone","Phone()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone"]},{"name":"Pii(\"pii\")","description":"com.stripe.android.model.Token.Type.Pii","location":"payments-core/com.stripe.android.model/-token/-type/-pii/index.html","searchKeys":["Pii","Pii(\"pii\")","com.stripe.android.model.Token.Type.Pii"]},{"name":"Postal()","description":"com.stripe.android.view.CardValidCallback.Fields.Postal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/index.html","searchKeys":["Postal","Postal()","com.stripe.android.view.CardValidCallback.Fields.Postal"]},{"name":"PostalCode()","description":"com.stripe.android.view.BillingAddressFields.PostalCode","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.BillingAddressFields.PostalCode"]},{"name":"PostalCode()","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.CardInputListener.FocusField.PostalCode"]},{"name":"PostalCode()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/index.html","searchKeys":["PostalCode","PostalCode()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode"]},{"name":"Prepaid(\"prepaid\")","description":"com.stripe.android.model.CardFunding.Prepaid","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/index.html","searchKeys":["Prepaid","Prepaid(\"prepaid\")","com.stripe.android.model.CardFunding.Prepaid"]},{"name":"Processing(\"processing\")","description":"com.stripe.android.model.StripeIntent.Status.Processing","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/index.html","searchKeys":["Processing","Processing(\"processing\")","com.stripe.android.model.StripeIntent.Status.Processing"]},{"name":"Production()","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/index.html","searchKeys":["Production","Production()","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production"]},{"name":"Production(WalletConstants.ENVIRONMENT_PRODUCTION)","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/index.html","searchKeys":["Production","Production(WalletConstants.ENVIRONMENT_PRODUCTION)","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production"]},{"name":"RESEND()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/index.html","searchKeys":["RESEND","RESEND()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND"]},{"name":"RateLimitError(\"rate_limit_error\")","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/index.html","searchKeys":["RateLimitError","RateLimitError(\"rate_limit_error\")","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError"]},{"name":"RateLimitError(\"rate_limit_error\")","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/index.html","searchKeys":["RateLimitError","RateLimitError(\"rate_limit_error\")","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError"]},{"name":"Receiver(\"receiver\")","description":"com.stripe.android.model.Source.Flow.Receiver","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/index.html","searchKeys":["Receiver","Receiver(\"receiver\")","com.stripe.android.model.Source.Flow.Receiver"]},{"name":"Receiver(\"receiver\")","description":"com.stripe.android.model.SourceParams.Flow.Receiver","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/index.html","searchKeys":["Receiver","Receiver(\"receiver\")","com.stripe.android.model.SourceParams.Flow.Receiver"]},{"name":"Recommended(\"recommended\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/index.html","searchKeys":["Recommended","Recommended(\"recommended\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended"]},{"name":"Redirect(\"redirect\")","description":"com.stripe.android.model.Source.Flow.Redirect","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/index.html","searchKeys":["Redirect","Redirect(\"redirect\")","com.stripe.android.model.Source.Flow.Redirect"]},{"name":"Redirect(\"redirect\")","description":"com.stripe.android.model.SourceParams.Flow.Redirect","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/index.html","searchKeys":["Redirect","Redirect(\"redirect\")","com.stripe.android.model.SourceParams.Flow.Redirect"]},{"name":"RedirectToUrl(\"redirect_to_url\")","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/index.html","searchKeys":["RedirectToUrl","RedirectToUrl(\"redirect_to_url\")","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl"]},{"name":"Rent(\"rent\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/index.html","searchKeys":["Rent","Rent(\"rent\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent"]},{"name":"RequestedByCustomer(\"requested_by_customer\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/index.html","searchKeys":["RequestedByCustomer","RequestedByCustomer(\"requested_by_customer\")","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer"]},{"name":"RequestedByCustomer(\"requested_by_customer\")","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/index.html","searchKeys":["RequestedByCustomer","RequestedByCustomer(\"requested_by_customer\")","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer"]},{"name":"Required(\"required\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/index.html","searchKeys":["Required","Required(\"required\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required"]},{"name":"RequiresAction(\"requires_action\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/index.html","searchKeys":["RequiresAction","RequiresAction(\"requires_action\")","com.stripe.android.model.StripeIntent.Status.RequiresAction"]},{"name":"RequiresCapture(\"requires_capture\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/index.html","searchKeys":["RequiresCapture","RequiresCapture(\"requires_capture\")","com.stripe.android.model.StripeIntent.Status.RequiresCapture"]},{"name":"RequiresConfirmation(\"requires_confirmation\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/index.html","searchKeys":["RequiresConfirmation","RequiresConfirmation(\"requires_confirmation\")","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation"]},{"name":"RequiresPaymentMethod(\"requires_payment_method\")","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/index.html","searchKeys":["RequiresPaymentMethod","RequiresPaymentMethod(\"requires_payment_method\")","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod"]},{"name":"Reusable(\"reusable\")","description":"com.stripe.android.model.Source.Usage.Reusable","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/index.html","searchKeys":["Reusable","Reusable(\"reusable\")","com.stripe.android.model.Source.Usage.Reusable"]},{"name":"SELECT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/index.html","searchKeys":["SELECT","SELECT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT"]},{"name":"SUBMIT()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/index.html","searchKeys":["SUBMIT","SUBMIT()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT"]},{"name":"SepaDebit(\"sepa_debit\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/index.html","searchKeys":["SepaDebit","SepaDebit(\"sepa_debit\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.SepaDebit"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.SourceOrder.Item.Type.Shipping"]},{"name":"Shipping(\"shipping\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/index.html","searchKeys":["Shipping","Shipping(\"shipping\")","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping"]},{"name":"SingleUse(\"single_use\")","description":"com.stripe.android.model.Source.Usage.SingleUse","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/index.html","searchKeys":["SingleUse","SingleUse(\"single_use\")","com.stripe.android.model.Source.Usage.SingleUse"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.SourceOrder.Item.Type.Sku"]},{"name":"Sku(\"sku\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/index.html","searchKeys":["Sku","Sku(\"sku\")","com.stripe.android.model.SourceOrderParams.Item.Type.Sku"]},{"name":"Sofort(\"sofort\", isReusable, false, isVoucher, false, requiresMandate, true)","description":"com.stripe.android.model.PaymentMethod.Type.Sofort","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/index.html","searchKeys":["Sofort","Sofort(\"sofort\", isReusable, false, isVoucher, false, requiresMandate, true)","com.stripe.android.model.PaymentMethod.Type.Sofort"]},{"name":"State()","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/index.html","searchKeys":["State","State()","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State"]},{"name":"Subscribe(\"subscribe\")","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/index.html","searchKeys":["Subscribe","Subscribe(\"subscribe\")","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.Source.CodeVerification.Status.Succeeded"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.Source.Redirect.Status.Succeeded"]},{"name":"Succeeded(\"succeeded\")","description":"com.stripe.android.model.StripeIntent.Status.Succeeded","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/index.html","searchKeys":["Succeeded","Succeeded(\"succeeded\")","com.stripe.android.model.StripeIntent.Status.Succeeded"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.SourceOrder.Item.Type.Tax"]},{"name":"Tax(\"tax\")","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/index.html","searchKeys":["Tax","Tax(\"tax\")","com.stripe.android.model.SourceOrderParams.Item.Type.Tax"]},{"name":"TaxDocumentUserUpload(\"tax_document_user_upload\")","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/index.html","searchKeys":["TaxDocumentUserUpload","TaxDocumentUserUpload(\"tax_document_user_upload\")","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload"]},{"name":"Test()","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/index.html","searchKeys":["Test","Test()","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test"]},{"name":"Test(WalletConstants.ENVIRONMENT_TEST)","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/index.html","searchKeys":["Test","Test(WalletConstants.ENVIRONMENT_TEST)","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test"]},{"name":"UNKNOWN_ERROR()","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/index.html","searchKeys":["UNKNOWN_ERROR","UNKNOWN_ERROR()","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR"]},{"name":"UnionPay(\"unionpay\", \"UnionPay\", R.drawable.stripe_ic_unionpay, pattern, Pattern.compile(\"^(62|81)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6|8$\"),\n ))","description":"com.stripe.android.model.CardBrand.UnionPay","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/index.html","searchKeys":["UnionPay","UnionPay(\"unionpay\", \"UnionPay\", R.drawable.stripe_ic_unionpay, pattern, Pattern.compile(\"^(62|81)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^6|8$\"),\n ))","com.stripe.android.model.CardBrand.UnionPay"]},{"name":"Unknown(\"unknown\")","description":"com.stripe.android.model.CardFunding.Unknown","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\")","com.stripe.android.model.CardFunding.Unknown"]},{"name":"Unknown(\"unknown\")","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\")","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown"]},{"name":"Unknown(\"unknown\", \"Unknown\", R.drawable.stripe_ic_unknown, cvcLength, setOf(3, 4), partialPatterns, emptyMap())","description":"com.stripe.android.model.CardBrand.Unknown","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/index.html","searchKeys":["Unknown","Unknown(\"unknown\", \"Unknown\", R.drawable.stripe_ic_unknown, cvcLength, setOf(3, 4), partialPatterns, emptyMap())","com.stripe.android.model.CardBrand.Unknown"]},{"name":"Upi(\"upi\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.Upi","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/index.html","searchKeys":["Upi","Upi(\"upi\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.Upi"]},{"name":"UseStripeSdk(\"use_stripe_sdk\")","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/index.html","searchKeys":["UseStripeSdk","UseStripeSdk(\"use_stripe_sdk\")","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk"]},{"name":"Validated(\"validated\")","description":"com.stripe.android.model.BankAccount.Status.Validated","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/index.html","searchKeys":["Validated","Validated(\"validated\")","com.stripe.android.model.BankAccount.Status.Validated"]},{"name":"VerificationFailed(\"verification_failed\")","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/index.html","searchKeys":["VerificationFailed","VerificationFailed(\"verification_failed\")","com.stripe.android.model.BankAccount.Status.VerificationFailed"]},{"name":"Verified(\"verified\")","description":"com.stripe.android.model.BankAccount.Status.Verified","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/index.html","searchKeys":["Verified","Verified(\"verified\")","com.stripe.android.model.BankAccount.Status.Verified"]},{"name":"Visa(\"visa\", \"Visa\", R.drawable.stripe_ic_visa, pattern, Pattern.compile(\"^(4)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^4$\")\n ))","description":"com.stripe.android.model.CardBrand.Visa","location":"payments-core/com.stripe.android.model/-card-brand/-visa/index.html","searchKeys":["Visa","Visa(\"visa\", \"Visa\", R.drawable.stripe_ic_visa, pattern, Pattern.compile(\"^(4)[0-9]*$\"), partialPatterns, mapOf(\n 1 to Pattern.compile(\"^4$\")\n ))","com.stripe.android.model.CardBrand.Visa"]},{"name":"VisaCheckout(setOf(\"visa_checkout\"))","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/index.html","searchKeys":["VisaCheckout","VisaCheckout(setOf(\"visa_checkout\"))","com.stripe.android.model.TokenizationMethod.VisaCheckout"]},{"name":"VoidInvoice(\"void_invoice\")","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/index.html","searchKeys":["VoidInvoice","VoidInvoice(\"void_invoice\")","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice"]},{"name":"WeChatPay(\"wechat_pay\", isReusable, false, isVoucher, false, requiresMandate, false)","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/index.html","searchKeys":["WeChatPay","WeChatPay(\"wechat_pay\", isReusable, false, isVoucher, false, requiresMandate, false)","com.stripe.android.model.PaymentMethod.Type.WeChatPay"]},{"name":"WeChatPayRedirect(\"wechat_pay_redirect_to_android_app\")","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/index.html","searchKeys":["WeChatPayRedirect","WeChatPayRedirect(\"wechat_pay_redirect_to_android_app\")","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect"]},{"name":"WeChatPayV1(\"wechat_pay_beta=v1\")","description":"com.stripe.android.StripeApiBeta.WeChatPayV1","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/index.html","searchKeys":["WeChatPayV1","WeChatPayV1(\"wechat_pay_beta=v1\")","com.stripe.android.StripeApiBeta.WeChatPayV1"]},{"name":"abstract class ActivityStarter","description":"com.stripe.android.view.ActivityStarter","location":"payments-core/com.stripe.android.view/-activity-starter/index.html","searchKeys":["ActivityStarter","abstract class ActivityStarter","com.stripe.android.view.ActivityStarter"]},{"name":"abstract class StripeActivity : AppCompatActivity","description":"com.stripe.android.view.StripeActivity","location":"payments-core/com.stripe.android.view/-stripe-activity/index.html","searchKeys":["StripeActivity","abstract class StripeActivity : AppCompatActivity","com.stripe.android.view.StripeActivity"]},{"name":"abstract class StripeException(stripeError: StripeError?, requestId: String?, statusCode: Int, cause: Throwable?, message: String?) : Exception","description":"com.stripe.android.exception.StripeException","location":"payments-core/com.stripe.android.exception/-stripe-exception/index.html","searchKeys":["StripeException","abstract class StripeException(stripeError: StripeError?, requestId: String?, statusCode: Int, cause: Throwable?, message: String?) : Exception","com.stripe.android.exception.StripeException"]},{"name":"abstract class StripeIntentResult : StripeModel","description":"com.stripe.android.StripeIntentResult","location":"payments-core/com.stripe.android/-stripe-intent-result/index.html","searchKeys":["StripeIntentResult","abstract class StripeIntentResult : StripeModel","com.stripe.android.StripeIntentResult"]},{"name":"abstract class StripeRequest","description":"com.stripe.android.networking.StripeRequest","location":"payments-core/com.stripe.android.networking/-stripe-request/index.html","searchKeys":["StripeRequest","abstract class StripeRequest","com.stripe.android.networking.StripeRequest"]},{"name":"abstract class TokenParams(tokenType: Token.Type, attribution: Set) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.TokenParams","location":"payments-core/com.stripe.android.model/-token-params/index.html","searchKeys":["TokenParams","abstract class TokenParams(tokenType: Token.Type, attribution: Set) : StripeParamsModel, Parcelable","com.stripe.android.model.TokenParams"]},{"name":"abstract fun configureWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithPaymentIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/configure-with-payment-intent.html","searchKeys":["configureWithPaymentIntent","abstract fun configureWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithPaymentIntent"]},{"name":"abstract fun configureWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithSetupIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/configure-with-setup-intent.html","searchKeys":["configureWithSetupIntent","abstract fun configureWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null, callback: PaymentSheet.FlowController.ConfigCallback)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.configureWithSetupIntent"]},{"name":"abstract fun confirm()","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.confirm","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/confirm.html","searchKeys":["confirm","abstract fun confirm()","com.stripe.android.paymentsheet.PaymentSheet.FlowController.confirm"]},{"name":"abstract fun create(lifecycleScope: CoroutineScope, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, activityResultLauncher: ActivityResultLauncher): GooglePayPaymentMethodLauncher","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherFactory.create","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-factory/create.html","searchKeys":["create","abstract fun create(lifecycleScope: CoroutineScope, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, activityResultLauncher: ActivityResultLauncher): GooglePayPaymentMethodLauncher","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherFactory.create"]},{"name":"abstract fun create(shippingInformation: ShippingInformation): List","description":"com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory.create","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-methods-factory/create.html","searchKeys":["create","abstract fun create(shippingInformation: ShippingInformation): List","com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory.create"]},{"name":"abstract fun createEphemeralKey(apiVersion: String, keyUpdateListener: EphemeralKeyUpdateListener)","description":"com.stripe.android.EphemeralKeyProvider.createEphemeralKey","location":"payments-core/com.stripe.android/-ephemeral-key-provider/create-ephemeral-key.html","searchKeys":["createEphemeralKey","abstract fun createEphemeralKey(apiVersion: String, keyUpdateListener: EphemeralKeyUpdateListener)","com.stripe.android.EphemeralKeyProvider.createEphemeralKey"]},{"name":"abstract fun debug(msg: String)","description":"com.stripe.android.Logger.debug","location":"payments-core/com.stripe.android/-logger/debug.html","searchKeys":["debug","abstract fun debug(msg: String)","com.stripe.android.Logger.debug"]},{"name":"abstract fun displayErrorMessage(message: String?)","description":"com.stripe.android.view.StripeEditText.ErrorMessageListener.displayErrorMessage","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-error-message-listener/display-error-message.html","searchKeys":["displayErrorMessage","abstract fun displayErrorMessage(message: String?)","com.stripe.android.view.StripeEditText.ErrorMessageListener.displayErrorMessage"]},{"name":"abstract fun error(msg: String, t: Throwable? = null)","description":"com.stripe.android.Logger.error","location":"payments-core/com.stripe.android/-logger/error.html","searchKeys":["error","abstract fun error(msg: String, t: Throwable? = null)","com.stripe.android.Logger.error"]},{"name":"abstract fun executeAsync(request: AnalyticsRequest)","description":"com.stripe.android.networking.AnalyticsRequestExecutor.executeAsync","location":"payments-core/com.stripe.android.networking/-analytics-request-executor/execute-async.html","searchKeys":["executeAsync","abstract fun executeAsync(request: AnalyticsRequest)","com.stripe.android.networking.AnalyticsRequestExecutor.executeAsync"]},{"name":"abstract fun getErrorMessage(shippingInformation: ShippingInformation): String","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.getErrorMessage","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/get-error-message.html","searchKeys":["getErrorMessage","abstract fun getErrorMessage(shippingInformation: ShippingInformation): String","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.getErrorMessage"]},{"name":"abstract fun getPaymentOption(): PaymentOption?","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.getPaymentOption","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/get-payment-option.html","searchKeys":["getPaymentOption","abstract fun getPaymentOption(): PaymentOption?","com.stripe.android.paymentsheet.PaymentSheet.FlowController.getPaymentOption"]},{"name":"abstract fun info(msg: String)","description":"com.stripe.android.Logger.info","location":"payments-core/com.stripe.android/-logger/info.html","searchKeys":["info","abstract fun info(msg: String)","com.stripe.android.Logger.info"]},{"name":"abstract fun isReady(): Flow","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.isReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/is-ready.html","searchKeys":["isReady","abstract fun isReady(): Flow","com.stripe.android.googlepaylauncher.GooglePayRepository.isReady"]},{"name":"abstract fun isValid(shippingInformation: ShippingInformation): Boolean","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.isValid","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/is-valid.html","searchKeys":["isValid","abstract fun isValid(shippingInformation: ShippingInformation): Boolean","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator.isValid"]},{"name":"abstract fun onAuthenticationRequest(data: String): Map","description":"com.stripe.android.AlipayAuthenticator.onAuthenticationRequest","location":"payments-core/com.stripe.android/-alipay-authenticator/on-authentication-request.html","searchKeys":["onAuthenticationRequest","abstract fun onAuthenticationRequest(data: String): Map","com.stripe.android.AlipayAuthenticator.onAuthenticationRequest"]},{"name":"abstract fun onCardComplete()","description":"com.stripe.android.view.CardInputListener.onCardComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-card-complete.html","searchKeys":["onCardComplete","abstract fun onCardComplete()","com.stripe.android.view.CardInputListener.onCardComplete"]},{"name":"abstract fun onCommunicatingStateChanged(isCommunicating: Boolean)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onCommunicatingStateChanged","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-communicating-state-changed.html","searchKeys":["onCommunicatingStateChanged","abstract fun onCommunicatingStateChanged(isCommunicating: Boolean)","com.stripe.android.PaymentSession.PaymentSessionListener.onCommunicatingStateChanged"]},{"name":"abstract fun onConfigured(success: Boolean, error: Throwable?)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback.onConfigured","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-config-callback/on-configured.html","searchKeys":["onConfigured","abstract fun onConfigured(success: Boolean, error: Throwable?)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback.onConfigured"]},{"name":"abstract fun onCustomerRetrieved(customer: Customer)","description":"com.stripe.android.CustomerSession.CustomerRetrievalListener.onCustomerRetrieved","location":"payments-core/com.stripe.android/-customer-session/-customer-retrieval-listener/on-customer-retrieved.html","searchKeys":["onCustomerRetrieved","abstract fun onCustomerRetrieved(customer: Customer)","com.stripe.android.CustomerSession.CustomerRetrievalListener.onCustomerRetrieved"]},{"name":"abstract fun onCvcComplete()","description":"com.stripe.android.view.CardInputListener.onCvcComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-cvc-complete.html","searchKeys":["onCvcComplete","abstract fun onCvcComplete()","com.stripe.android.view.CardInputListener.onCvcComplete"]},{"name":"abstract fun onDeleteEmpty()","description":"com.stripe.android.view.StripeEditText.DeleteEmptyListener.onDeleteEmpty","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-delete-empty-listener/on-delete-empty.html","searchKeys":["onDeleteEmpty","abstract fun onDeleteEmpty()","com.stripe.android.view.StripeEditText.DeleteEmptyListener.onDeleteEmpty"]},{"name":"abstract fun onError(e: Exception)","description":"com.stripe.android.ApiResultCallback.onError","location":"payments-core/com.stripe.android/-api-result-callback/on-error.html","searchKeys":["onError","abstract fun onError(e: Exception)","com.stripe.android.ApiResultCallback.onError"]},{"name":"abstract fun onError(errorCode: Int, errorMessage: String)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onError","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: Int, errorMessage: String)","com.stripe.android.PaymentSession.PaymentSessionListener.onError"]},{"name":"abstract fun onError(errorCode: Int, errorMessage: String, stripeError: StripeError?)","description":"com.stripe.android.CustomerSession.RetrievalListener.onError","location":"payments-core/com.stripe.android/-customer-session/-retrieval-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: Int, errorMessage: String, stripeError: StripeError?)","com.stripe.android.CustomerSession.RetrievalListener.onError"]},{"name":"abstract fun onError(errorCode: IssuingCardPinService.CardPinActionError, errorMessage: String?, exception: Throwable?)","description":"com.stripe.android.IssuingCardPinService.Listener.onError","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-listener/on-error.html","searchKeys":["onError","abstract fun onError(errorCode: IssuingCardPinService.CardPinActionError, errorMessage: String?, exception: Throwable?)","com.stripe.android.IssuingCardPinService.Listener.onError"]},{"name":"abstract fun onExpirationComplete()","description":"com.stripe.android.view.CardInputListener.onExpirationComplete","location":"payments-core/com.stripe.android.view/-card-input-listener/on-expiration-complete.html","searchKeys":["onExpirationComplete","abstract fun onExpirationComplete()","com.stripe.android.view.CardInputListener.onExpirationComplete"]},{"name":"abstract fun onFocusChange(focusField: CardInputListener.FocusField)","description":"com.stripe.android.view.CardInputListener.onFocusChange","location":"payments-core/com.stripe.android.view/-card-input-listener/on-focus-change.html","searchKeys":["onFocusChange","abstract fun onFocusChange(focusField: CardInputListener.FocusField)","com.stripe.android.view.CardInputListener.onFocusChange"]},{"name":"abstract fun onInputChanged(isValid: Boolean)","description":"com.stripe.android.view.BecsDebitWidget.ValidParamsCallback.onInputChanged","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-valid-params-callback/on-input-changed.html","searchKeys":["onInputChanged","abstract fun onInputChanged(isValid: Boolean)","com.stripe.android.view.BecsDebitWidget.ValidParamsCallback.onInputChanged"]},{"name":"abstract fun onInputChanged(isValid: Boolean, invalidFields: Set)","description":"com.stripe.android.view.CardValidCallback.onInputChanged","location":"payments-core/com.stripe.android.view/-card-valid-callback/on-input-changed.html","searchKeys":["onInputChanged","abstract fun onInputChanged(isValid: Boolean, invalidFields: Set)","com.stripe.android.view.CardValidCallback.onInputChanged"]},{"name":"abstract fun onIssuingCardPinRetrieved(pin: String)","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener.onIssuingCardPinRetrieved","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-retrieval-listener/on-issuing-card-pin-retrieved.html","searchKeys":["onIssuingCardPinRetrieved","abstract fun onIssuingCardPinRetrieved(pin: String)","com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener.onIssuingCardPinRetrieved"]},{"name":"abstract fun onIssuingCardPinUpdated()","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener.onIssuingCardPinUpdated","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-update-listener/on-issuing-card-pin-updated.html","searchKeys":["onIssuingCardPinUpdated","abstract fun onIssuingCardPinUpdated()","com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener.onIssuingCardPinUpdated"]},{"name":"abstract fun onKeyUpdate(stripeResponseJson: String)","description":"com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdate","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/on-key-update.html","searchKeys":["onKeyUpdate","abstract fun onKeyUpdate(stripeResponseJson: String)","com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdate"]},{"name":"abstract fun onKeyUpdateFailure(responseCode: Int, message: String)","description":"com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdateFailure","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/on-key-update-failure.html","searchKeys":["onKeyUpdateFailure","abstract fun onKeyUpdateFailure(responseCode: Int, message: String)","com.stripe.android.EphemeralKeyUpdateListener.onKeyUpdateFailure"]},{"name":"abstract fun onPaymentMethodRetrieved(paymentMethod: PaymentMethod)","description":"com.stripe.android.CustomerSession.PaymentMethodRetrievalListener.onPaymentMethodRetrieved","location":"payments-core/com.stripe.android/-customer-session/-payment-method-retrieval-listener/on-payment-method-retrieved.html","searchKeys":["onPaymentMethodRetrieved","abstract fun onPaymentMethodRetrieved(paymentMethod: PaymentMethod)","com.stripe.android.CustomerSession.PaymentMethodRetrievalListener.onPaymentMethodRetrieved"]},{"name":"abstract fun onPaymentMethodsRetrieved(paymentMethods: List)","description":"com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener.onPaymentMethodsRetrieved","location":"payments-core/com.stripe.android/-customer-session/-payment-methods-retrieval-listener/on-payment-methods-retrieved.html","searchKeys":["onPaymentMethodsRetrieved","abstract fun onPaymentMethodsRetrieved(paymentMethods: List)","com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener.onPaymentMethodsRetrieved"]},{"name":"abstract fun onPaymentOption(paymentOption: PaymentOption?)","description":"com.stripe.android.paymentsheet.PaymentOptionCallback.onPaymentOption","location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/on-payment-option.html","searchKeys":["onPaymentOption","abstract fun onPaymentOption(paymentOption: PaymentOption?)","com.stripe.android.paymentsheet.PaymentOptionCallback.onPaymentOption"]},{"name":"abstract fun onPaymentSessionDataChanged(data: PaymentSessionData)","description":"com.stripe.android.PaymentSession.PaymentSessionListener.onPaymentSessionDataChanged","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/on-payment-session-data-changed.html","searchKeys":["onPaymentSessionDataChanged","abstract fun onPaymentSessionDataChanged(data: PaymentSessionData)","com.stripe.android.PaymentSession.PaymentSessionListener.onPaymentSessionDataChanged"]},{"name":"abstract fun onPaymentSheetResult(paymentSheetResult: PaymentSheetResult)","description":"com.stripe.android.paymentsheet.PaymentSheetResultCallback.onPaymentSheetResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/on-payment-sheet-result.html","searchKeys":["onPaymentSheetResult","abstract fun onPaymentSheetResult(paymentSheetResult: PaymentSheetResult)","com.stripe.android.paymentsheet.PaymentSheetResultCallback.onPaymentSheetResult"]},{"name":"abstract fun onReady(isReady: Boolean)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback.onReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-ready-callback/on-ready.html","searchKeys":["onReady","abstract fun onReady(isReady: Boolean)","com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback.onReady"]},{"name":"abstract fun onReady(isReady: Boolean)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback.onReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-ready-callback/on-ready.html","searchKeys":["onReady","abstract fun onReady(isReady: Boolean)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback.onReady"]},{"name":"abstract fun onResult(result: GooglePayLauncher.Result)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback.onResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result-callback/on-result.html","searchKeys":["onResult","abstract fun onResult(result: GooglePayLauncher.Result)","com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback.onResult"]},{"name":"abstract fun onResult(result: GooglePayPaymentMethodLauncher.Result)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback.onResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result-callback/on-result.html","searchKeys":["onResult","abstract fun onResult(result: GooglePayPaymentMethodLauncher.Result)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback.onResult"]},{"name":"abstract fun onSourceRetrieved(source: Source)","description":"com.stripe.android.CustomerSession.SourceRetrievalListener.onSourceRetrieved","location":"payments-core/com.stripe.android/-customer-session/-source-retrieval-listener/on-source-retrieved.html","searchKeys":["onSourceRetrieved","abstract fun onSourceRetrieved(source: Source)","com.stripe.android.CustomerSession.SourceRetrievalListener.onSourceRetrieved"]},{"name":"abstract fun onSuccess(result: ResultType)","description":"com.stripe.android.ApiResultCallback.onSuccess","location":"payments-core/com.stripe.android/-api-result-callback/on-success.html","searchKeys":["onSuccess","abstract fun onSuccess(result: ResultType)","com.stripe.android.ApiResultCallback.onSuccess"]},{"name":"abstract fun onTextChanged(text: String)","description":"com.stripe.android.view.StripeEditText.AfterTextChangedListener.onTextChanged","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-after-text-changed-listener/on-text-changed.html","searchKeys":["onTextChanged","abstract fun onTextChanged(text: String)","com.stripe.android.view.StripeEditText.AfterTextChangedListener.onTextChanged"]},{"name":"abstract fun presentPaymentOptions()","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.presentPaymentOptions","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/present-payment-options.html","searchKeys":["presentPaymentOptions","abstract fun presentPaymentOptions()","com.stripe.android.paymentsheet.PaymentSheet.FlowController.presentPaymentOptions"]},{"name":"abstract fun requiresAction(): Boolean","description":"com.stripe.android.model.StripeIntent.requiresAction","location":"payments-core/com.stripe.android.model/-stripe-intent/requires-action.html","searchKeys":["requiresAction","abstract fun requiresAction(): Boolean","com.stripe.android.model.StripeIntent.requiresAction"]},{"name":"abstract fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.StripeIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-stripe-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","abstract fun requiresConfirmation(): Boolean","com.stripe.android.model.StripeIntent.requiresConfirmation"]},{"name":"abstract fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmStripeIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","abstract fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmStripeIntentParams.shouldUseStripeSdk"]},{"name":"abstract fun start(args: ArgsType)","description":"com.stripe.android.view.AuthActivityStarter.start","location":"payments-core/com.stripe.android.view/-auth-activity-starter/start.html","searchKeys":["start","abstract fun start(args: ArgsType)","com.stripe.android.view.AuthActivityStarter.start"]},{"name":"abstract fun startActivityForResult(target: Class<*>, extras: Bundle, requestCode: Int)","description":"com.stripe.android.view.AuthActivityStarterHost.startActivityForResult","location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/start-activity-for-result.html","searchKeys":["startActivityForResult","abstract fun startActivityForResult(target: Class<*>, extras: Bundle, requestCode: Int)","com.stripe.android.view.AuthActivityStarterHost.startActivityForResult"]},{"name":"abstract fun toBundle(): Bundle","description":"com.stripe.android.view.ActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","abstract fun toBundle(): Bundle","com.stripe.android.view.ActivityStarter.Result.toBundle"]},{"name":"abstract fun toParamMap(): Map","description":"com.stripe.android.model.StripeParamsModel.toParamMap","location":"payments-core/com.stripe.android.model/-stripe-params-model/to-param-map.html","searchKeys":["toParamMap","abstract fun toParamMap(): Map","com.stripe.android.model.StripeParamsModel.toParamMap"]},{"name":"abstract fun translate(httpCode: Int, errorMessage: String?, stripeError: StripeError?): String","description":"com.stripe.android.view.i18n.ErrorMessageTranslator.translate","location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/translate.html","searchKeys":["translate","abstract fun translate(httpCode: Int, errorMessage: String?, stripeError: StripeError?): String","com.stripe.android.view.i18n.ErrorMessageTranslator.translate"]},{"name":"abstract fun warning(msg: String)","description":"com.stripe.android.Logger.warning","location":"payments-core/com.stripe.android/-logger/warning.html","searchKeys":["warning","abstract fun warning(msg: String)","com.stripe.android.Logger.warning"]},{"name":"abstract fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmStripeIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","abstract fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmStripeIntentParams","com.stripe.android.model.ConfirmStripeIntentParams.withShouldUseStripeSdk"]},{"name":"abstract operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.model.StripeModel.equals","location":"payments-core/com.stripe.android.model/-stripe-model/equals.html","searchKeys":["equals","abstract operator override fun equals(other: Any?): Boolean","com.stripe.android.model.StripeModel.equals"]},{"name":"abstract override fun hashCode(): Int","description":"com.stripe.android.model.StripeModel.hashCode","location":"payments-core/com.stripe.android.model/-stripe-model/hash-code.html","searchKeys":["hashCode","abstract override fun hashCode(): Int","com.stripe.android.model.StripeModel.hashCode"]},{"name":"abstract suspend fun authenticate(host: AuthActivityStarterHost, authenticatable: Authenticatable, requestOptions: ApiRequest.Options)","description":"com.stripe.android.payments.core.authentication.PaymentAuthenticator.authenticate","location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/authenticate.html","searchKeys":["authenticate","abstract suspend fun authenticate(host: AuthActivityStarterHost, authenticatable: Authenticatable, requestOptions: ApiRequest.Options)","com.stripe.android.payments.core.authentication.PaymentAuthenticator.authenticate"]},{"name":"abstract val baseUrl: String","description":"com.stripe.android.networking.StripeRequest.baseUrl","location":"payments-core/com.stripe.android.networking/-stripe-request/base-url.html","searchKeys":["baseUrl","abstract val baseUrl: String","com.stripe.android.networking.StripeRequest.baseUrl"]},{"name":"abstract val clientSecret: String","description":"com.stripe.android.model.ConfirmStripeIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/client-secret.html","searchKeys":["clientSecret","abstract val clientSecret: String","com.stripe.android.model.ConfirmStripeIntentParams.clientSecret"]},{"name":"abstract val clientSecret: String?","description":"com.stripe.android.model.StripeIntent.clientSecret","location":"payments-core/com.stripe.android.model/-stripe-intent/client-secret.html","searchKeys":["clientSecret","abstract val clientSecret: String?","com.stripe.android.model.StripeIntent.clientSecret"]},{"name":"abstract val created: Long","description":"com.stripe.android.model.StripeIntent.created","location":"payments-core/com.stripe.android.model/-stripe-intent/created.html","searchKeys":["created","abstract val created: Long","com.stripe.android.model.StripeIntent.created"]},{"name":"abstract val description: String?","description":"com.stripe.android.model.StripeIntent.description","location":"payments-core/com.stripe.android.model/-stripe-intent/description.html","searchKeys":["description","abstract val description: String?","com.stripe.android.model.StripeIntent.description"]},{"name":"abstract val failureMessage: String?","description":"com.stripe.android.StripeIntentResult.failureMessage","location":"payments-core/com.stripe.android/-stripe-intent-result/failure-message.html","searchKeys":["failureMessage","abstract val failureMessage: String?","com.stripe.android.StripeIntentResult.failureMessage"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.CustomerPaymentSource.id","location":"payments-core/com.stripe.android.model/-customer-payment-source/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.CustomerPaymentSource.id"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.StripeIntent.id","location":"payments-core/com.stripe.android.model/-stripe-intent/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.StripeIntent.id"]},{"name":"abstract val id: String?","description":"com.stripe.android.model.StripePaymentSource.id","location":"payments-core/com.stripe.android.model/-stripe-payment-source/id.html","searchKeys":["id","abstract val id: String?","com.stripe.android.model.StripePaymentSource.id"]},{"name":"abstract val intent: T","description":"com.stripe.android.StripeIntentResult.intent","location":"payments-core/com.stripe.android/-stripe-intent-result/intent.html","searchKeys":["intent","abstract val intent: T","com.stripe.android.StripeIntentResult.intent"]},{"name":"abstract val isConfirmed: Boolean","description":"com.stripe.android.model.StripeIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-stripe-intent/is-confirmed.html","searchKeys":["isConfirmed","abstract val isConfirmed: Boolean","com.stripe.android.model.StripeIntent.isConfirmed"]},{"name":"abstract val isLiveMode: Boolean","description":"com.stripe.android.model.StripeIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-stripe-intent/is-live-mode.html","searchKeys":["isLiveMode","abstract val isLiveMode: Boolean","com.stripe.android.model.StripeIntent.isLiveMode"]},{"name":"abstract val lastErrorMessage: String?","description":"com.stripe.android.model.StripeIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-stripe-intent/last-error-message.html","searchKeys":["lastErrorMessage","abstract val lastErrorMessage: String?","com.stripe.android.model.StripeIntent.lastErrorMessage"]},{"name":"abstract val nextActionData: StripeIntent.NextActionData?","description":"com.stripe.android.model.StripeIntent.nextActionData","location":"payments-core/com.stripe.android.model/-stripe-intent/next-action-data.html","searchKeys":["nextActionData","abstract val nextActionData: StripeIntent.NextActionData?","com.stripe.android.model.StripeIntent.nextActionData"]},{"name":"abstract val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.StripeIntent.nextActionType","location":"payments-core/com.stripe.android.model/-stripe-intent/next-action-type.html","searchKeys":["nextActionType","abstract val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.StripeIntent.nextActionType"]},{"name":"abstract val params: Map?","description":"com.stripe.android.networking.StripeRequest.params","location":"payments-core/com.stripe.android.networking/-stripe-request/params.html","searchKeys":["params","abstract val params: Map?","com.stripe.android.networking.StripeRequest.params"]},{"name":"abstract val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/params-list.html","searchKeys":["paramsList","abstract val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.paramsList"]},{"name":"abstract val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.StripeIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method.html","searchKeys":["paymentMethod","abstract val paymentMethod: PaymentMethod?","com.stripe.android.model.StripeIntent.paymentMethod"]},{"name":"abstract val paymentMethodId: String?","description":"com.stripe.android.model.StripeIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method-id.html","searchKeys":["paymentMethodId","abstract val paymentMethodId: String?","com.stripe.android.model.StripeIntent.paymentMethodId"]},{"name":"abstract val paymentMethodTypes: List","description":"com.stripe.android.model.StripeIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-stripe-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","abstract val paymentMethodTypes: List","com.stripe.android.model.StripeIntent.paymentMethodTypes"]},{"name":"abstract val status: StripeIntent.Status?","description":"com.stripe.android.model.StripeIntent.status","location":"payments-core/com.stripe.android.model/-stripe-intent/status.html","searchKeys":["status","abstract val status: StripeIntent.Status?","com.stripe.android.model.StripeIntent.status"]},{"name":"abstract val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerPaymentSource.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-payment-source/tokenization-method.html","searchKeys":["tokenizationMethod","abstract val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerPaymentSource.tokenizationMethod"]},{"name":"abstract val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.TypeData.type","location":"payments-core/com.stripe.android.model/-payment-method/-type-data/type.html","searchKeys":["type","abstract val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.TypeData.type"]},{"name":"abstract val typeDataParams: Map","description":"com.stripe.android.model.TokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-token-params/type-data-params.html","searchKeys":["typeDataParams","abstract val typeDataParams: Map","com.stripe.android.model.TokenParams.typeDataParams"]},{"name":"abstract var returnUrl: String?","description":"com.stripe.android.model.ConfirmStripeIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/return-url.html","searchKeys":["returnUrl","abstract var returnUrl: String?","com.stripe.android.model.ConfirmStripeIntentParams.returnUrl"]},{"name":"annotation class ErrorCode","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ErrorCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-error-code/index.html","searchKeys":["ErrorCode","annotation class ErrorCode","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ErrorCode"]},{"name":"annotation class IOContext","description":"com.stripe.android.payments.core.injection.IOContext","location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/index.html","searchKeys":["IOContext","annotation class IOContext","com.stripe.android.payments.core.injection.IOContext"]},{"name":"annotation class InjectorKey","description":"com.stripe.android.payments.core.injection.InjectorKey","location":"payments-core/com.stripe.android.payments.core.injection/-injector-key/index.html","searchKeys":["InjectorKey","annotation class InjectorKey","com.stripe.android.payments.core.injection.InjectorKey"]},{"name":"annotation class IntentAuthenticatorKey(value: KClass)","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/index.html","searchKeys":["IntentAuthenticatorKey","annotation class IntentAuthenticatorKey(value: KClass)","com.stripe.android.payments.core.injection.IntentAuthenticatorKey"]},{"name":"annotation class IntentAuthenticatorMap","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorMap","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/index.html","searchKeys":["IntentAuthenticatorMap","annotation class IntentAuthenticatorMap","com.stripe.android.payments.core.injection.IntentAuthenticatorMap"]},{"name":"annotation class Outcome","description":"com.stripe.android.StripeIntentResult.Outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/index.html","searchKeys":["Outcome","annotation class Outcome","com.stripe.android.StripeIntentResult.Outcome"]},{"name":"annotation class SourceType","description":"com.stripe.android.model.Source.SourceType","location":"payments-core/com.stripe.android.model/-source/-source-type/index.html","searchKeys":["SourceType","annotation class SourceType","com.stripe.android.model.Source.SourceType"]},{"name":"annotation class UIContext","description":"com.stripe.android.payments.core.injection.UIContext","location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/index.html","searchKeys":["UIContext","annotation class UIContext","com.stripe.android.payments.core.injection.UIContext"]},{"name":"class APIConnectionException(message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.APIConnectionException","location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/index.html","searchKeys":["APIConnectionException","class APIConnectionException(message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.APIConnectionException"]},{"name":"class APIException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.APIException","location":"payments-core/com.stripe.android.exception/-a-p-i-exception/index.html","searchKeys":["APIException","class APIException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.APIException"]},{"name":"class AddPaymentMethodActivity : StripeActivity","description":"com.stripe.android.view.AddPaymentMethodActivity","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/index.html","searchKeys":["AddPaymentMethodActivity","class AddPaymentMethodActivity : StripeActivity","com.stripe.android.view.AddPaymentMethodActivity"]},{"name":"class AddPaymentMethodActivityStarter : ActivityStarter ","description":"com.stripe.android.view.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/index.html","searchKeys":["AddPaymentMethodActivityStarter","class AddPaymentMethodActivityStarter : ActivityStarter ","com.stripe.android.view.AddPaymentMethodActivityStarter"]},{"name":"class AnalyticsRequestFactory","description":"com.stripe.android.networking.AnalyticsRequestFactory","location":"payments-core/com.stripe.android.networking/-analytics-request-factory/index.html","searchKeys":["AnalyticsRequestFactory","class AnalyticsRequestFactory","com.stripe.android.networking.AnalyticsRequestFactory"]},{"name":"class AuthenticationException : StripeException","description":"com.stripe.android.exception.AuthenticationException","location":"payments-core/com.stripe.android.exception/-authentication-exception/index.html","searchKeys":["AuthenticationException","class AuthenticationException : StripeException","com.stripe.android.exception.AuthenticationException"]},{"name":"class BecsDebitMandateAcceptanceTextFactory(context: Context)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/index.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory","class BecsDebitMandateAcceptanceTextFactory(context: Context)","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory"]},{"name":"class BecsDebitMandateAcceptanceTextView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : AppCompatTextView","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/index.html","searchKeys":["BecsDebitMandateAcceptanceTextView","class BecsDebitMandateAcceptanceTextView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : AppCompatTextView","com.stripe.android.view.BecsDebitMandateAcceptanceTextView"]},{"name":"class BecsDebitWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, companyName: String) : FrameLayout","description":"com.stripe.android.view.BecsDebitWidget","location":"payments-core/com.stripe.android.view/-becs-debit-widget/index.html","searchKeys":["BecsDebitWidget","class BecsDebitWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, companyName: String) : FrameLayout","com.stripe.android.view.BecsDebitWidget"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder
","description":"com.stripe.android.model.Address.Builder","location":"payments-core/com.stripe.android.model/-address/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder
","com.stripe.android.model.Address.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.AddressJapanParams.Builder","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.AddressJapanParams.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentAuthConfig.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentAuthConfig.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethod.BillingDetails.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethod.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethod.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.PaymentSessionConfig.Builder","location":"payments-core/com.stripe.android/-payment-session-config/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.PaymentSessionConfig.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PersonTokenParams.Relationship.Builder"]},{"name":"class Builder : ObjectBuilder ","description":"com.stripe.android.model.PersonTokenParams.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/index.html","searchKeys":["Builder","class Builder : ObjectBuilder ","com.stripe.android.model.PersonTokenParams.Builder"]},{"name":"class CardException(stripeError: StripeError, requestId: String?) : StripeException","description":"com.stripe.android.exception.CardException","location":"payments-core/com.stripe.android.exception/-card-exception/index.html","searchKeys":["CardException","class CardException(stripeError: StripeError, requestId: String?) : StripeException","com.stripe.android.exception.CardException"]},{"name":"class CardFormView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","description":"com.stripe.android.view.CardFormView","location":"payments-core/com.stripe.android.view/-card-form-view/index.html","searchKeys":["CardFormView","class CardFormView constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","com.stripe.android.view.CardFormView"]},{"name":"class CardInputWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout, CardWidget","description":"com.stripe.android.view.CardInputWidget","location":"payments-core/com.stripe.android.view/-card-input-widget/index.html","searchKeys":["CardInputWidget","class CardInputWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout, CardWidget","com.stripe.android.view.CardInputWidget"]},{"name":"class CardMultilineWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, shouldShowPostalCode: Boolean) : LinearLayout, CardWidget","description":"com.stripe.android.view.CardMultilineWidget","location":"payments-core/com.stripe.android.view/-card-multiline-widget/index.html","searchKeys":["CardMultilineWidget","class CardMultilineWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int, shouldShowPostalCode: Boolean) : LinearLayout, CardWidget","com.stripe.android.view.CardMultilineWidget"]},{"name":"class CardNumberEditText : StripeEditText","description":"com.stripe.android.view.CardNumberEditText","location":"payments-core/com.stripe.android.view/-card-number-edit-text/index.html","searchKeys":["CardNumberEditText","class CardNumberEditText : StripeEditText","com.stripe.android.view.CardNumberEditText"]},{"name":"class CustomerSession","description":"com.stripe.android.CustomerSession","location":"payments-core/com.stripe.android/-customer-session/index.html","searchKeys":["CustomerSession","class CustomerSession","com.stripe.android.CustomerSession"]},{"name":"class CvcEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.CvcEditText","location":"payments-core/com.stripe.android.view/-cvc-edit-text/index.html","searchKeys":["CvcEditText","class CvcEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.CvcEditText"]},{"name":"class ExpiryDateEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.ExpiryDateEditText","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/index.html","searchKeys":["ExpiryDateEditText","class ExpiryDateEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.ExpiryDateEditText"]},{"name":"class Factory(appInfo: AppInfo?, apiVersion: String, sdkVersion: String)","description":"com.stripe.android.networking.ApiRequest.Factory","location":"payments-core/com.stripe.android.networking/-api-request/-factory/index.html","searchKeys":["Factory","class Factory(appInfo: AppInfo?, apiVersion: String, sdkVersion: String)","com.stripe.android.networking.ApiRequest.Factory"]},{"name":"class Failure(error: Throwable) : PaymentSheet.FlowController.Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/index.html","searchKeys":["Failure","class Failure(error: Throwable) : PaymentSheet.FlowController.Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure"]},{"name":"class GooglePayConfig constructor(publishableKey: String, connectedAccountId: String?)","description":"com.stripe.android.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/index.html","searchKeys":["GooglePayConfig","class GooglePayConfig constructor(publishableKey: String, connectedAccountId: String?)","com.stripe.android.GooglePayConfig"]},{"name":"class GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean)","description":"com.stripe.android.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/index.html","searchKeys":["GooglePayJsonFactory","class GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean)","com.stripe.android.GooglePayJsonFactory"]},{"name":"class GooglePayLauncher","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/index.html","searchKeys":["GooglePayLauncher","class GooglePayLauncher","com.stripe.android.googlepaylauncher.GooglePayLauncher"]},{"name":"class GooglePayLauncherContract : ActivityResultContract ","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/index.html","searchKeys":["GooglePayLauncherContract","class GooglePayLauncherContract : ActivityResultContract ","com.stripe.android.googlepaylauncher.GooglePayLauncherContract"]},{"name":"class GooglePayLauncherModule","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherModule","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-module/index.html","searchKeys":["GooglePayLauncherModule","class GooglePayLauncherModule","com.stripe.android.googlepaylauncher.GooglePayLauncherModule"]},{"name":"class GooglePayPaymentMethodLauncher","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/index.html","searchKeys":["GooglePayPaymentMethodLauncher","class GooglePayPaymentMethodLauncher","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher"]},{"name":"class GooglePayPaymentMethodLauncherContract : ActivityResultContract ","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/index.html","searchKeys":["GooglePayPaymentMethodLauncherContract","class GooglePayPaymentMethodLauncherContract : ActivityResultContract ","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract"]},{"name":"class InvalidRequestException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.InvalidRequestException","location":"payments-core/com.stripe.android.exception/-invalid-request-exception/index.html","searchKeys":["InvalidRequestException","class InvalidRequestException(stripeError: StripeError?, requestId: String?, statusCode: Int, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.InvalidRequestException"]},{"name":"class IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService","location":"payments-core/com.stripe.android/-issuing-card-pin-service/index.html","searchKeys":["IssuingCardPinService","class IssuingCardPinService","com.stripe.android.IssuingCardPinService"]},{"name":"class PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig","location":"payments-core/com.stripe.android/-payment-auth-config/index.html","searchKeys":["PaymentAuthConfig","class PaymentAuthConfig","com.stripe.android.PaymentAuthConfig"]},{"name":"class PaymentAuthWebViewActivity : AppCompatActivity","description":"com.stripe.android.view.PaymentAuthWebViewActivity","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/index.html","searchKeys":["PaymentAuthWebViewActivity","class PaymentAuthWebViewActivity : AppCompatActivity","com.stripe.android.view.PaymentAuthWebViewActivity"]},{"name":"class PaymentFlowActivity : StripeActivity","description":"com.stripe.android.view.PaymentFlowActivity","location":"payments-core/com.stripe.android.view/-payment-flow-activity/index.html","searchKeys":["PaymentFlowActivity","class PaymentFlowActivity : StripeActivity","com.stripe.android.view.PaymentFlowActivity"]},{"name":"class PaymentFlowActivityStarter : ActivityStarter ","description":"com.stripe.android.view.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/index.html","searchKeys":["PaymentFlowActivityStarter","class PaymentFlowActivityStarter : ActivityStarter ","com.stripe.android.view.PaymentFlowActivityStarter"]},{"name":"class PaymentFlowViewPager constructor(context: Context, attrs: AttributeSet?, isSwipingAllowed: Boolean) : ViewPager","description":"com.stripe.android.view.PaymentFlowViewPager","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/index.html","searchKeys":["PaymentFlowViewPager","class PaymentFlowViewPager constructor(context: Context, attrs: AttributeSet?, isSwipingAllowed: Boolean) : ViewPager","com.stripe.android.view.PaymentFlowViewPager"]},{"name":"class PaymentIntentJsonParser : ModelJsonParser ","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/index.html","searchKeys":["PaymentIntentJsonParser","class PaymentIntentJsonParser : ModelJsonParser ","com.stripe.android.model.parsers.PaymentIntentJsonParser"]},{"name":"class PaymentMethodsActivity : AppCompatActivity","description":"com.stripe.android.view.PaymentMethodsActivity","location":"payments-core/com.stripe.android.view/-payment-methods-activity/index.html","searchKeys":["PaymentMethodsActivity","class PaymentMethodsActivity : AppCompatActivity","com.stripe.android.view.PaymentMethodsActivity"]},{"name":"class PaymentMethodsActivityStarter : ActivityStarter ","description":"com.stripe.android.view.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/index.html","searchKeys":["PaymentMethodsActivityStarter","class PaymentMethodsActivityStarter : ActivityStarter ","com.stripe.android.view.PaymentMethodsActivityStarter"]},{"name":"class PaymentSession","description":"com.stripe.android.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/index.html","searchKeys":["PaymentSession","class PaymentSession","com.stripe.android.PaymentSession"]},{"name":"class PaymentSheet","description":"com.stripe.android.paymentsheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/index.html","searchKeys":["PaymentSheet","class PaymentSheet","com.stripe.android.paymentsheet.PaymentSheet"]},{"name":"class PaymentSheetContract : ActivityResultContract ","description":"com.stripe.android.paymentsheet.PaymentSheetContract","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/index.html","searchKeys":["PaymentSheetContract","class PaymentSheetContract : ActivityResultContract ","com.stripe.android.paymentsheet.PaymentSheetContract"]},{"name":"class PermissionException(stripeError: StripeError, requestId: String?) : StripeException","description":"com.stripe.android.exception.PermissionException","location":"payments-core/com.stripe.android.exception/-permission-exception/index.html","searchKeys":["PermissionException","class PermissionException(stripeError: StripeError, requestId: String?) : StripeException","com.stripe.android.exception.PermissionException"]},{"name":"class PostalCodeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","description":"com.stripe.android.view.PostalCodeEditText","location":"payments-core/com.stripe.android.view/-postal-code-edit-text/index.html","searchKeys":["PostalCodeEditText","class PostalCodeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : StripeEditText","com.stripe.android.view.PostalCodeEditText"]},{"name":"class RateLimitException(stripeError: StripeError?, requestId: String?, message: String?, cause: Throwable?) : StripeException","description":"com.stripe.android.exception.RateLimitException","location":"payments-core/com.stripe.android.exception/-rate-limit-exception/index.html","searchKeys":["RateLimitException","class RateLimitException(stripeError: StripeError?, requestId: String?, message: String?, cause: Throwable?) : StripeException","com.stripe.android.exception.RateLimitException"]},{"name":"class ShippingInfoWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","description":"com.stripe.android.view.ShippingInfoWidget","location":"payments-core/com.stripe.android.view/-shipping-info-widget/index.html","searchKeys":["ShippingInfoWidget","class ShippingInfoWidget constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : LinearLayout","com.stripe.android.view.ShippingInfoWidget"]},{"name":"class Stripe","description":"com.stripe.android.Stripe","location":"payments-core/com.stripe.android/-stripe/index.html","searchKeys":["Stripe","class Stripe","com.stripe.android.Stripe"]},{"name":"const val ALIPAY: String","description":"com.stripe.android.model.Source.SourceType.Companion.ALIPAY","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-a-l-i-p-a-y.html","searchKeys":["ALIPAY","const val ALIPAY: String","com.stripe.android.model.Source.SourceType.Companion.ALIPAY"]},{"name":"const val BANCONTACT: String","description":"com.stripe.android.model.Source.SourceType.Companion.BANCONTACT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-b-a-n-c-o-n-t-a-c-t.html","searchKeys":["BANCONTACT","const val BANCONTACT: String","com.stripe.android.model.Source.SourceType.Companion.BANCONTACT"]},{"name":"const val CANCELED: Int = 3","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.CANCELED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-c-a-n-c-e-l-e-d.html","searchKeys":["CANCELED","const val CANCELED: Int = 3","com.stripe.android.StripeIntentResult.Outcome.Companion.CANCELED"]},{"name":"const val CARD: String","description":"com.stripe.android.model.Source.SourceType.Companion.CARD","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-c-a-r-d.html","searchKeys":["CARD","const val CARD: String","com.stripe.android.model.Source.SourceType.Companion.CARD"]},{"name":"const val ENABLE_LOGGING: String","description":"com.stripe.android.payments.core.injection.ENABLE_LOGGING","location":"payments-core/com.stripe.android.payments.core.injection/-e-n-a-b-l-e_-l-o-g-g-i-n-g.html","searchKeys":["ENABLE_LOGGING","const val ENABLE_LOGGING: String","com.stripe.android.payments.core.injection.ENABLE_LOGGING"]},{"name":"const val EPS: String","description":"com.stripe.android.model.Source.SourceType.Companion.EPS","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-e-p-s.html","searchKeys":["EPS","const val EPS: String","com.stripe.android.model.Source.SourceType.Companion.EPS"]},{"name":"const val FAILED: Int = 2","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.FAILED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-f-a-i-l-e-d.html","searchKeys":["FAILED","const val FAILED: Int = 2","com.stripe.android.StripeIntentResult.Outcome.Companion.FAILED"]},{"name":"const val GIROPAY: String","description":"com.stripe.android.model.Source.SourceType.Companion.GIROPAY","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-g-i-r-o-p-a-y.html","searchKeys":["GIROPAY","const val GIROPAY: String","com.stripe.android.model.Source.SourceType.Companion.GIROPAY"]},{"name":"const val IDEAL: String","description":"com.stripe.android.model.Source.SourceType.Companion.IDEAL","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-i-d-e-a-l.html","searchKeys":["IDEAL","const val IDEAL: String","com.stripe.android.model.Source.SourceType.Companion.IDEAL"]},{"name":"const val KLARNA: String","description":"com.stripe.android.model.Source.SourceType.Companion.KLARNA","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-k-l-a-r-n-a.html","searchKeys":["KLARNA","const val KLARNA: String","com.stripe.android.model.Source.SourceType.Companion.KLARNA"]},{"name":"const val MULTIBANCO: String","description":"com.stripe.android.model.Source.SourceType.Companion.MULTIBANCO","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-m-u-l-t-i-b-a-n-c-o.html","searchKeys":["MULTIBANCO","const val MULTIBANCO: String","com.stripe.android.model.Source.SourceType.Companion.MULTIBANCO"]},{"name":"const val P24: String","description":"com.stripe.android.model.Source.SourceType.Companion.P24","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-p24.html","searchKeys":["P24","const val P24: String","com.stripe.android.model.Source.SourceType.Companion.P24"]},{"name":"const val PRODUCT_USAGE: String","description":"com.stripe.android.payments.core.injection.PRODUCT_USAGE","location":"payments-core/com.stripe.android.payments.core.injection/-p-r-o-d-u-c-t_-u-s-a-g-e.html","searchKeys":["PRODUCT_USAGE","const val PRODUCT_USAGE: String","com.stripe.android.payments.core.injection.PRODUCT_USAGE"]},{"name":"const val REQUEST_CODE: Int = 6000","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6000","com.stripe.android.view.PaymentMethodsActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val REQUEST_CODE: Int = 6001","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6001","com.stripe.android.view.AddPaymentMethodActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val REQUEST_CODE: Int = 6002","description":"com.stripe.android.view.PaymentFlowActivityStarter.Companion.REQUEST_CODE","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-companion/-r-e-q-u-e-s-t_-c-o-d-e.html","searchKeys":["REQUEST_CODE","const val REQUEST_CODE: Int = 6002","com.stripe.android.view.PaymentFlowActivityStarter.Companion.REQUEST_CODE"]},{"name":"const val SEPA_DEBIT: String","description":"com.stripe.android.model.Source.SourceType.Companion.SEPA_DEBIT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-s-e-p-a_-d-e-b-i-t.html","searchKeys":["SEPA_DEBIT","const val SEPA_DEBIT: String","com.stripe.android.model.Source.SourceType.Companion.SEPA_DEBIT"]},{"name":"const val SOFORT: String","description":"com.stripe.android.model.Source.SourceType.Companion.SOFORT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-s-o-f-o-r-t.html","searchKeys":["SOFORT","const val SOFORT: String","com.stripe.android.model.Source.SourceType.Companion.SOFORT"]},{"name":"const val SUCCEEDED: Int = 1","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.SUCCEEDED","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-s-u-c-c-e-e-d-e-d.html","searchKeys":["SUCCEEDED","const val SUCCEEDED: Int = 1","com.stripe.android.StripeIntentResult.Outcome.Companion.SUCCEEDED"]},{"name":"const val THREE_D_SECURE: String","description":"com.stripe.android.model.Source.SourceType.Companion.THREE_D_SECURE","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-t-h-r-e-e_-d_-s-e-c-u-r-e.html","searchKeys":["THREE_D_SECURE","const val THREE_D_SECURE: String","com.stripe.android.model.Source.SourceType.Companion.THREE_D_SECURE"]},{"name":"const val TIMEDOUT: Int = 4","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.TIMEDOUT","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-t-i-m-e-d-o-u-t.html","searchKeys":["TIMEDOUT","const val TIMEDOUT: Int = 4","com.stripe.android.StripeIntentResult.Outcome.Companion.TIMEDOUT"]},{"name":"const val UNDEFINED_PUBLISHABLE_KEY: String","description":"com.stripe.android.networking.ApiRequest.Options.Companion.UNDEFINED_PUBLISHABLE_KEY","location":"payments-core/com.stripe.android.networking/-api-request/-options/-companion/-u-n-d-e-f-i-n-e-d_-p-u-b-l-i-s-h-a-b-l-e_-k-e-y.html","searchKeys":["UNDEFINED_PUBLISHABLE_KEY","const val UNDEFINED_PUBLISHABLE_KEY: String","com.stripe.android.networking.ApiRequest.Options.Companion.UNDEFINED_PUBLISHABLE_KEY"]},{"name":"const val UNKNOWN: Int = 0","description":"com.stripe.android.StripeIntentResult.Outcome.Companion.UNKNOWN","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/-u-n-k-n-o-w-n.html","searchKeys":["UNKNOWN","const val UNKNOWN: Int = 0","com.stripe.android.StripeIntentResult.Outcome.Companion.UNKNOWN"]},{"name":"const val UNKNOWN: String","description":"com.stripe.android.model.Source.SourceType.Companion.UNKNOWN","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-u-n-k-n-o-w-n.html","searchKeys":["UNKNOWN","const val UNKNOWN: String","com.stripe.android.model.Source.SourceType.Companion.UNKNOWN"]},{"name":"const val VERSION: String","description":"com.stripe.android.Stripe.Companion.VERSION","location":"payments-core/com.stripe.android/-stripe/-companion/-v-e-r-s-i-o-n.html","searchKeys":["VERSION","const val VERSION: String","com.stripe.android.Stripe.Companion.VERSION"]},{"name":"const val WECHAT: String","description":"com.stripe.android.model.Source.SourceType.Companion.WECHAT","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/-w-e-c-h-a-t.html","searchKeys":["WECHAT","const val WECHAT: String","com.stripe.android.model.Source.SourceType.Companion.WECHAT"]},{"name":"data class AccountParams : TokenParams","description":"com.stripe.android.model.AccountParams","location":"payments-core/com.stripe.android.model/-account-params/index.html","searchKeys":["AccountParams","data class AccountParams : TokenParams","com.stripe.android.model.AccountParams"]},{"name":"data class Address : StripeModel, StripeParamsModel","description":"com.stripe.android.model.Address","location":"payments-core/com.stripe.android.model/-address/index.html","searchKeys":["Address","data class Address : StripeModel, StripeParamsModel","com.stripe.android.model.Address"]},{"name":"data class AddressJapanParams(city: String?, country: String?, line1: String?, line2: String?, postalCode: String?, state: String?, town: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AddressJapanParams","location":"payments-core/com.stripe.android.model/-address-japan-params/index.html","searchKeys":["AddressJapanParams","data class AddressJapanParams(city: String?, country: String?, line1: String?, line2: String?, postalCode: String?, state: String?, town: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AddressJapanParams"]},{"name":"data class AmexExpressCheckoutWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-amex-express-checkout-wallet/index.html","searchKeys":["AmexExpressCheckoutWallet","data class AmexExpressCheckoutWallet : Wallet","com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet"]},{"name":"data class AnalyticsRequest(params: Map) : StripeRequest","description":"com.stripe.android.networking.AnalyticsRequest","location":"payments-core/com.stripe.android.networking/-analytics-request/index.html","searchKeys":["AnalyticsRequest","data class AnalyticsRequest(params: Map) : StripeRequest","com.stripe.android.networking.AnalyticsRequest"]},{"name":"data class ApiRequest : StripeRequest","description":"com.stripe.android.networking.ApiRequest","location":"payments-core/com.stripe.android.networking/-api-request/index.html","searchKeys":["ApiRequest","data class ApiRequest : StripeRequest","com.stripe.android.networking.ApiRequest"]},{"name":"data class AppInfo : Parcelable","description":"com.stripe.android.AppInfo","location":"payments-core/com.stripe.android/-app-info/index.html","searchKeys":["AppInfo","data class AppInfo : Parcelable","com.stripe.android.AppInfo"]},{"name":"data class ApplePayWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.ApplePayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-apple-pay-wallet/index.html","searchKeys":["ApplePayWallet","data class ApplePayWallet : Wallet","com.stripe.android.model.wallets.Wallet.ApplePayWallet"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.AddPaymentMethodActivityStarter.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args"]},{"name":"data class Args : ActivityStarter.Args","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/index.html","searchKeys":["Args","data class Args : ActivityStarter.Args","com.stripe.android.view.PaymentMethodsActivityStarter.Args"]},{"name":"data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String?) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/index.html","searchKeys":["Args","data class Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String?) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args"]},{"name":"data class AuBecsDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","data class AuBecsDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.AuBecsDebit"]},{"name":"data class AuBecsDebit(bsbNumber: String, accountNumber: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/index.html","searchKeys":["AuBecsDebit","data class AuBecsDebit(bsbNumber: String, accountNumber: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit"]},{"name":"data class BacsDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/index.html","searchKeys":["BacsDebit","data class BacsDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.BacsDebit"]},{"name":"data class BacsDebit(accountNumber: String, sortCode: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/index.html","searchKeys":["BacsDebit","data class BacsDebit(accountNumber: String, sortCode: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit"]},{"name":"data class BankAccount : StripeModel, StripePaymentSource","description":"com.stripe.android.model.BankAccount","location":"payments-core/com.stripe.android.model/-bank-account/index.html","searchKeys":["BankAccount","data class BankAccount : StripeModel, StripePaymentSource","com.stripe.android.model.BankAccount"]},{"name":"data class BankAccountTokenParams constructor(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type?, accountHolderName: String?, routingNumber: String?) : TokenParams","description":"com.stripe.android.model.BankAccountTokenParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/index.html","searchKeys":["BankAccountTokenParams","data class BankAccountTokenParams constructor(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type?, accountHolderName: String?, routingNumber: String?) : TokenParams","com.stripe.android.model.BankAccountTokenParams"]},{"name":"data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/index.html","searchKeys":["BillingAddressConfig","data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig"]},{"name":"data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/index.html","searchKeys":["BillingAddressConfig","data class BillingAddressConfig constructor(isRequired: Boolean, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig"]},{"name":"data class BillingAddressParameters constructor(isRequired: Boolean, format: GooglePayJsonFactory.BillingAddressParameters.Format, isPhoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/index.html","searchKeys":["BillingAddressParameters","data class BillingAddressParameters constructor(isRequired: Boolean, format: GooglePayJsonFactory.BillingAddressParameters.Format, isPhoneNumberRequired: Boolean) : Parcelable","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters"]},{"name":"data class BillingDetails constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeModel, StripeParamsModel","description":"com.stripe.android.model.PaymentMethod.BillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/index.html","searchKeys":["BillingDetails","data class BillingDetails constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeModel, StripeParamsModel","com.stripe.android.model.PaymentMethod.BillingDetails"]},{"name":"data class Blik(code: String) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/index.html","searchKeys":["Blik","data class Blik(code: String) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.Blik"]},{"name":"data class Card : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Card","location":"payments-core/com.stripe.android.model/-payment-method/-card/index.html","searchKeys":["Card","data class Card : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Card"]},{"name":"data class Card : SourceTypeModel","description":"com.stripe.android.model.SourceTypeModel.Card","location":"payments-core/com.stripe.android.model/-source-type-model/-card/index.html","searchKeys":["Card","data class Card : SourceTypeModel","com.stripe.android.model.SourceTypeModel.Card"]},{"name":"data class Card : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Card","location":"payments-core/com.stripe.android.model/-card/index.html","searchKeys":["Card","data class Card : StripeModel, StripePaymentSource","com.stripe.android.model.Card"]},{"name":"data class Card : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Card","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/index.html","searchKeys":["Card","data class Card : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Card"]},{"name":"data class Card(cvc: String?, network: String?) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/index.html","searchKeys":["Card","data class Card(cvc: String?, network: String?) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.Card"]},{"name":"data class CardParams : TokenParams","description":"com.stripe.android.model.CardParams","location":"payments-core/com.stripe.android.model/-card-params/index.html","searchKeys":["CardParams","data class CardParams : TokenParams","com.stripe.android.model.CardParams"]},{"name":"data class CardPresent : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.CardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-card-present/index.html","searchKeys":["CardPresent","data class CardPresent : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.CardPresent"]},{"name":"data class Checks : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.Checks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/index.html","searchKeys":["Checks","data class Checks : StripeModel","com.stripe.android.model.PaymentMethod.Card.Checks"]},{"name":"data class CodeVerification : StripeModel","description":"com.stripe.android.model.Source.CodeVerification","location":"payments-core/com.stripe.android.model/-source/-code-verification/index.html","searchKeys":["CodeVerification","data class CodeVerification : StripeModel","com.stripe.android.model.Source.CodeVerification"]},{"name":"data class Company(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, directorsProvided: Boolean?, executivesProvided: Boolean?, name: String?, nameKana: String?, nameKanji: String?, ownersProvided: Boolean?, phone: String?, taxId: String?, taxIdRegistrar: String?, vatId: String?, verification: AccountParams.BusinessTypeParams.Company.Verification?) : AccountParams.BusinessTypeParams","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/index.html","searchKeys":["Company","data class Company(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, directorsProvided: Boolean?, executivesProvided: Boolean?, name: String?, nameKana: String?, nameKanji: String?, ownersProvided: Boolean?, phone: String?, taxId: String?, taxIdRegistrar: String?, vatId: String?, verification: AccountParams.BusinessTypeParams.Company.Verification?) : AccountParams.BusinessTypeParams","com.stripe.android.model.AccountParams.BusinessTypeParams.Company"]},{"name":"data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/index.html","searchKeys":["Completed","data class Completed(paymentMethod: PaymentMethod) : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed"]},{"name":"data class Configuration constructor(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration?, googlePay: PaymentSheet.GooglePayConfiguration?, primaryButtonColor: ColorStateList?) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/index.html","searchKeys":["Configuration","data class Configuration constructor(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration?, googlePay: PaymentSheet.GooglePayConfiguration?, primaryButtonColor: ColorStateList?) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.Configuration"]},{"name":"data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/index.html","searchKeys":["Config","data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config"]},{"name":"data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/index.html","searchKeys":["Config","data class Config constructor(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig, existingPaymentMethodRequired: Boolean) : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config"]},{"name":"data class ConfirmPaymentIntentParams : ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/index.html","searchKeys":["ConfirmPaymentIntentParams","data class ConfirmPaymentIntentParams : ConfirmStripeIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams"]},{"name":"data class ConfirmSetupIntentParams : ConfirmStripeIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/index.html","searchKeys":["ConfirmSetupIntentParams","data class ConfirmSetupIntentParams : ConfirmStripeIntentParams","com.stripe.android.model.ConfirmSetupIntentParams"]},{"name":"data class Customer : StripeModel","description":"com.stripe.android.model.Customer","location":"payments-core/com.stripe.android.model/-customer/index.html","searchKeys":["Customer","data class Customer : StripeModel","com.stripe.android.model.Customer"]},{"name":"data class CustomerBankAccount(bankAccount: BankAccount) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerBankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/index.html","searchKeys":["CustomerBankAccount","data class CustomerBankAccount(bankAccount: BankAccount) : CustomerPaymentSource","com.stripe.android.model.CustomerBankAccount"]},{"name":"data class CustomerCard(card: Card) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerCard","location":"payments-core/com.stripe.android.model/-customer-card/index.html","searchKeys":["CustomerCard","data class CustomerCard(card: Card) : CustomerPaymentSource","com.stripe.android.model.CustomerCard"]},{"name":"data class CustomerConfiguration(id: String, ephemeralKeySecret: String) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/index.html","searchKeys":["CustomerConfiguration","data class CustomerConfiguration(id: String, ephemeralKeySecret: String) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration"]},{"name":"data class CustomerSource(source: Source) : CustomerPaymentSource","description":"com.stripe.android.model.CustomerSource","location":"payments-core/com.stripe.android.model/-customer-source/index.html","searchKeys":["CustomerSource","data class CustomerSource(source: Source) : CustomerPaymentSource","com.stripe.android.model.CustomerSource"]},{"name":"data class CvcTokenParams(cvc: String) : TokenParams","description":"com.stripe.android.model.CvcTokenParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/index.html","searchKeys":["CvcTokenParams","data class CvcTokenParams(cvc: String) : TokenParams","com.stripe.android.model.CvcTokenParams"]},{"name":"data class DateOfBirth(day: Int, month: Int, year: Int) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.DateOfBirth","location":"payments-core/com.stripe.android.model/-date-of-birth/index.html","searchKeys":["DateOfBirth","data class DateOfBirth(day: Int, month: Int, year: Int) : StripeParamsModel, Parcelable","com.stripe.android.model.DateOfBirth"]},{"name":"data class DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?) : Parcelable","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/index.html","searchKeys":["DirectoryServerEncryption","data class DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?) : Parcelable","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption"]},{"name":"data class DisplayOxxoDetails(expiresAfter: Int, number: String?, hostedVoucherUrl: String?) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/index.html","searchKeys":["DisplayOxxoDetails","data class DisplayOxxoDetails(expiresAfter: Int, number: String?, hostedVoucherUrl: String?) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document"]},{"name":"data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Document","location":"payments-core/com.stripe.android.model/-person-token-params/-document/index.html","searchKeys":["Document","data class Document constructor(front: String?, back: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Document"]},{"name":"data class EphemeralKey : StripeModel","description":"com.stripe.android.EphemeralKey","location":"payments-core/com.stripe.android/-ephemeral-key/index.html","searchKeys":["EphemeralKey","data class EphemeralKey : StripeModel","com.stripe.android.EphemeralKey"]},{"name":"data class Error : StripeModel","description":"com.stripe.android.model.PaymentIntent.Error","location":"payments-core/com.stripe.android.model/-payment-intent/-error/index.html","searchKeys":["Error","data class Error : StripeModel","com.stripe.android.model.PaymentIntent.Error"]},{"name":"data class Error : StripeModel","description":"com.stripe.android.model.SetupIntent.Error","location":"payments-core/com.stripe.android.model/-setup-intent/-error/index.html","searchKeys":["Error","data class Error : StripeModel","com.stripe.android.model.SetupIntent.Error"]},{"name":"data class Failed(error: Throwable) : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable) : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed"]},{"name":"data class Failed(error: Throwable) : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable) : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Failed"]},{"name":"data class Failed(error: Throwable, errorCode: Int) : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/index.html","searchKeys":["Failed","data class Failed(error: Throwable, errorCode: Int) : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed"]},{"name":"data class Failure : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-failure/index.html","searchKeys":["Failure","data class Failure : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure"]},{"name":"data class FileLink constructor(create: Boolean, expiresAt: Long?, metadata: Map?) : Parcelable","description":"com.stripe.android.model.StripeFileParams.FileLink","location":"payments-core/com.stripe.android.model/-stripe-file-params/-file-link/index.html","searchKeys":["FileLink","data class FileLink constructor(create: Boolean, expiresAt: Long?, metadata: Map?) : Parcelable","com.stripe.android.model.StripeFileParams.FileLink"]},{"name":"data class Fpx : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Fpx","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/index.html","searchKeys":["Fpx","data class Fpx : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Fpx"]},{"name":"data class Fpx(bank: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/index.html","searchKeys":["Fpx","data class Fpx(bank: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Fpx"]},{"name":"data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String?) : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/index.html","searchKeys":["GooglePayConfiguration","data class GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String?) : Parcelable","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration"]},{"name":"data class GooglePayResult : Parcelable","description":"com.stripe.android.model.GooglePayResult","location":"payments-core/com.stripe.android.model/-google-pay-result/index.html","searchKeys":["GooglePayResult","data class GooglePayResult : Parcelable","com.stripe.android.model.GooglePayResult"]},{"name":"data class GooglePayWallet : Wallet, Parcelable","description":"com.stripe.android.model.wallets.Wallet.GooglePayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-google-pay-wallet/index.html","searchKeys":["GooglePayWallet","data class GooglePayWallet : Wallet, Parcelable","com.stripe.android.model.wallets.Wallet.GooglePayWallet"]},{"name":"data class Ideal : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Ideal","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/index.html","searchKeys":["Ideal","data class Ideal : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Ideal"]},{"name":"data class Ideal(bank: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/index.html","searchKeys":["Ideal","data class Ideal(bank: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Ideal"]},{"name":"data class Individual(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, ssnLast4: String?, verification: AccountParams.BusinessTypeParams.Individual.Verification?) : AccountParams.BusinessTypeParams","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/index.html","searchKeys":["Individual","data class Individual(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, ssnLast4: String?, verification: AccountParams.BusinessTypeParams.Individual.Verification?) : AccountParams.BusinessTypeParams","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual"]},{"name":"data class IssuingCardPin(pin: String) : StripeModel","description":"com.stripe.android.model.IssuingCardPin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/index.html","searchKeys":["IssuingCardPin","data class IssuingCardPin(pin: String) : StripeModel","com.stripe.android.model.IssuingCardPin"]},{"name":"data class Item : StripeModel","description":"com.stripe.android.model.SourceOrder.Item","location":"payments-core/com.stripe.android.model/-source-order/-item/index.html","searchKeys":["Item","data class Item : StripeModel","com.stripe.android.model.SourceOrder.Item"]},{"name":"data class Item(type: SourceOrderParams.Item.Type?, amount: Int?, currency: String?, description: String?, parent: String?, quantity: Int?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams.Item","location":"payments-core/com.stripe.android.model/-source-order-params/-item/index.html","searchKeys":["Item","data class Item(type: SourceOrderParams.Item.Type?, amount: Int?, currency: String?, description: String?, parent: String?, quantity: Int?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams.Item"]},{"name":"data class Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set) : StripeModel","description":"com.stripe.android.model.Source.Klarna","location":"payments-core/com.stripe.android.model/-source/-klarna/index.html","searchKeys":["Klarna","data class Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set) : StripeModel","com.stripe.android.model.Source.Klarna"]},{"name":"data class KlarnaSourceParams constructor(purchaseCountry: String, lineItems: List, customPaymentMethods: Set, billingEmail: String?, billingPhone: String?, billingAddress: Address?, billingFirstName: String?, billingLastName: String?, billingDob: DateOfBirth?, pageOptions: KlarnaSourceParams.PaymentPageOptions?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.KlarnaSourceParams","location":"payments-core/com.stripe.android.model/-klarna-source-params/index.html","searchKeys":["KlarnaSourceParams","data class KlarnaSourceParams constructor(purchaseCountry: String, lineItems: List, customPaymentMethods: Set, billingEmail: String?, billingPhone: String?, billingAddress: Address?, billingFirstName: String?, billingLastName: String?, billingDob: DateOfBirth?, pageOptions: KlarnaSourceParams.PaymentPageOptions?) : StripeParamsModel, Parcelable","com.stripe.android.model.KlarnaSourceParams"]},{"name":"data class LineItem constructor(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int?) : Parcelable","description":"com.stripe.android.model.KlarnaSourceParams.LineItem","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/index.html","searchKeys":["LineItem","data class LineItem constructor(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int?) : Parcelable","com.stripe.android.model.KlarnaSourceParams.LineItem"]},{"name":"data class MandateDataParams(type: MandateDataParams.Type) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.MandateDataParams","location":"payments-core/com.stripe.android.model/-mandate-data-params/index.html","searchKeys":["MandateDataParams","data class MandateDataParams(type: MandateDataParams.Type) : StripeParamsModel, Parcelable","com.stripe.android.model.MandateDataParams"]},{"name":"data class MasterpassWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/index.html","searchKeys":["MasterpassWallet","data class MasterpassWallet : Wallet","com.stripe.android.model.wallets.Wallet.MasterpassWallet"]},{"name":"data class MerchantInfo(merchantName: String?) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.MerchantInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-merchant-info/index.html","searchKeys":["MerchantInfo","data class MerchantInfo(merchantName: String?) : Parcelable","com.stripe.android.GooglePayJsonFactory.MerchantInfo"]},{"name":"data class Netbanking : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/index.html","searchKeys":["Netbanking","data class Netbanking : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Netbanking"]},{"name":"data class Netbanking(bank: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/index.html","searchKeys":["Netbanking","data class Netbanking(bank: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Netbanking"]},{"name":"data class Networks(available: Set, selectionMandatory: Boolean, preferred: String?) : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.Networks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/index.html","searchKeys":["Networks","data class Networks(available: Set, selectionMandatory: Boolean, preferred: String?) : StripeModel","com.stripe.android.model.PaymentMethod.Card.Networks"]},{"name":"data class Online : MandateDataParams.Type","description":"com.stripe.android.model.MandateDataParams.Type.Online","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/index.html","searchKeys":["Online","data class Online : MandateDataParams.Type","com.stripe.android.model.MandateDataParams.Type.Online"]},{"name":"data class Options(apiKey: String, stripeAccount: String?, idempotencyKey: String?) : Parcelable","description":"com.stripe.android.networking.ApiRequest.Options","location":"payments-core/com.stripe.android.networking/-api-request/-options/index.html","searchKeys":["Options","data class Options(apiKey: String, stripeAccount: String?, idempotencyKey: String?) : Parcelable","com.stripe.android.networking.ApiRequest.Options"]},{"name":"data class Owner : StripeModel","description":"com.stripe.android.model.Source.Owner","location":"payments-core/com.stripe.android.model/-source/-owner/index.html","searchKeys":["Owner","data class Owner : StripeModel","com.stripe.android.model.Source.Owner"]},{"name":"data class OwnerParams constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceParams.OwnerParams","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/index.html","searchKeys":["OwnerParams","data class OwnerParams constructor(address: Address?, email: String?, name: String?, phone: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceParams.OwnerParams"]},{"name":"data class PaymentConfiguration : Parcelable","description":"com.stripe.android.PaymentConfiguration","location":"payments-core/com.stripe.android/-payment-configuration/index.html","searchKeys":["PaymentConfiguration","data class PaymentConfiguration : Parcelable","com.stripe.android.PaymentConfiguration"]},{"name":"data class PaymentIntent : StripeIntent","description":"com.stripe.android.model.PaymentIntent","location":"payments-core/com.stripe.android.model/-payment-intent/index.html","searchKeys":["PaymentIntent","data class PaymentIntent : StripeIntent","com.stripe.android.model.PaymentIntent"]},{"name":"data class PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config) : GooglePayLauncherContract.Args","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-payment-intent-args/index.html","searchKeys":["PaymentIntentArgs","data class PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config) : GooglePayLauncherContract.Args","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs"]},{"name":"data class PaymentIntentResult : StripeIntentResult ","description":"com.stripe.android.PaymentIntentResult","location":"payments-core/com.stripe.android/-payment-intent-result/index.html","searchKeys":["PaymentIntentResult","data class PaymentIntentResult : StripeIntentResult ","com.stripe.android.PaymentIntentResult"]},{"name":"data class PaymentMethod : StripeModel","description":"com.stripe.android.model.PaymentMethod","location":"payments-core/com.stripe.android.model/-payment-method/index.html","searchKeys":["PaymentMethod","data class PaymentMethod : StripeModel","com.stripe.android.model.PaymentMethod"]},{"name":"data class PaymentMethodCreateParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-payment-method-create-params/index.html","searchKeys":["PaymentMethodCreateParams","data class PaymentMethodCreateParams : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams"]},{"name":"data class PaymentOption(drawableResourceId: Int, label: String)","description":"com.stripe.android.paymentsheet.model.PaymentOption","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/index.html","searchKeys":["PaymentOption","data class PaymentOption(drawableResourceId: Int, label: String)","com.stripe.android.paymentsheet.model.PaymentOption"]},{"name":"data class PaymentPageOptions(logoUrl: String?, backgroundImageUrl: String?, pageTitle: String?, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/index.html","searchKeys":["PaymentPageOptions","data class PaymentPageOptions(logoUrl: String?, backgroundImageUrl: String?, pageTitle: String?, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType?) : StripeParamsModel, Parcelable","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions"]},{"name":"data class PaymentSessionConfig : Parcelable","description":"com.stripe.android.PaymentSessionConfig","location":"payments-core/com.stripe.android/-payment-session-config/index.html","searchKeys":["PaymentSessionConfig","data class PaymentSessionConfig : Parcelable","com.stripe.android.PaymentSessionConfig"]},{"name":"data class PaymentSessionData : Parcelable","description":"com.stripe.android.PaymentSessionData","location":"payments-core/com.stripe.android/-payment-session-data/index.html","searchKeys":["PaymentSessionData","data class PaymentSessionData : Parcelable","com.stripe.android.PaymentSessionData"]},{"name":"data class PersonTokenParams(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, relationship: PersonTokenParams.Relationship?, ssnLast4: String?, verification: PersonTokenParams.Verification?) : TokenParams","description":"com.stripe.android.model.PersonTokenParams","location":"payments-core/com.stripe.android.model/-person-token-params/index.html","searchKeys":["PersonTokenParams","data class PersonTokenParams(address: Address?, addressKana: AddressJapanParams?, addressKanji: AddressJapanParams?, dateOfBirth: DateOfBirth?, email: String?, firstName: String?, firstNameKana: String?, firstNameKanji: String?, gender: String?, idNumber: String?, lastName: String?, lastNameKana: String?, lastNameKanji: String?, maidenName: String?, metadata: Map?, phone: String?, relationship: PersonTokenParams.Relationship?, ssnLast4: String?, verification: PersonTokenParams.Verification?) : TokenParams","com.stripe.android.model.PersonTokenParams"]},{"name":"data class RadarSession(id: String) : StripeModel","description":"com.stripe.android.model.RadarSession","location":"payments-core/com.stripe.android.model/-radar-session/index.html","searchKeys":["RadarSession","data class RadarSession(id: String) : StripeModel","com.stripe.android.model.RadarSession"]},{"name":"data class Receiver : StripeModel","description":"com.stripe.android.model.Source.Receiver","location":"payments-core/com.stripe.android.model/-source/-receiver/index.html","searchKeys":["Receiver","data class Receiver : StripeModel","com.stripe.android.model.Source.Receiver"]},{"name":"data class Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?) : StripeModel","description":"com.stripe.android.model.Source.Redirect","location":"payments-core/com.stripe.android.model/-source/-redirect/index.html","searchKeys":["Redirect","data class Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?) : StripeModel","com.stripe.android.model.Source.Redirect"]},{"name":"data class RedirectToUrl(url: Uri, returnUrl: String?) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/index.html","searchKeys":["RedirectToUrl","data class RedirectToUrl(url: Uri, returnUrl: String?) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl"]},{"name":"data class Relationship(director: Boolean?, executive: Boolean?, owner: Boolean?, percentOwnership: Int?, representative: Boolean?, title: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Relationship","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/index.html","searchKeys":["Relationship","data class Relationship(director: Boolean?, executive: Boolean?, owner: Boolean?, percentOwnership: Int?, representative: Boolean?, title: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Relationship"]},{"name":"data class Result : ActivityStarter.Result","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/index.html","searchKeys":["Result","data class Result : ActivityStarter.Result","com.stripe.android.view.PaymentMethodsActivityStarter.Result"]},{"name":"data class SamsungPayWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.SamsungPayWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-samsung-pay-wallet/index.html","searchKeys":["SamsungPayWallet","data class SamsungPayWallet : Wallet","com.stripe.android.model.wallets.Wallet.SamsungPayWallet"]},{"name":"data class SepaDebit : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.SepaDebit"]},{"name":"data class SepaDebit : SourceTypeModel","description":"com.stripe.android.model.SourceTypeModel.SepaDebit","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit : SourceTypeModel","com.stripe.android.model.SourceTypeModel.SepaDebit"]},{"name":"data class SepaDebit(iban: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/index.html","searchKeys":["SepaDebit","data class SepaDebit(iban: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit"]},{"name":"data class SetupIntent : StripeIntent","description":"com.stripe.android.model.SetupIntent","location":"payments-core/com.stripe.android.model/-setup-intent/index.html","searchKeys":["SetupIntent","data class SetupIntent : StripeIntent","com.stripe.android.model.SetupIntent"]},{"name":"data class SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String) : GooglePayLauncherContract.Args","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-setup-intent-args/index.html","searchKeys":["SetupIntentArgs","data class SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String) : GooglePayLauncherContract.Args","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs"]},{"name":"data class SetupIntentResult : StripeIntentResult ","description":"com.stripe.android.SetupIntentResult","location":"payments-core/com.stripe.android/-setup-intent-result/index.html","searchKeys":["SetupIntentResult","data class SetupIntentResult : StripeIntentResult ","com.stripe.android.SetupIntentResult"]},{"name":"data class Shipping : StripeModel","description":"com.stripe.android.model.SourceOrder.Shipping","location":"payments-core/com.stripe.android.model/-source-order/-shipping/index.html","searchKeys":["Shipping","data class Shipping : StripeModel","com.stripe.android.model.SourceOrder.Shipping"]},{"name":"data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeModel","description":"com.stripe.android.model.PaymentIntent.Shipping","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/index.html","searchKeys":["Shipping","data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeModel","com.stripe.android.model.PaymentIntent.Shipping"]},{"name":"data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/index.html","searchKeys":["Shipping","data class Shipping(address: Address, carrier: String?, name: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams.Shipping"]},{"name":"data class ShippingAddressParameters constructor(isRequired: Boolean, allowedCountryCodes: Set, phoneNumberRequired: Boolean) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-shipping-address-parameters/index.html","searchKeys":["ShippingAddressParameters","data class ShippingAddressParameters constructor(isRequired: Boolean, allowedCountryCodes: Set, phoneNumberRequired: Boolean) : Parcelable","com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters"]},{"name":"data class ShippingInformation(address: Address?, name: String?, phone: String?) : StripeModel, StripeParamsModel","description":"com.stripe.android.model.ShippingInformation","location":"payments-core/com.stripe.android.model/-shipping-information/index.html","searchKeys":["ShippingInformation","data class ShippingInformation(address: Address?, name: String?, phone: String?) : StripeModel, StripeParamsModel","com.stripe.android.model.ShippingInformation"]},{"name":"data class ShippingMethod constructor(label: String, identifier: String, amount: Long, currency: Currency, detail: String?) : StripeModel","description":"com.stripe.android.model.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/index.html","searchKeys":["ShippingMethod","data class ShippingMethod constructor(label: String, identifier: String, amount: Long, currency: Currency, detail: String?) : StripeModel","com.stripe.android.model.ShippingMethod"]},{"name":"data class Shipping constructor(address: Address, name: String, carrier: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/index.html","searchKeys":["Shipping","data class Shipping constructor(address: Address, name: String, carrier: String?, phone: String?, trackingNumber: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping"]},{"name":"data class Sofort : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Sofort","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/index.html","searchKeys":["Sofort","data class Sofort : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Sofort"]},{"name":"data class Sofort(country: String) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/index.html","searchKeys":["Sofort","data class Sofort(country: String) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Sofort"]},{"name":"data class Source : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Source","location":"payments-core/com.stripe.android.model/-source/index.html","searchKeys":["Source","data class Source : StripeModel, StripePaymentSource","com.stripe.android.model.Source"]},{"name":"data class SourceOrder : StripeModel","description":"com.stripe.android.model.SourceOrder","location":"payments-core/com.stripe.android.model/-source-order/index.html","searchKeys":["SourceOrder","data class SourceOrder : StripeModel","com.stripe.android.model.SourceOrder"]},{"name":"data class SourceOrderParams constructor(items: List?, shipping: SourceOrderParams.Shipping?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceOrderParams","location":"payments-core/com.stripe.android.model/-source-order-params/index.html","searchKeys":["SourceOrderParams","data class SourceOrderParams constructor(items: List?, shipping: SourceOrderParams.Shipping?) : StripeParamsModel, Parcelable","com.stripe.android.model.SourceOrderParams"]},{"name":"data class SourceParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.SourceParams","location":"payments-core/com.stripe.android.model/-source-params/index.html","searchKeys":["SourceParams","data class SourceParams : StripeParamsModel, Parcelable","com.stripe.android.model.SourceParams"]},{"name":"data class Stripe3ds2ButtonCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/index.html","searchKeys":["Stripe3ds2ButtonCustomization","data class Stripe3ds2ButtonCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization"]},{"name":"data class Stripe3ds2Config : Parcelable","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/index.html","searchKeys":["Stripe3ds2Config","data class Stripe3ds2Config : Parcelable","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config"]},{"name":"data class Stripe3ds2LabelCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/index.html","searchKeys":["Stripe3ds2LabelCustomization","data class Stripe3ds2LabelCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization"]},{"name":"data class Stripe3ds2TextBoxCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/index.html","searchKeys":["Stripe3ds2TextBoxCustomization","data class Stripe3ds2TextBoxCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization"]},{"name":"data class Stripe3ds2ToolbarCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/index.html","searchKeys":["Stripe3ds2ToolbarCustomization","data class Stripe3ds2ToolbarCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization"]},{"name":"data class Stripe3ds2UiCustomization : Parcelable","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/index.html","searchKeys":["Stripe3ds2UiCustomization","data class Stripe3ds2UiCustomization : Parcelable","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization"]},{"name":"data class StripeError : StripeModel, Serializable","description":"com.stripe.android.StripeError","location":"payments-core/com.stripe.android/-stripe-error/index.html","searchKeys":["StripeError","data class StripeError : StripeModel, Serializable","com.stripe.android.StripeError"]},{"name":"data class StripeFile : StripeModel","description":"com.stripe.android.model.StripeFile","location":"payments-core/com.stripe.android.model/-stripe-file/index.html","searchKeys":["StripeFile","data class StripeFile : StripeModel","com.stripe.android.model.StripeFile"]},{"name":"data class StripeFileParams(file: File, purpose: StripeFilePurpose)","description":"com.stripe.android.model.StripeFileParams","location":"payments-core/com.stripe.android.model/-stripe-file-params/index.html","searchKeys":["StripeFileParams","data class StripeFileParams(file: File, purpose: StripeFilePurpose)","com.stripe.android.model.StripeFileParams"]},{"name":"data class Success : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-success/index.html","searchKeys":["Success","data class Success : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success"]},{"name":"data class ThreeDSecureUsage : StripeModel","description":"com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage","location":"payments-core/com.stripe.android.model/-payment-method/-card/-three-d-secure-usage/index.html","searchKeys":["ThreeDSecureUsage","data class ThreeDSecureUsage : StripeModel","com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage"]},{"name":"data class Token : StripeModel, StripePaymentSource","description":"com.stripe.android.model.Token","location":"payments-core/com.stripe.android.model/-token/index.html","searchKeys":["Token","data class Token : StripeModel, StripePaymentSource","com.stripe.android.model.Token"]},{"name":"data class TransactionInfo constructor(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String?, transactionId: String?, totalPrice: Int?, totalPriceLabel: String?, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption?) : Parcelable","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/index.html","searchKeys":["TransactionInfo","data class TransactionInfo constructor(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String?, transactionId: String?, totalPrice: Int?, totalPriceLabel: String?, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption?) : Parcelable","com.stripe.android.GooglePayJsonFactory.TransactionInfo"]},{"name":"data class Unvalidated(clientSecret: String?, flowOutcome: Int, exception: StripeException?, canCancelSource: Boolean, sourceId: String?, source: Source?, stripeAccountId: String?) : Parcelable","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/index.html","searchKeys":["Unvalidated","data class Unvalidated(clientSecret: String?, flowOutcome: Int, exception: StripeException?, canCancelSource: Boolean, sourceId: String?, source: Source?, stripeAccountId: String?) : Parcelable","com.stripe.android.payments.PaymentFlowResult.Unvalidated"]},{"name":"data class Upi : PaymentMethod.TypeData","description":"com.stripe.android.model.PaymentMethod.Upi","location":"payments-core/com.stripe.android.model/-payment-method/-upi/index.html","searchKeys":["Upi","data class Upi : PaymentMethod.TypeData","com.stripe.android.model.PaymentMethod.Upi"]},{"name":"data class Upi(vpa: String?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/index.html","searchKeys":["Upi","data class Upi(vpa: String?) : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodCreateParams.Upi"]},{"name":"data class Use3DS1(url: String) : StripeIntent.NextActionData.SdkData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/index.html","searchKeys":["Use3DS1","data class Use3DS1(url: String) : StripeIntent.NextActionData.SdkData","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1"]},{"name":"data class Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption) : StripeIntent.NextActionData.SdkData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/index.html","searchKeys":["Use3DS2","data class Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption) : StripeIntent.NextActionData.SdkData","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2"]},{"name":"data class Validated(month: Int, year: Int) : ExpirationDate","description":"com.stripe.android.model.ExpirationDate.Validated","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/index.html","searchKeys":["Validated","data class Validated(month: Int, year: Int) : ExpirationDate","com.stripe.android.model.ExpirationDate.Validated"]},{"name":"data class Verification(document: AccountParams.BusinessTypeParams.Company.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/index.html","searchKeys":["Verification","data class Verification(document: AccountParams.BusinessTypeParams.Company.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification"]},{"name":"data class Verification constructor(document: AccountParams.BusinessTypeParams.Individual.Document?, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/index.html","searchKeys":["Verification","data class Verification constructor(document: AccountParams.BusinessTypeParams.Individual.Document?, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification"]},{"name":"data class Verification constructor(document: PersonTokenParams.Document?, additionalDocument: PersonTokenParams.Document?) : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PersonTokenParams.Verification","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/index.html","searchKeys":["Verification","data class Verification constructor(document: PersonTokenParams.Document?, additionalDocument: PersonTokenParams.Document?) : StripeParamsModel, Parcelable","com.stripe.android.model.PersonTokenParams.Verification"]},{"name":"data class VisaCheckoutWallet : Wallet","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/index.html","searchKeys":["VisaCheckoutWallet","data class VisaCheckoutWallet : Wallet","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet"]},{"name":"data class WeChat(statementDescriptor: String?, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String?) : StripeModel","description":"com.stripe.android.model.WeChat","location":"payments-core/com.stripe.android.model/-we-chat/index.html","searchKeys":["WeChat","data class WeChat(statementDescriptor: String?, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String?) : StripeModel","com.stripe.android.model.WeChat"]},{"name":"data class WeChatPay(appId: String) : PaymentMethodOptionsParams","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/index.html","searchKeys":["WeChatPay","data class WeChatPay(appId: String) : PaymentMethodOptionsParams","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay"]},{"name":"data class WeChatPayNextAction : StripeModel","description":"com.stripe.android.model.WeChatPayNextAction","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/index.html","searchKeys":["WeChatPayNextAction","data class WeChatPayNextAction : StripeModel","com.stripe.android.model.WeChatPayNextAction"]},{"name":"data class WeChatPayRedirect(weChat: WeChat) : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/index.html","searchKeys":["WeChatPayRedirect","data class WeChatPayRedirect(weChat: WeChat) : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect"]},{"name":"enum BillingAddressFields : Enum ","description":"com.stripe.android.view.BillingAddressFields","location":"payments-core/com.stripe.android.view/-billing-address-fields/index.html","searchKeys":["BillingAddressFields","enum BillingAddressFields : Enum ","com.stripe.android.view.BillingAddressFields"]},{"name":"enum BusinessType : Enum ","description":"com.stripe.android.model.AccountParams.BusinessType","location":"payments-core/com.stripe.android.model/-account-params/-business-type/index.html","searchKeys":["BusinessType","enum BusinessType : Enum ","com.stripe.android.model.AccountParams.BusinessType"]},{"name":"enum ButtonType : Enum ","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/index.html","searchKeys":["ButtonType","enum ButtonType : Enum ","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType"]},{"name":"enum CancellationReason : Enum ","description":"com.stripe.android.model.PaymentIntent.CancellationReason","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/index.html","searchKeys":["CancellationReason","enum CancellationReason : Enum ","com.stripe.android.model.PaymentIntent.CancellationReason"]},{"name":"enum CancellationReason : Enum ","description":"com.stripe.android.model.SetupIntent.CancellationReason","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/index.html","searchKeys":["CancellationReason","enum CancellationReason : Enum ","com.stripe.android.model.SetupIntent.CancellationReason"]},{"name":"enum CaptureMethod : Enum ","description":"com.stripe.android.model.PaymentIntent.CaptureMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/index.html","searchKeys":["CaptureMethod","enum CaptureMethod : Enum ","com.stripe.android.model.PaymentIntent.CaptureMethod"]},{"name":"enum CardBrand : Enum ","description":"com.stripe.android.model.CardBrand","location":"payments-core/com.stripe.android.model/-card-brand/index.html","searchKeys":["CardBrand","enum CardBrand : Enum ","com.stripe.android.model.CardBrand"]},{"name":"enum CardFunding : Enum ","description":"com.stripe.android.model.CardFunding","location":"payments-core/com.stripe.android.model/-card-funding/index.html","searchKeys":["CardFunding","enum CardFunding : Enum ","com.stripe.android.model.CardFunding"]},{"name":"enum CardPinActionError : Enum ","description":"com.stripe.android.IssuingCardPinService.CardPinActionError","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/index.html","searchKeys":["CardPinActionError","enum CardPinActionError : Enum ","com.stripe.android.IssuingCardPinService.CardPinActionError"]},{"name":"enum CheckoutOption : Enum ","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/index.html","searchKeys":["CheckoutOption","enum CheckoutOption : Enum ","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption"]},{"name":"enum ConfirmationMethod : Enum ","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/index.html","searchKeys":["ConfirmationMethod","enum ConfirmationMethod : Enum ","com.stripe.android.model.PaymentIntent.ConfirmationMethod"]},{"name":"enum CustomPaymentMethods : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/index.html","searchKeys":["CustomPaymentMethods","enum CustomPaymentMethods : Enum ","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods"]},{"name":"enum CustomizableShippingField : Enum ","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/index.html","searchKeys":["CustomizableShippingField","enum CustomizableShippingField : Enum ","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField"]},{"name":"enum Environment : Enum ","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/index.html","searchKeys":["Environment","enum Environment : Enum ","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment"]},{"name":"enum Fields : Enum ","description":"com.stripe.android.view.CardValidCallback.Fields","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/index.html","searchKeys":["Fields","enum Fields : Enum ","com.stripe.android.view.CardValidCallback.Fields"]},{"name":"enum Flow : Enum ","description":"com.stripe.android.model.Source.Flow","location":"payments-core/com.stripe.android.model/-source/-flow/index.html","searchKeys":["Flow","enum Flow : Enum ","com.stripe.android.model.Source.Flow"]},{"name":"enum Flow : Enum ","description":"com.stripe.android.model.SourceParams.Flow","location":"payments-core/com.stripe.android.model/-source-params/-flow/index.html","searchKeys":["Flow","enum Flow : Enum ","com.stripe.android.model.SourceParams.Flow"]},{"name":"enum FocusField : Enum ","description":"com.stripe.android.view.CardInputListener.FocusField","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/index.html","searchKeys":["FocusField","enum FocusField : Enum ","com.stripe.android.view.CardInputListener.FocusField"]},{"name":"enum Format : Enum ","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format"]},{"name":"enum Format : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format"]},{"name":"enum Format : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/index.html","searchKeys":["Format","enum Format : Enum ","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format"]},{"name":"enum GooglePayEnvironment : Enum ","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/index.html","searchKeys":["GooglePayEnvironment","enum GooglePayEnvironment : Enum ","com.stripe.android.googlepaylauncher.GooglePayEnvironment"]},{"name":"enum NextActionType : Enum ","description":"com.stripe.android.model.StripeIntent.NextActionType","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/index.html","searchKeys":["NextActionType","enum NextActionType : Enum ","com.stripe.android.model.StripeIntent.NextActionType"]},{"name":"enum PurchaseType : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/index.html","searchKeys":["PurchaseType","enum PurchaseType : Enum ","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType"]},{"name":"enum SetupFutureUsage : Enum ","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/index.html","searchKeys":["SetupFutureUsage","enum SetupFutureUsage : Enum ","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.BankAccount.Status","location":"payments-core/com.stripe.android.model/-bank-account/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.BankAccount.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.CodeVerification.Status","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.CodeVerification.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.Redirect.Status","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.Redirect.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.Source.Status","location":"payments-core/com.stripe.android.model/-source/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.Source.Status"]},{"name":"enum Status : Enum ","description":"com.stripe.android.model.StripeIntent.Status","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/index.html","searchKeys":["Status","enum Status : Enum ","com.stripe.android.model.StripeIntent.Status"]},{"name":"enum StripeApiBeta : Enum ","description":"com.stripe.android.StripeApiBeta","location":"payments-core/com.stripe.android/-stripe-api-beta/index.html","searchKeys":["StripeApiBeta","enum StripeApiBeta : Enum ","com.stripe.android.StripeApiBeta"]},{"name":"enum StripeFilePurpose : Enum ","description":"com.stripe.android.model.StripeFilePurpose","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/index.html","searchKeys":["StripeFilePurpose","enum StripeFilePurpose : Enum ","com.stripe.android.model.StripeFilePurpose"]},{"name":"enum ThreeDSecureStatus : Enum ","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/index.html","searchKeys":["ThreeDSecureStatus","enum ThreeDSecureStatus : Enum ","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus"]},{"name":"enum TokenizationMethod : Enum ","description":"com.stripe.android.model.TokenizationMethod","location":"payments-core/com.stripe.android.model/-tokenization-method/index.html","searchKeys":["TokenizationMethod","enum TokenizationMethod : Enum ","com.stripe.android.model.TokenizationMethod"]},{"name":"enum TotalPriceStatus : Enum ","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/index.html","searchKeys":["TotalPriceStatus","enum TotalPriceStatus : Enum ","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.BankAccount.Type","location":"payments-core/com.stripe.android.model/-bank-account/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.BankAccount.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.BankAccountTokenParams.Type","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.BankAccountTokenParams.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.KlarnaSourceParams.LineItem.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.PaymentIntent.Error.Type","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.PaymentIntent.Error.Type"]},{"name":"enum Type : Enum , Parcelable","description":"com.stripe.android.model.PaymentMethod.Type","location":"payments-core/com.stripe.android.model/-payment-method/-type/index.html","searchKeys":["Type","enum Type : Enum , Parcelable","com.stripe.android.model.PaymentMethod.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SetupIntent.Error.Type","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SetupIntent.Error.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SourceOrder.Item.Type","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SourceOrder.Item.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.SourceOrderParams.Item.Type","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.SourceOrderParams.Item.Type"]},{"name":"enum Type : Enum ","description":"com.stripe.android.model.Token.Type","location":"payments-core/com.stripe.android.model/-token/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.stripe.android.model.Token.Type"]},{"name":"enum Usage : Enum ","description":"com.stripe.android.model.Source.Usage","location":"payments-core/com.stripe.android.model/-source/-usage/index.html","searchKeys":["Usage","enum Usage : Enum ","com.stripe.android.model.Source.Usage"]},{"name":"enum Usage : Enum ","description":"com.stripe.android.model.StripeIntent.Usage","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/index.html","searchKeys":["Usage","enum Usage : Enum ","com.stripe.android.model.StripeIntent.Usage"]},{"name":"fun APIConnectionException(message: String? = null, cause: Throwable? = null)","description":"com.stripe.android.exception.APIConnectionException.APIConnectionException","location":"payments-core/com.stripe.android.exception/-a-p-i-connection-exception/-a-p-i-connection-exception.html","searchKeys":["APIConnectionException","fun APIConnectionException(message: String? = null, cause: Throwable? = null)","com.stripe.android.exception.APIConnectionException.APIConnectionException"]},{"name":"fun APIException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.APIException.APIException","location":"payments-core/com.stripe.android.exception/-a-p-i-exception/-a-p-i-exception.html","searchKeys":["APIException","fun APIException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.APIException.APIException"]},{"name":"fun AddPaymentMethodActivity()","description":"com.stripe.android.view.AddPaymentMethodActivity.AddPaymentMethodActivity","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/-add-payment-method-activity.html","searchKeys":["AddPaymentMethodActivity","fun AddPaymentMethodActivity()","com.stripe.android.view.AddPaymentMethodActivity.AddPaymentMethodActivity"]},{"name":"fun AddPaymentMethodActivityStarter(activity: Activity)","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-add-payment-method-activity-starter.html","searchKeys":["AddPaymentMethodActivityStarter","fun AddPaymentMethodActivityStarter(activity: Activity)","com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter"]},{"name":"fun AddPaymentMethodActivityStarter(fragment: Fragment)","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-add-payment-method-activity-starter.html","searchKeys":["AddPaymentMethodActivityStarter","fun AddPaymentMethodActivityStarter(fragment: Fragment)","com.stripe.android.view.AddPaymentMethodActivityStarter.AddPaymentMethodActivityStarter"]},{"name":"fun AddressJapanParams(city: String? = null, country: String? = null, line1: String? = null, line2: String? = null, postalCode: String? = null, state: String? = null, town: String? = null)","description":"com.stripe.android.model.AddressJapanParams.AddressJapanParams","location":"payments-core/com.stripe.android.model/-address-japan-params/-address-japan-params.html","searchKeys":["AddressJapanParams","fun AddressJapanParams(city: String? = null, country: String? = null, line1: String? = null, line2: String? = null, postalCode: String? = null, state: String? = null, town: String? = null)","com.stripe.android.model.AddressJapanParams.AddressJapanParams"]},{"name":"fun AnalyticsRequest(params: Map)","description":"com.stripe.android.networking.AnalyticsRequest.AnalyticsRequest","location":"payments-core/com.stripe.android.networking/-analytics-request/-analytics-request.html","searchKeys":["AnalyticsRequest","fun AnalyticsRequest(params: Map)","com.stripe.android.networking.AnalyticsRequest.AnalyticsRequest"]},{"name":"fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html","searchKeys":["Args","fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args"]},{"name":"fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String? = null)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-args/-args.html","searchKeys":["Args","fun Args(config: GooglePayPaymentMethodLauncher.Config, currencyCode: String, amount: Int, transactionId: String? = null)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.Args.Args"]},{"name":"fun AuBecsDebit(bsbNumber: String, accountNumber: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.AuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/-au-becs-debit.html","searchKeys":["AuBecsDebit","fun AuBecsDebit(bsbNumber: String, accountNumber: String)","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.AuBecsDebit"]},{"name":"fun BacsDebit(accountNumber: String, sortCode: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.BacsDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/-bacs-debit.html","searchKeys":["BacsDebit","fun BacsDebit(accountNumber: String, sortCode: String)","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.BacsDebit"]},{"name":"fun BankAccountTokenParams(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type? = null, accountHolderName: String? = null, routingNumber: String? = null)","description":"com.stripe.android.model.BankAccountTokenParams.BankAccountTokenParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-bank-account-token-params.html","searchKeys":["BankAccountTokenParams","fun BankAccountTokenParams(country: String, currency: String, accountNumber: String, accountHolderType: BankAccountTokenParams.Type? = null, accountHolderName: String? = null, routingNumber: String? = null)","com.stripe.android.model.BankAccountTokenParams.BankAccountTokenParams"]},{"name":"fun BecsDebitMandateAcceptanceTextFactory(context: Context)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.BecsDebitMandateAcceptanceTextFactory","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/-becs-debit-mandate-acceptance-text-factory.html","searchKeys":["BecsDebitMandateAcceptanceTextFactory","fun BecsDebitMandateAcceptanceTextFactory(context: Context)","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.BecsDebitMandateAcceptanceTextFactory"]},{"name":"fun BecsDebitMandateAcceptanceTextView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = android.R.attr.textViewStyle)","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView.BecsDebitMandateAcceptanceTextView","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/-becs-debit-mandate-acceptance-text-view.html","searchKeys":["BecsDebitMandateAcceptanceTextView","fun BecsDebitMandateAcceptanceTextView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = android.R.attr.textViewStyle)","com.stripe.android.view.BecsDebitMandateAcceptanceTextView.BecsDebitMandateAcceptanceTextView"]},{"name":"fun BecsDebitWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, companyName: String = \"\")","description":"com.stripe.android.view.BecsDebitWidget.BecsDebitWidget","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-becs-debit-widget.html","searchKeys":["BecsDebitWidget","fun BecsDebitWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, companyName: String = \"\")","com.stripe.android.view.BecsDebitWidget.BecsDebitWidget"]},{"name":"fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-billing-address-config.html","searchKeys":["BillingAddressConfig","fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.BillingAddressConfig"]},{"name":"fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.BillingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-billing-address-config.html","searchKeys":["BillingAddressConfig","fun BillingAddressConfig(isRequired: Boolean = false, format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.BillingAddressConfig"]},{"name":"fun BillingAddressParameters(isRequired: Boolean = false, format: GooglePayJsonFactory.BillingAddressParameters.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.BillingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-billing-address-parameters.html","searchKeys":["BillingAddressParameters","fun BillingAddressParameters(isRequired: Boolean = false, format: GooglePayJsonFactory.BillingAddressParameters.Format = Format.Min, isPhoneNumberRequired: Boolean = false)","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.BillingAddressParameters"]},{"name":"fun BillingDetails(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.PaymentMethod.BillingDetails.BillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-billing-details.html","searchKeys":["BillingDetails","fun BillingDetails(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.PaymentMethod.BillingDetails.BillingDetails"]},{"name":"fun Blik(code: String)","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik.Blik","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/-blik.html","searchKeys":["Blik","fun Blik(code: String)","com.stripe.android.model.PaymentMethodOptionsParams.Blik.Blik"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Builder","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.PaymentSessionConfig.Builder.Builder","location":"payments-core/com.stripe.android/-payment-session-config/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.PaymentSessionConfig.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.Builder","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.Address.Builder.Builder","location":"payments-core/com.stripe.android.model/-address/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.Address.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.AddressJapanParams.Builder.Builder","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.AddressJapanParams.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethod.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethod.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.Builder","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PersonTokenParams.Builder.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PersonTokenParams.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.Builder","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.model.PersonTokenParams.Relationship.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.Builder"]},{"name":"fun Builder()","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.Builder","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/-builder.html","searchKeys":["Builder","fun Builder()","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.Builder"]},{"name":"fun Card(cvc: String? = null, network: String? = null)","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.Card","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/-card.html","searchKeys":["Card","fun Card(cvc: String? = null, network: String? = null)","com.stripe.android.model.PaymentMethodOptionsParams.Card.Card"]},{"name":"fun CardException(stripeError: StripeError, requestId: String? = null)","description":"com.stripe.android.exception.CardException.CardException","location":"payments-core/com.stripe.android.exception/-card-exception/-card-exception.html","searchKeys":["CardException","fun CardException(stripeError: StripeError, requestId: String? = null)","com.stripe.android.exception.CardException.CardException"]},{"name":"fun CardFormView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.CardFormView.CardFormView","location":"payments-core/com.stripe.android.view/-card-form-view/-card-form-view.html","searchKeys":["CardFormView","fun CardFormView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.CardFormView.CardFormView"]},{"name":"fun CardInputWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.CardInputWidget.CardInputWidget","location":"payments-core/com.stripe.android.view/-card-input-widget/-card-input-widget.html","searchKeys":["CardInputWidget","fun CardInputWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.CardInputWidget.CardInputWidget"]},{"name":"fun CardMultilineWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, shouldShowPostalCode: Boolean = CardWidget.DEFAULT_POSTAL_CODE_ENABLED)","description":"com.stripe.android.view.CardMultilineWidget.CardMultilineWidget","location":"payments-core/com.stripe.android.view/-card-multiline-widget/-card-multiline-widget.html","searchKeys":["CardMultilineWidget","fun CardMultilineWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, shouldShowPostalCode: Boolean = CardWidget.DEFAULT_POSTAL_CODE_ENABLED)","com.stripe.android.view.CardMultilineWidget.CardMultilineWidget"]},{"name":"fun CardNumberEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.CardNumberEditText.CardNumberEditText","location":"payments-core/com.stripe.android.view/-card-number-edit-text/-card-number-edit-text.html","searchKeys":["CardNumberEditText","fun CardNumberEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.CardNumberEditText.CardNumberEditText"]},{"name":"fun CardParams(number: String, expMonth: Int, expYear: Int, cvc: String? = null, name: String? = null, address: Address? = null, currency: String? = null, metadata: Map? = null)","description":"com.stripe.android.model.CardParams.CardParams","location":"payments-core/com.stripe.android.model/-card-params/-card-params.html","searchKeys":["CardParams","fun CardParams(number: String, expMonth: Int, expYear: Int, cvc: String? = null, name: String? = null, address: Address? = null, currency: String? = null, metadata: Map? = null)","com.stripe.android.model.CardParams.CardParams"]},{"name":"fun Company(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, directorsProvided: Boolean? = null, executivesProvided: Boolean? = null, name: String? = null, nameKana: String? = null, nameKanji: String? = null, ownersProvided: Boolean? = false, phone: String? = null, taxId: String? = null, taxIdRegistrar: String? = null, vatId: String? = null, verification: AccountParams.BusinessTypeParams.Company.Verification? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Company","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-company.html","searchKeys":["Company","fun Company(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, directorsProvided: Boolean? = null, executivesProvided: Boolean? = null, name: String? = null, nameKana: String? = null, nameKanji: String? = null, ownersProvided: Boolean? = false, phone: String? = null, taxId: String? = null, taxIdRegistrar: String? = null, vatId: String? = null, verification: AccountParams.BusinessTypeParams.Company.Verification? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Company"]},{"name":"fun Completed(paymentMethod: PaymentMethod)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/-completed.html","searchKeys":["Completed","fun Completed(paymentMethod: PaymentMethod)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.Completed"]},{"name":"fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/-config.html","searchKeys":["Config","fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.Config"]},{"name":"fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.Config","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/-config.html","searchKeys":["Config","fun Config(environment: GooglePayEnvironment, merchantCountryCode: String, merchantName: String, isEmailRequired: Boolean = false, billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig = BillingAddressConfig(), existingPaymentMethodRequired: Boolean = true)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.Config"]},{"name":"fun Configuration(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration? = null, googlePay: PaymentSheet.GooglePayConfiguration? = null, primaryButtonColor: ColorStateList? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.Configuration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/-configuration.html","searchKeys":["Configuration","fun Configuration(merchantDisplayName: String, customer: PaymentSheet.CustomerConfiguration? = null, googlePay: PaymentSheet.GooglePayConfiguration? = null, primaryButtonColor: ColorStateList? = null)","com.stripe.android.paymentsheet.PaymentSheet.Configuration.Configuration"]},{"name":"fun CustomerBankAccount(bankAccount: BankAccount)","description":"com.stripe.android.model.CustomerBankAccount.CustomerBankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/-customer-bank-account.html","searchKeys":["CustomerBankAccount","fun CustomerBankAccount(bankAccount: BankAccount)","com.stripe.android.model.CustomerBankAccount.CustomerBankAccount"]},{"name":"fun CustomerCard(card: Card)","description":"com.stripe.android.model.CustomerCard.CustomerCard","location":"payments-core/com.stripe.android.model/-customer-card/-customer-card.html","searchKeys":["CustomerCard","fun CustomerCard(card: Card)","com.stripe.android.model.CustomerCard.CustomerCard"]},{"name":"fun CustomerConfiguration(id: String, ephemeralKeySecret: String)","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.CustomerConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/-customer-configuration.html","searchKeys":["CustomerConfiguration","fun CustomerConfiguration(id: String, ephemeralKeySecret: String)","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.CustomerConfiguration"]},{"name":"fun CustomerSource(source: Source)","description":"com.stripe.android.model.CustomerSource.CustomerSource","location":"payments-core/com.stripe.android.model/-customer-source/-customer-source.html","searchKeys":["CustomerSource","fun CustomerSource(source: Source)","com.stripe.android.model.CustomerSource.CustomerSource"]},{"name":"fun CvcEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.CvcEditText.CvcEditText","location":"payments-core/com.stripe.android.view/-cvc-edit-text/-cvc-edit-text.html","searchKeys":["CvcEditText","fun CvcEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.CvcEditText.CvcEditText"]},{"name":"fun CvcTokenParams(cvc: String)","description":"com.stripe.android.model.CvcTokenParams.CvcTokenParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/-cvc-token-params.html","searchKeys":["CvcTokenParams","fun CvcTokenParams(cvc: String)","com.stripe.android.model.CvcTokenParams.CvcTokenParams"]},{"name":"fun DateOfBirth(day: Int, month: Int, year: Int)","description":"com.stripe.android.model.DateOfBirth.DateOfBirth","location":"payments-core/com.stripe.android.model/-date-of-birth/-date-of-birth.html","searchKeys":["DateOfBirth","fun DateOfBirth(day: Int, month: Int, year: Int)","com.stripe.android.model.DateOfBirth.DateOfBirth"]},{"name":"fun DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.DirectoryServerEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/-directory-server-encryption.html","searchKeys":["DirectoryServerEncryption","fun DirectoryServerEncryption(directoryServerId: String, dsCertificateData: String, rootCertsData: List, keyId: String?)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.DirectoryServerEncryption"]},{"name":"fun DisplayOxxoDetails(expiresAfter: Int = 0, number: String? = null, hostedVoucherUrl: String? = null)","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.DisplayOxxoDetails","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/-display-oxxo-details.html","searchKeys":["DisplayOxxoDetails","fun DisplayOxxoDetails(expiresAfter: Int = 0, number: String? = null, hostedVoucherUrl: String? = null)","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.DisplayOxxoDetails"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.Document"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.Document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.Document"]},{"name":"fun Document(front: String? = null, back: String? = null)","description":"com.stripe.android.model.PersonTokenParams.Document.Document","location":"payments-core/com.stripe.android.model/-person-token-params/-document/-document.html","searchKeys":["Document","fun Document(front: String? = null, back: String? = null)","com.stripe.android.model.PersonTokenParams.Document.Document"]},{"name":"fun ErrorCode()","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ErrorCode.ErrorCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-error-code/-error-code.html","searchKeys":["ErrorCode","fun ErrorCode()","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ErrorCode.ErrorCode"]},{"name":"fun ExpiryDateEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.ExpiryDateEditText.ExpiryDateEditText","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/-expiry-date-edit-text.html","searchKeys":["ExpiryDateEditText","fun ExpiryDateEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.ExpiryDateEditText.ExpiryDateEditText"]},{"name":"fun Factory(appInfo: AppInfo? = null, apiVersion: String = ApiVersion.get().code, sdkVersion: String = Stripe.VERSION)","description":"com.stripe.android.networking.ApiRequest.Factory.Factory","location":"payments-core/com.stripe.android.networking/-api-request/-factory/-factory.html","searchKeys":["Factory","fun Factory(appInfo: AppInfo? = null, apiVersion: String = ApiVersion.get().code, sdkVersion: String = Stripe.VERSION)","com.stripe.android.networking.ApiRequest.Factory.Factory"]},{"name":"fun Failed(error: Throwable)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable)","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.Failed"]},{"name":"fun Failed(error: Throwable)","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed.Failed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable)","com.stripe.android.paymentsheet.PaymentSheetResult.Failed.Failed"]},{"name":"fun Failed(error: Throwable, errorCode: Int)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.Failed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/-failed.html","searchKeys":["Failed","fun Failed(error: Throwable, errorCode: Int)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.Failed"]},{"name":"fun Failure(error: Throwable)","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.Failure","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/-failure.html","searchKeys":["Failure","fun Failure(error: Throwable)","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.Failure"]},{"name":"fun FileLink(create: Boolean = false, expiresAt: Long? = null, metadata: Map? = null)","description":"com.stripe.android.model.StripeFileParams.FileLink.FileLink","location":"payments-core/com.stripe.android.model/-stripe-file-params/-file-link/-file-link.html","searchKeys":["FileLink","fun FileLink(create: Boolean = false, expiresAt: Long? = null, metadata: Map? = null)","com.stripe.android.model.StripeFileParams.FileLink.FileLink"]},{"name":"fun Fpx(bank: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.Fpx","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/-fpx.html","searchKeys":["Fpx","fun Fpx(bank: String?)","com.stripe.android.model.PaymentMethodCreateParams.Fpx.Fpx"]},{"name":"fun GooglePayConfig(context: Context)","description":"com.stripe.android.GooglePayConfig.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/-google-pay-config.html","searchKeys":["GooglePayConfig","fun GooglePayConfig(context: Context)","com.stripe.android.GooglePayConfig.GooglePayConfig"]},{"name":"fun GooglePayConfig(publishableKey: String, connectedAccountId: String? = null)","description":"com.stripe.android.GooglePayConfig.GooglePayConfig","location":"payments-core/com.stripe.android/-google-pay-config/-google-pay-config.html","searchKeys":["GooglePayConfig","fun GooglePayConfig(publishableKey: String, connectedAccountId: String? = null)","com.stripe.android.GooglePayConfig.GooglePayConfig"]},{"name":"fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html","searchKeys":["GooglePayConfiguration","fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String)","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration"]},{"name":"fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-google-pay-configuration.html","searchKeys":["GooglePayConfiguration","fun GooglePayConfiguration(environment: PaymentSheet.GooglePayConfiguration.Environment, countryCode: String, currencyCode: String? = null)","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.GooglePayConfiguration"]},{"name":"fun GooglePayJsonFactory(context: Context, isJcbEnabled: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/-google-pay-json-factory.html","searchKeys":["GooglePayJsonFactory","fun GooglePayJsonFactory(context: Context, isJcbEnabled: Boolean = false)","com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory"]},{"name":"fun GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory","location":"payments-core/com.stripe.android/-google-pay-json-factory/-google-pay-json-factory.html","searchKeys":["GooglePayJsonFactory","fun GooglePayJsonFactory(googlePayConfig: GooglePayConfig, isJcbEnabled: Boolean = false)","com.stripe.android.GooglePayJsonFactory.GooglePayJsonFactory"]},{"name":"fun GooglePayLauncher(activity: ComponentActivity, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-google-pay-launcher.html","searchKeys":["GooglePayLauncher","fun GooglePayLauncher(activity: ComponentActivity, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher"]},{"name":"fun GooglePayLauncher(fragment: Fragment, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-google-pay-launcher.html","searchKeys":["GooglePayLauncher","fun GooglePayLauncher(fragment: Fragment, config: GooglePayLauncher.Config, readyCallback: GooglePayLauncher.ReadyCallback, resultCallback: GooglePayLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayLauncher.GooglePayLauncher"]},{"name":"fun GooglePayLauncherContract()","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.GooglePayLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-google-pay-launcher-contract.html","searchKeys":["GooglePayLauncherContract","fun GooglePayLauncherContract()","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.GooglePayLauncherContract"]},{"name":"fun GooglePayLauncherModule()","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherModule.GooglePayLauncherModule","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-module/-google-pay-launcher-module.html","searchKeys":["GooglePayLauncherModule","fun GooglePayLauncherModule()","com.stripe.android.googlepaylauncher.GooglePayLauncherModule.GooglePayLauncherModule"]},{"name":"fun GooglePayPaymentMethodLauncher(activity: ComponentActivity, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-google-pay-payment-method-launcher.html","searchKeys":["GooglePayPaymentMethodLauncher","fun GooglePayPaymentMethodLauncher(activity: ComponentActivity, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher"]},{"name":"fun GooglePayPaymentMethodLauncher(fragment: Fragment, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-google-pay-payment-method-launcher.html","searchKeys":["GooglePayPaymentMethodLauncher","fun GooglePayPaymentMethodLauncher(fragment: Fragment, config: GooglePayPaymentMethodLauncher.Config, readyCallback: GooglePayPaymentMethodLauncher.ReadyCallback, resultCallback: GooglePayPaymentMethodLauncher.ResultCallback)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.GooglePayPaymentMethodLauncher"]},{"name":"fun GooglePayPaymentMethodLauncherContract()","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.GooglePayPaymentMethodLauncherContract","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/-google-pay-payment-method-launcher-contract.html","searchKeys":["GooglePayPaymentMethodLauncherContract","fun GooglePayPaymentMethodLauncherContract()","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.GooglePayPaymentMethodLauncherContract"]},{"name":"fun IOContext()","description":"com.stripe.android.payments.core.injection.IOContext.IOContext","location":"payments-core/com.stripe.android.payments.core.injection/-i-o-context/-i-o-context.html","searchKeys":["IOContext","fun IOContext()","com.stripe.android.payments.core.injection.IOContext.IOContext"]},{"name":"fun Ideal(bank: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.Ideal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/-ideal.html","searchKeys":["Ideal","fun Ideal(bank: String?)","com.stripe.android.model.PaymentMethodCreateParams.Ideal.Ideal"]},{"name":"fun Individual(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, ssnLast4: String? = null, verification: AccountParams.BusinessTypeParams.Individual.Verification? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Individual","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-individual.html","searchKeys":["Individual","fun Individual(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, ssnLast4: String? = null, verification: AccountParams.BusinessTypeParams.Individual.Verification? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Individual"]},{"name":"fun InjectorKey()","description":"com.stripe.android.payments.core.injection.InjectorKey.InjectorKey","location":"payments-core/com.stripe.android.payments.core.injection/-injector-key/-injector-key.html","searchKeys":["InjectorKey","fun InjectorKey()","com.stripe.android.payments.core.injection.InjectorKey.InjectorKey"]},{"name":"fun IntentAuthenticatorKey(value: KClass)","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey.IntentAuthenticatorKey","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/-intent-authenticator-key.html","searchKeys":["IntentAuthenticatorKey","fun IntentAuthenticatorKey(value: KClass)","com.stripe.android.payments.core.injection.IntentAuthenticatorKey.IntentAuthenticatorKey"]},{"name":"fun IntentAuthenticatorMap()","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorMap.IntentAuthenticatorMap","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-map/-intent-authenticator-map.html","searchKeys":["IntentAuthenticatorMap","fun IntentAuthenticatorMap()","com.stripe.android.payments.core.injection.IntentAuthenticatorMap.IntentAuthenticatorMap"]},{"name":"fun InvalidRequestException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.InvalidRequestException.InvalidRequestException","location":"payments-core/com.stripe.android.exception/-invalid-request-exception/-invalid-request-exception.html","searchKeys":["InvalidRequestException","fun InvalidRequestException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.InvalidRequestException.InvalidRequestException"]},{"name":"fun IssuingCardPin(pin: String)","description":"com.stripe.android.model.IssuingCardPin.IssuingCardPin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/-issuing-card-pin.html","searchKeys":["IssuingCardPin","fun IssuingCardPin(pin: String)","com.stripe.android.model.IssuingCardPin.IssuingCardPin"]},{"name":"fun Item(type: SourceOrderParams.Item.Type? = null, amount: Int? = null, currency: String? = null, description: String? = null, parent: String? = null, quantity: Int? = null)","description":"com.stripe.android.model.SourceOrderParams.Item.Item","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-item.html","searchKeys":["Item","fun Item(type: SourceOrderParams.Item.Type? = null, amount: Int? = null, currency: String? = null, description: String? = null, parent: String? = null, quantity: Int? = null)","com.stripe.android.model.SourceOrderParams.Item.Item"]},{"name":"fun Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set)","description":"com.stripe.android.model.Source.Klarna.Klarna","location":"payments-core/com.stripe.android.model/-source/-klarna/-klarna.html","searchKeys":["Klarna","fun Klarna(firstName: String?, lastName: String?, purchaseCountry: String?, clientToken: String?, payNowAssetUrlsDescriptive: String?, payNowAssetUrlsStandard: String?, payNowName: String?, payNowRedirectUrl: String?, payLaterAssetUrlsDescriptive: String?, payLaterAssetUrlsStandard: String?, payLaterName: String?, payLaterRedirectUrl: String?, payOverTimeAssetUrlsDescriptive: String?, payOverTimeAssetUrlsStandard: String?, payOverTimeName: String?, payOverTimeRedirectUrl: String?, paymentMethodCategories: Set, customPaymentMethods: Set)","com.stripe.android.model.Source.Klarna.Klarna"]},{"name":"fun KlarnaSourceParams(purchaseCountry: String, lineItems: List, customPaymentMethods: Set = emptySet(), billingEmail: String? = null, billingPhone: String? = null, billingAddress: Address? = null, billingFirstName: String? = null, billingLastName: String? = null, billingDob: DateOfBirth? = null, pageOptions: KlarnaSourceParams.PaymentPageOptions? = null)","description":"com.stripe.android.model.KlarnaSourceParams.KlarnaSourceParams","location":"payments-core/com.stripe.android.model/-klarna-source-params/-klarna-source-params.html","searchKeys":["KlarnaSourceParams","fun KlarnaSourceParams(purchaseCountry: String, lineItems: List, customPaymentMethods: Set = emptySet(), billingEmail: String? = null, billingPhone: String? = null, billingAddress: Address? = null, billingFirstName: String? = null, billingLastName: String? = null, billingDob: DateOfBirth? = null, pageOptions: KlarnaSourceParams.PaymentPageOptions? = null)","com.stripe.android.model.KlarnaSourceParams.KlarnaSourceParams"]},{"name":"fun LineItem(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int? = null)","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.LineItem","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-line-item.html","searchKeys":["LineItem","fun LineItem(itemType: KlarnaSourceParams.LineItem.Type, itemDescription: String, totalAmount: Int, quantity: Int? = null)","com.stripe.android.model.KlarnaSourceParams.LineItem.LineItem"]},{"name":"fun MandateDataParams(type: MandateDataParams.Type)","description":"com.stripe.android.model.MandateDataParams.MandateDataParams","location":"payments-core/com.stripe.android.model/-mandate-data-params/-mandate-data-params.html","searchKeys":["MandateDataParams","fun MandateDataParams(type: MandateDataParams.Type)","com.stripe.android.model.MandateDataParams.MandateDataParams"]},{"name":"fun MerchantInfo(merchantName: String? = null)","description":"com.stripe.android.GooglePayJsonFactory.MerchantInfo.MerchantInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-merchant-info/-merchant-info.html","searchKeys":["MerchantInfo","fun MerchantInfo(merchantName: String? = null)","com.stripe.android.GooglePayJsonFactory.MerchantInfo.MerchantInfo"]},{"name":"fun Netbanking(bank: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking.Netbanking","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/-netbanking.html","searchKeys":["Netbanking","fun Netbanking(bank: String)","com.stripe.android.model.PaymentMethodCreateParams.Netbanking.Netbanking"]},{"name":"fun Networks(available: Set = emptySet(), selectionMandatory: Boolean = false, preferred: String? = null)","description":"com.stripe.android.model.PaymentMethod.Card.Networks.Networks","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/-networks.html","searchKeys":["Networks","fun Networks(available: Set = emptySet(), selectionMandatory: Boolean = false, preferred: String? = null)","com.stripe.android.model.PaymentMethod.Card.Networks.Networks"]},{"name":"fun Online(ipAddress: String, userAgent: String)","description":"com.stripe.android.model.MandateDataParams.Type.Online.Online","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/-online.html","searchKeys":["Online","fun Online(ipAddress: String, userAgent: String)","com.stripe.android.model.MandateDataParams.Type.Online.Online"]},{"name":"fun Options(apiKey: String, stripeAccount: String? = null, idempotencyKey: String? = null)","description":"com.stripe.android.networking.ApiRequest.Options.Options","location":"payments-core/com.stripe.android.networking/-api-request/-options/-options.html","searchKeys":["Options","fun Options(apiKey: String, stripeAccount: String? = null, idempotencyKey: String? = null)","com.stripe.android.networking.ApiRequest.Options.Options"]},{"name":"fun Outcome()","description":"com.stripe.android.StripeIntentResult.Outcome.Outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-outcome.html","searchKeys":["Outcome","fun Outcome()","com.stripe.android.StripeIntentResult.Outcome.Outcome"]},{"name":"fun OwnerParams(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.SourceParams.OwnerParams.OwnerParams","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/-owner-params.html","searchKeys":["OwnerParams","fun OwnerParams(address: Address? = null, email: String? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.SourceParams.OwnerParams.OwnerParams"]},{"name":"fun PaymentAuthWebViewActivity()","description":"com.stripe.android.view.PaymentAuthWebViewActivity.PaymentAuthWebViewActivity","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/-payment-auth-web-view-activity.html","searchKeys":["PaymentAuthWebViewActivity","fun PaymentAuthWebViewActivity()","com.stripe.android.view.PaymentAuthWebViewActivity.PaymentAuthWebViewActivity"]},{"name":"fun PaymentFlowActivity()","description":"com.stripe.android.view.PaymentFlowActivity.PaymentFlowActivity","location":"payments-core/com.stripe.android.view/-payment-flow-activity/-payment-flow-activity.html","searchKeys":["PaymentFlowActivity","fun PaymentFlowActivity()","com.stripe.android.view.PaymentFlowActivity.PaymentFlowActivity"]},{"name":"fun PaymentFlowActivityStarter(activity: Activity, config: PaymentSessionConfig)","description":"com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-payment-flow-activity-starter.html","searchKeys":["PaymentFlowActivityStarter","fun PaymentFlowActivityStarter(activity: Activity, config: PaymentSessionConfig)","com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter"]},{"name":"fun PaymentFlowActivityStarter(fragment: Fragment, config: PaymentSessionConfig)","description":"com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-payment-flow-activity-starter.html","searchKeys":["PaymentFlowActivityStarter","fun PaymentFlowActivityStarter(fragment: Fragment, config: PaymentSessionConfig)","com.stripe.android.view.PaymentFlowActivityStarter.PaymentFlowActivityStarter"]},{"name":"fun PaymentFlowViewPager(context: Context, attrs: AttributeSet? = null, isSwipingAllowed: Boolean = false)","description":"com.stripe.android.view.PaymentFlowViewPager.PaymentFlowViewPager","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/-payment-flow-view-pager.html","searchKeys":["PaymentFlowViewPager","fun PaymentFlowViewPager(context: Context, attrs: AttributeSet? = null, isSwipingAllowed: Boolean = false)","com.stripe.android.view.PaymentFlowViewPager.PaymentFlowViewPager"]},{"name":"fun PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs.PaymentIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-payment-intent-args/-payment-intent-args.html","searchKeys":["PaymentIntentArgs","fun PaymentIntentArgs(clientSecret: String, config: GooglePayLauncher.Config)","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.PaymentIntentArgs.PaymentIntentArgs"]},{"name":"fun PaymentIntentJsonParser()","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser.PaymentIntentJsonParser","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/-payment-intent-json-parser.html","searchKeys":["PaymentIntentJsonParser","fun PaymentIntentJsonParser()","com.stripe.android.model.parsers.PaymentIntentJsonParser.PaymentIntentJsonParser"]},{"name":"fun PaymentMethodsActivity()","description":"com.stripe.android.view.PaymentMethodsActivity.PaymentMethodsActivity","location":"payments-core/com.stripe.android.view/-payment-methods-activity/-payment-methods-activity.html","searchKeys":["PaymentMethodsActivity","fun PaymentMethodsActivity()","com.stripe.android.view.PaymentMethodsActivity.PaymentMethodsActivity"]},{"name":"fun PaymentMethodsActivityStarter(activity: Activity)","description":"com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-payment-methods-activity-starter.html","searchKeys":["PaymentMethodsActivityStarter","fun PaymentMethodsActivityStarter(activity: Activity)","com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter"]},{"name":"fun PaymentMethodsActivityStarter(fragment: Fragment)","description":"com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-payment-methods-activity-starter.html","searchKeys":["PaymentMethodsActivityStarter","fun PaymentMethodsActivityStarter(fragment: Fragment)","com.stripe.android.view.PaymentMethodsActivityStarter.PaymentMethodsActivityStarter"]},{"name":"fun PaymentOption(drawableResourceId: Int, label: String)","description":"com.stripe.android.paymentsheet.model.PaymentOption.PaymentOption","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/-payment-option.html","searchKeys":["PaymentOption","fun PaymentOption(drawableResourceId: Int, label: String)","com.stripe.android.paymentsheet.model.PaymentOption.PaymentOption"]},{"name":"fun PaymentPageOptions(logoUrl: String? = null, backgroundImageUrl: String? = null, pageTitle: String? = null, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null)","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PaymentPageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-payment-page-options.html","searchKeys":["PaymentPageOptions","fun PaymentPageOptions(logoUrl: String? = null, backgroundImageUrl: String? = null, pageTitle: String? = null, purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null)","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PaymentPageOptions"]},{"name":"fun PaymentSession(activity: ComponentActivity, config: PaymentSessionConfig)","description":"com.stripe.android.PaymentSession.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/-payment-session.html","searchKeys":["PaymentSession","fun PaymentSession(activity: ComponentActivity, config: PaymentSessionConfig)","com.stripe.android.PaymentSession.PaymentSession"]},{"name":"fun PaymentSession(fragment: Fragment, config: PaymentSessionConfig)","description":"com.stripe.android.PaymentSession.PaymentSession","location":"payments-core/com.stripe.android/-payment-session/-payment-session.html","searchKeys":["PaymentSession","fun PaymentSession(fragment: Fragment, config: PaymentSessionConfig)","com.stripe.android.PaymentSession.PaymentSession"]},{"name":"fun PaymentSheet(activity: ComponentActivity, callback: PaymentSheetResultCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-payment-sheet.html","searchKeys":["PaymentSheet","fun PaymentSheet(activity: ComponentActivity, callback: PaymentSheetResultCallback)","com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet"]},{"name":"fun PaymentSheet(fragment: Fragment, callback: PaymentSheetResultCallback)","description":"com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-payment-sheet.html","searchKeys":["PaymentSheet","fun PaymentSheet(fragment: Fragment, callback: PaymentSheetResultCallback)","com.stripe.android.paymentsheet.PaymentSheet.PaymentSheet"]},{"name":"fun PaymentSheetContract()","description":"com.stripe.android.paymentsheet.PaymentSheetContract.PaymentSheetContract","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-payment-sheet-contract.html","searchKeys":["PaymentSheetContract","fun PaymentSheetContract()","com.stripe.android.paymentsheet.PaymentSheetContract.PaymentSheetContract"]},{"name":"fun PermissionException(stripeError: StripeError, requestId: String? = null)","description":"com.stripe.android.exception.PermissionException.PermissionException","location":"payments-core/com.stripe.android.exception/-permission-exception/-permission-exception.html","searchKeys":["PermissionException","fun PermissionException(stripeError: StripeError, requestId: String? = null)","com.stripe.android.exception.PermissionException.PermissionException"]},{"name":"fun PersonTokenParams(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, relationship: PersonTokenParams.Relationship? = null, ssnLast4: String? = null, verification: PersonTokenParams.Verification? = null)","description":"com.stripe.android.model.PersonTokenParams.PersonTokenParams","location":"payments-core/com.stripe.android.model/-person-token-params/-person-token-params.html","searchKeys":["PersonTokenParams","fun PersonTokenParams(address: Address? = null, addressKana: AddressJapanParams? = null, addressKanji: AddressJapanParams? = null, dateOfBirth: DateOfBirth? = null, email: String? = null, firstName: String? = null, firstNameKana: String? = null, firstNameKanji: String? = null, gender: String? = null, idNumber: String? = null, lastName: String? = null, lastNameKana: String? = null, lastNameKanji: String? = null, maidenName: String? = null, metadata: Map? = null, phone: String? = null, relationship: PersonTokenParams.Relationship? = null, ssnLast4: String? = null, verification: PersonTokenParams.Verification? = null)","com.stripe.android.model.PersonTokenParams.PersonTokenParams"]},{"name":"fun PostalCodeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.PostalCodeEditText.PostalCodeEditText","location":"payments-core/com.stripe.android.view/-postal-code-edit-text/-postal-code-edit-text.html","searchKeys":["PostalCodeEditText","fun PostalCodeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.PostalCodeEditText.PostalCodeEditText"]},{"name":"fun RadarSession(id: String)","description":"com.stripe.android.model.RadarSession.RadarSession","location":"payments-core/com.stripe.android.model/-radar-session/-radar-session.html","searchKeys":["RadarSession","fun RadarSession(id: String)","com.stripe.android.model.RadarSession.RadarSession"]},{"name":"fun RateLimitException(stripeError: StripeError? = null, requestId: String? = null, message: String? = stripeError?.message, cause: Throwable? = null)","description":"com.stripe.android.exception.RateLimitException.RateLimitException","location":"payments-core/com.stripe.android.exception/-rate-limit-exception/-rate-limit-exception.html","searchKeys":["RateLimitException","fun RateLimitException(stripeError: StripeError? = null, requestId: String? = null, message: String? = stripeError?.message, cause: Throwable? = null)","com.stripe.android.exception.RateLimitException.RateLimitException"]},{"name":"fun Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?)","description":"com.stripe.android.model.Source.Redirect.Redirect","location":"payments-core/com.stripe.android.model/-source/-redirect/-redirect.html","searchKeys":["Redirect","fun Redirect(returnUrl: String?, status: Source.Redirect.Status?, url: String?)","com.stripe.android.model.Source.Redirect.Redirect"]},{"name":"fun RedirectToUrl(url: Uri, returnUrl: String?)","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.RedirectToUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/-redirect-to-url.html","searchKeys":["RedirectToUrl","fun RedirectToUrl(url: Uri, returnUrl: String?)","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.RedirectToUrl"]},{"name":"fun Relationship(director: Boolean? = null, executive: Boolean? = null, owner: Boolean? = null, percentOwnership: Int? = null, representative: Boolean? = null, title: String? = null)","description":"com.stripe.android.model.PersonTokenParams.Relationship.Relationship","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-relationship.html","searchKeys":["Relationship","fun Relationship(director: Boolean? = null, executive: Boolean? = null, owner: Boolean? = null, percentOwnership: Int? = null, representative: Boolean? = null, title: String? = null)","com.stripe.android.model.PersonTokenParams.Relationship.Relationship"]},{"name":"fun SepaDebit(iban: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.SepaDebit","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/-sepa-debit.html","searchKeys":["SepaDebit","fun SepaDebit(iban: String?)","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.SepaDebit"]},{"name":"fun SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs.SetupIntentArgs","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-setup-intent-args/-setup-intent-args.html","searchKeys":["SetupIntentArgs","fun SetupIntentArgs(clientSecret: String, config: GooglePayLauncher.Config, currencyCode: String)","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.SetupIntentArgs.SetupIntentArgs"]},{"name":"fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.PaymentIntent.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.PaymentIntent.Shipping.Shipping"]},{"name":"fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.SourceOrderParams.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, carrier: String? = null, name: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.SourceOrderParams.Shipping.Shipping"]},{"name":"fun Shipping(address: Address, name: String, carrier: String? = null, phone: String? = null, trackingNumber: String? = null)","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.Shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/-shipping.html","searchKeys":["Shipping","fun Shipping(address: Address, name: String, carrier: String? = null, phone: String? = null, trackingNumber: String? = null)","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.Shipping"]},{"name":"fun ShippingAddressParameters(isRequired: Boolean = false, allowedCountryCodes: Set = emptySet(), phoneNumberRequired: Boolean = false)","description":"com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters.ShippingAddressParameters","location":"payments-core/com.stripe.android/-google-pay-json-factory/-shipping-address-parameters/-shipping-address-parameters.html","searchKeys":["ShippingAddressParameters","fun ShippingAddressParameters(isRequired: Boolean = false, allowedCountryCodes: Set = emptySet(), phoneNumberRequired: Boolean = false)","com.stripe.android.GooglePayJsonFactory.ShippingAddressParameters.ShippingAddressParameters"]},{"name":"fun ShippingInfoWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","description":"com.stripe.android.view.ShippingInfoWidget.ShippingInfoWidget","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-shipping-info-widget.html","searchKeys":["ShippingInfoWidget","fun ShippingInfoWidget(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)","com.stripe.android.view.ShippingInfoWidget.ShippingInfoWidget"]},{"name":"fun ShippingInformation(address: Address? = null, name: String? = null, phone: String? = null)","description":"com.stripe.android.model.ShippingInformation.ShippingInformation","location":"payments-core/com.stripe.android.model/-shipping-information/-shipping-information.html","searchKeys":["ShippingInformation","fun ShippingInformation(address: Address? = null, name: String? = null, phone: String? = null)","com.stripe.android.model.ShippingInformation.ShippingInformation"]},{"name":"fun ShippingMethod(label: String, identifier: String, amount: Long, currency: Currency, detail: String? = null)","description":"com.stripe.android.model.ShippingMethod.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/-shipping-method.html","searchKeys":["ShippingMethod","fun ShippingMethod(label: String, identifier: String, amount: Long, currency: Currency, detail: String? = null)","com.stripe.android.model.ShippingMethod.ShippingMethod"]},{"name":"fun ShippingMethod(label: String, identifier: String, amount: Long, currencyCode: String, detail: String? = null)","description":"com.stripe.android.model.ShippingMethod.ShippingMethod","location":"payments-core/com.stripe.android.model/-shipping-method/-shipping-method.html","searchKeys":["ShippingMethod","fun ShippingMethod(label: String, identifier: String, amount: Long, currencyCode: String, detail: String? = null)","com.stripe.android.model.ShippingMethod.ShippingMethod"]},{"name":"fun Sofort(country: String)","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort.Sofort","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/-sofort.html","searchKeys":["Sofort","fun Sofort(country: String)","com.stripe.android.model.PaymentMethodCreateParams.Sofort.Sofort"]},{"name":"fun SourceOrderParams(items: List? = null, shipping: SourceOrderParams.Shipping? = null)","description":"com.stripe.android.model.SourceOrderParams.SourceOrderParams","location":"payments-core/com.stripe.android.model/-source-order-params/-source-order-params.html","searchKeys":["SourceOrderParams","fun SourceOrderParams(items: List? = null, shipping: SourceOrderParams.Shipping? = null)","com.stripe.android.model.SourceOrderParams.SourceOrderParams"]},{"name":"fun SourceType()","description":"com.stripe.android.model.Source.SourceType.SourceType","location":"payments-core/com.stripe.android.model/-source/-source-type/-source-type.html","searchKeys":["SourceType","fun SourceType()","com.stripe.android.model.Source.SourceType.SourceType"]},{"name":"fun Stripe(context: Context, publishableKey: String, stripeAccountId: String? = null, enableLogging: Boolean = false, betas: Set = emptySet())","description":"com.stripe.android.Stripe.Stripe","location":"payments-core/com.stripe.android/-stripe/-stripe.html","searchKeys":["Stripe","fun Stripe(context: Context, publishableKey: String, stripeAccountId: String? = null, enableLogging: Boolean = false, betas: Set = emptySet())","com.stripe.android.Stripe.Stripe"]},{"name":"fun StripeActivity()","description":"com.stripe.android.view.StripeActivity.StripeActivity","location":"payments-core/com.stripe.android.view/-stripe-activity/-stripe-activity.html","searchKeys":["StripeActivity","fun StripeActivity()","com.stripe.android.view.StripeActivity.StripeActivity"]},{"name":"fun StripeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","description":"com.stripe.android.view.StripeEditText.StripeEditText","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-stripe-edit-text.html","searchKeys":["StripeEditText","fun StripeEditText(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = androidx.appcompat.R.attr.editTextStyle)","com.stripe.android.view.StripeEditText.StripeEditText"]},{"name":"fun StripeException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, cause: Throwable? = null, message: String? = stripeError?.message)","description":"com.stripe.android.exception.StripeException.StripeException","location":"payments-core/com.stripe.android.exception/-stripe-exception/-stripe-exception.html","searchKeys":["StripeException","fun StripeException(stripeError: StripeError? = null, requestId: String? = null, statusCode: Int = 0, cause: Throwable? = null, message: String? = stripeError?.message)","com.stripe.android.exception.StripeException.StripeException"]},{"name":"fun StripeFileParams(file: File, purpose: StripeFilePurpose)","description":"com.stripe.android.model.StripeFileParams.StripeFileParams","location":"payments-core/com.stripe.android.model/-stripe-file-params/-stripe-file-params.html","searchKeys":["StripeFileParams","fun StripeFileParams(file: File, purpose: StripeFilePurpose)","com.stripe.android.model.StripeFileParams.StripeFileParams"]},{"name":"fun StripeIntent.getRequestCode(): Int","description":"com.stripe.android.model.getRequestCode","location":"payments-core/com.stripe.android.model/get-request-code.html","searchKeys":["getRequestCode","fun StripeIntent.getRequestCode(): Int","com.stripe.android.model.getRequestCode"]},{"name":"fun StripeRequest()","description":"com.stripe.android.networking.StripeRequest.StripeRequest","location":"payments-core/com.stripe.android.networking/-stripe-request/-stripe-request.html","searchKeys":["StripeRequest","fun StripeRequest()","com.stripe.android.networking.StripeRequest.StripeRequest"]},{"name":"fun TokenParams(tokenType: Token.Type, attribution: Set = emptySet())","description":"com.stripe.android.model.TokenParams.TokenParams","location":"payments-core/com.stripe.android.model/-token-params/-token-params.html","searchKeys":["TokenParams","fun TokenParams(tokenType: Token.Type, attribution: Set = emptySet())","com.stripe.android.model.TokenParams.TokenParams"]},{"name":"fun TransactionInfo(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String? = null, transactionId: String? = null, totalPrice: Int? = null, totalPriceLabel: String? = null, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption? = null)","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TransactionInfo","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-transaction-info.html","searchKeys":["TransactionInfo","fun TransactionInfo(currencyCode: String, totalPriceStatus: GooglePayJsonFactory.TransactionInfo.TotalPriceStatus, countryCode: String? = null, transactionId: String? = null, totalPrice: Int? = null, totalPriceLabel: String? = null, checkoutOption: GooglePayJsonFactory.TransactionInfo.CheckoutOption? = null)","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TransactionInfo"]},{"name":"fun UIContext()","description":"com.stripe.android.payments.core.injection.UIContext.UIContext","location":"payments-core/com.stripe.android.payments.core.injection/-u-i-context/-u-i-context.html","searchKeys":["UIContext","fun UIContext()","com.stripe.android.payments.core.injection.UIContext.UIContext"]},{"name":"fun Unvalidated(clientSecret: String? = null, flowOutcome: Int = StripeIntentResult.Outcome.UNKNOWN, exception: StripeException? = null, canCancelSource: Boolean = false, sourceId: String? = null, source: Source? = null, stripeAccountId: String? = null)","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Unvalidated","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-unvalidated.html","searchKeys":["Unvalidated","fun Unvalidated(clientSecret: String? = null, flowOutcome: Int = StripeIntentResult.Outcome.UNKNOWN, exception: StripeException? = null, canCancelSource: Boolean = false, sourceId: String? = null, source: Source? = null, stripeAccountId: String? = null)","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Unvalidated"]},{"name":"fun Upi(vpa: String?)","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi.Upi","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/-upi.html","searchKeys":["Upi","fun Upi(vpa: String?)","com.stripe.android.model.PaymentMethodCreateParams.Upi.Upi"]},{"name":"fun Use3DS1(url: String)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.Use3DS1","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/-use3-d-s1.html","searchKeys":["Use3DS1","fun Use3DS1(url: String)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.Use3DS1"]},{"name":"fun Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption)","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.Use3DS2","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-use3-d-s2.html","searchKeys":["Use3DS2","fun Use3DS2(source: String, serverName: String, transactionId: String, serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption)","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.Use3DS2"]},{"name":"fun Validated(month: Int, year: Int)","description":"com.stripe.android.model.ExpirationDate.Validated.Validated","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/-validated.html","searchKeys":["Validated","fun Validated(month: Int, year: Int)","com.stripe.android.model.ExpirationDate.Validated.Validated"]},{"name":"fun Verification(document: AccountParams.BusinessTypeParams.Company.Document? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: AccountParams.BusinessTypeParams.Company.Document? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.Verification"]},{"name":"fun Verification(document: AccountParams.BusinessTypeParams.Individual.Document? = null, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null)","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.Verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: AccountParams.BusinessTypeParams.Individual.Document? = null, additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null)","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.Verification"]},{"name":"fun Verification(document: PersonTokenParams.Document? = null, additionalDocument: PersonTokenParams.Document? = null)","description":"com.stripe.android.model.PersonTokenParams.Verification.Verification","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/-verification.html","searchKeys":["Verification","fun Verification(document: PersonTokenParams.Document? = null, additionalDocument: PersonTokenParams.Document? = null)","com.stripe.android.model.PersonTokenParams.Verification.Verification"]},{"name":"fun WeChat(statementDescriptor: String? = null, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String? = null)","description":"com.stripe.android.model.WeChat.WeChat","location":"payments-core/com.stripe.android.model/-we-chat/-we-chat.html","searchKeys":["WeChat","fun WeChat(statementDescriptor: String? = null, appId: String?, nonce: String?, packageValue: String?, partnerId: String?, prepayId: String?, sign: String?, timestamp: String?, qrCodeUrl: String? = null)","com.stripe.android.model.WeChat.WeChat"]},{"name":"fun WeChatPay(appId: String)","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.WeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/-we-chat-pay.html","searchKeys":["WeChatPay","fun WeChatPay(appId: String)","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.WeChatPay"]},{"name":"fun WeChatPayRedirect(weChat: WeChat)","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.WeChatPayRedirect","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/-we-chat-pay-redirect.html","searchKeys":["WeChatPayRedirect","fun WeChatPayRedirect(weChat: WeChat)","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.WeChatPayRedirect"]},{"name":"fun addCustomerSource(sourceId: String, sourceType: String, listener: CustomerSession.SourceRetrievalListener)","description":"com.stripe.android.CustomerSession.addCustomerSource","location":"payments-core/com.stripe.android/-customer-session/add-customer-source.html","searchKeys":["addCustomerSource","fun addCustomerSource(sourceId: String, sourceType: String, listener: CustomerSession.SourceRetrievalListener)","com.stripe.android.CustomerSession.addCustomerSource"]},{"name":"fun asSourceType(sourceType: String?): String","description":"com.stripe.android.model.Source.Companion.asSourceType","location":"payments-core/com.stripe.android.model/-source/-companion/as-source-type.html","searchKeys":["asSourceType","fun asSourceType(sourceType: String?): String","com.stripe.android.model.Source.Companion.asSourceType"]},{"name":"fun attachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","description":"com.stripe.android.CustomerSession.attachPaymentMethod","location":"payments-core/com.stripe.android/-customer-session/attach-payment-method.html","searchKeys":["attachPaymentMethod","fun attachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","com.stripe.android.CustomerSession.attachPaymentMethod"]},{"name":"fun authenticateSource(activity: ComponentActivity, source: Source, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.authenticateSource","location":"payments-core/com.stripe.android/-stripe/authenticate-source.html","searchKeys":["authenticateSource","fun authenticateSource(activity: ComponentActivity, source: Source, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.authenticateSource"]},{"name":"fun authenticateSource(fragment: Fragment, source: Source, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.authenticateSource","location":"payments-core/com.stripe.android/-stripe/authenticate-source.html","searchKeys":["authenticateSource","fun authenticateSource(fragment: Fragment, source: Source, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.authenticateSource"]},{"name":"fun cancelCallbacks()","description":"com.stripe.android.CustomerSession.Companion.cancelCallbacks","location":"payments-core/com.stripe.android/-customer-session/-companion/cancel-callbacks.html","searchKeys":["cancelCallbacks","fun cancelCallbacks()","com.stripe.android.CustomerSession.Companion.cancelCallbacks"]},{"name":"fun clearPaymentMethod()","description":"com.stripe.android.PaymentSession.clearPaymentMethod","location":"payments-core/com.stripe.android/-payment-session/clear-payment-method.html","searchKeys":["clearPaymentMethod","fun clearPaymentMethod()","com.stripe.android.PaymentSession.clearPaymentMethod"]},{"name":"fun confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.confirmAlipayPayment","location":"payments-core/com.stripe.android/-stripe/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment","fun confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.confirmAlipayPayment"]},{"name":"fun confirmPayment(activity: ComponentActivity, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmPayment","location":"payments-core/com.stripe.android/-stripe/confirm-payment.html","searchKeys":["confirmPayment","fun confirmPayment(activity: ComponentActivity, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmPayment"]},{"name":"fun confirmPayment(fragment: Fragment, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmPayment","location":"payments-core/com.stripe.android/-stripe/confirm-payment.html","searchKeys":["confirmPayment","fun confirmPayment(fragment: Fragment, confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmPayment"]},{"name":"fun confirmPaymentIntentSynchronous(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent?","description":"com.stripe.android.Stripe.confirmPaymentIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/confirm-payment-intent-synchronous.html","searchKeys":["confirmPaymentIntentSynchronous","fun confirmPaymentIntentSynchronous(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent?","com.stripe.android.Stripe.confirmPaymentIntentSynchronous"]},{"name":"fun confirmSetupIntent(activity: ComponentActivity, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmSetupIntent","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","fun confirmSetupIntent(activity: ComponentActivity, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmSetupIntent"]},{"name":"fun confirmSetupIntent(fragment: Fragment, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.confirmSetupIntent","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","fun confirmSetupIntent(fragment: Fragment, confirmSetupIntentParams: ConfirmSetupIntentParams, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.confirmSetupIntent"]},{"name":"fun confirmSetupIntentSynchronous(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent?","description":"com.stripe.android.Stripe.confirmSetupIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/confirm-setup-intent-synchronous.html","searchKeys":["confirmSetupIntentSynchronous","fun confirmSetupIntentSynchronous(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent?","com.stripe.android.Stripe.confirmSetupIntentSynchronous"]},{"name":"fun confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.confirmWeChatPayPayment","location":"payments-core/com.stripe.android/-stripe/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment","fun confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.confirmWeChatPayPayment"]},{"name":"fun create(activity: ComponentActivity, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/create.html","searchKeys":["create","fun create(activity: ComponentActivity, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create"]},{"name":"fun create(auBecsDebit: PaymentMethodCreateParams.AuBecsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(auBecsDebit: PaymentMethodCreateParams.AuBecsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(bacsDebit: PaymentMethodCreateParams.BacsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(bacsDebit: PaymentMethodCreateParams.BacsDebit, billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(card: PaymentMethodCreateParams.Card, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(card: PaymentMethodCreateParams.Card, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(clientSecret: String, shipping: ConfirmPaymentIntentParams.Shipping? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create.html","searchKeys":["create","fun create(clientSecret: String, shipping: ConfirmPaymentIntentParams.Shipping? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.create"]},{"name":"fun create(companyName: String): CharSequence","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.create","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-factory/create.html","searchKeys":["create","fun create(companyName: String): CharSequence","com.stripe.android.view.BecsDebitMandateAcceptanceTextFactory.create"]},{"name":"fun create(context: Context, keyProvider: EphemeralKeyProvider): IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService.Companion.create","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/create.html","searchKeys":["create","fun create(context: Context, keyProvider: EphemeralKeyProvider): IssuingCardPinService","com.stripe.android.IssuingCardPinService.Companion.create"]},{"name":"fun create(context: Context, publishableKey: String, stripeAccountId: String? = null, keyProvider: EphemeralKeyProvider): IssuingCardPinService","description":"com.stripe.android.IssuingCardPinService.Companion.create","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/create.html","searchKeys":["create","fun create(context: Context, publishableKey: String, stripeAccountId: String? = null, keyProvider: EphemeralKeyProvider): IssuingCardPinService","com.stripe.android.IssuingCardPinService.Companion.create"]},{"name":"fun create(fpx: PaymentMethodCreateParams.Fpx, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(fpx: PaymentMethodCreateParams.Fpx, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(fragment: Fragment, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/create.html","searchKeys":["create","fun create(fragment: Fragment, paymentOptionCallback: PaymentOptionCallback, paymentResultCallback: PaymentSheetResultCallback): PaymentSheet.FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion.create"]},{"name":"fun create(ideal: PaymentMethodCreateParams.Ideal, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(ideal: PaymentMethodCreateParams.Ideal, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(intent: Intent): PaymentFlowActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion.create","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-companion/create.html","searchKeys":["create","fun create(intent: Intent): PaymentFlowActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion.create"]},{"name":"fun create(name: String, version: String? = null, url: String? = null, partnerId: String? = null): AppInfo","description":"com.stripe.android.AppInfo.Companion.create","location":"payments-core/com.stripe.android/-app-info/-companion/create.html","searchKeys":["create","fun create(name: String, version: String? = null, url: String? = null, partnerId: String? = null): AppInfo","com.stripe.android.AppInfo.Companion.create"]},{"name":"fun create(netbanking: PaymentMethodCreateParams.Netbanking, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(netbanking: PaymentMethodCreateParams.Netbanking, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create.html","searchKeys":["create","fun create(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.create"]},{"name":"fun create(paymentMethodId: String, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.create","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create.html","searchKeys":["create","fun create(paymentMethodId: String, clientSecret: String, mandateData: MandateDataParams? = null, mandateId: String? = null): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.create"]},{"name":"fun create(sepaDebit: PaymentMethodCreateParams.SepaDebit, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(sepaDebit: PaymentMethodCreateParams.SepaDebit, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(sofort: PaymentMethodCreateParams.Sofort, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(sofort: PaymentMethodCreateParams.Sofort, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun create(throwable: Throwable): StripeException","description":"com.stripe.android.exception.StripeException.Companion.create","location":"payments-core/com.stripe.android.exception/-stripe-exception/-companion/create.html","searchKeys":["create","fun create(throwable: Throwable): StripeException","com.stripe.android.exception.StripeException.Companion.create"]},{"name":"fun create(token: String): PaymentMethodCreateParams.Card","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-companion/create.html","searchKeys":["create","fun create(token: String): PaymentMethodCreateParams.Card","com.stripe.android.model.PaymentMethodCreateParams.Card.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, businessType: AccountParams.BusinessType): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, businessType: AccountParams.BusinessType): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, company: AccountParams.BusinessTypeParams.Company): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, company: AccountParams.BusinessTypeParams.Company): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(tosShownAndAccepted: Boolean, individual: AccountParams.BusinessTypeParams.Individual): AccountParams","description":"com.stripe.android.model.AccountParams.Companion.create","location":"payments-core/com.stripe.android.model/-account-params/-companion/create.html","searchKeys":["create","fun create(tosShownAndAccepted: Boolean, individual: AccountParams.BusinessTypeParams.Individual): AccountParams","com.stripe.android.model.AccountParams.Companion.create"]},{"name":"fun create(upi: PaymentMethodCreateParams.Upi, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.create","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create.html","searchKeys":["create","fun create(upi: PaymentMethodCreateParams.Upi, billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.create"]},{"name":"fun createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createAccountToken","location":"payments-core/com.stripe.android/-stripe/create-account-token.html","searchKeys":["createAccountToken","fun createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createAccountToken"]},{"name":"fun createAccountTokenSynchronous(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createAccountTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-account-token-synchronous.html","searchKeys":["createAccountTokenSynchronous","fun createAccountTokenSynchronous(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createAccountTokenSynchronous"]},{"name":"fun createAfterpayClearpay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createAfterpayClearpay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-afterpay-clearpay.html","searchKeys":["createAfterpayClearpay","fun createAfterpayClearpay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createAfterpayClearpay"]},{"name":"fun createAlipay(clientSecret: String): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createAlipay","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-alipay.html","searchKeys":["createAlipay","fun createAlipay(clientSecret: String): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createAlipay"]},{"name":"fun createAlipay(metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createAlipay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-alipay.html","searchKeys":["createAlipay","fun createAlipay(metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createAlipay"]},{"name":"fun createAlipayReusableParams(currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createAlipayReusableParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-alipay-reusable-params.html","searchKeys":["createAlipayReusableParams","fun createAlipayReusableParams(currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createAlipayReusableParams"]},{"name":"fun createAlipaySingleUseParams(amount: Long, currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createAlipaySingleUseParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-alipay-single-use-params.html","searchKeys":["createAlipaySingleUseParams","fun createAlipaySingleUseParams(amount: Long, currency: String, name: String? = null, email: String? = null, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createAlipaySingleUseParams"]},{"name":"fun createBancontact(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createBancontact","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-bancontact.html","searchKeys":["createBancontact","fun createBancontact(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createBancontact"]},{"name":"fun createBancontactParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null, preferredLanguage: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createBancontactParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-bancontact-params.html","searchKeys":["createBancontactParams","fun createBancontactParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null, preferredLanguage: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createBancontactParams"]},{"name":"fun createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createBankAccountToken","location":"payments-core/com.stripe.android/-stripe/create-bank-account-token.html","searchKeys":["createBankAccountToken","fun createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createBankAccountToken"]},{"name":"fun createBankAccountTokenSynchronous(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createBankAccountTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-bank-account-token-synchronous.html","searchKeys":["createBankAccountTokenSynchronous","fun createBankAccountTokenSynchronous(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createBankAccountTokenSynchronous"]},{"name":"fun createBlik(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createBlik","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-blik.html","searchKeys":["createBlik","fun createBlik(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createBlik"]},{"name":"fun createCard(cardParams: CardParams): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createCard","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-card.html","searchKeys":["createCard","fun createCard(cardParams: CardParams): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createCard"]},{"name":"fun createCardParams(cardParams: CardParams): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCardParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-card-params.html","searchKeys":["createCardParams","fun createCardParams(cardParams: CardParams): SourceParams","com.stripe.android.model.SourceParams.Companion.createCardParams"]},{"name":"fun createCardParamsFromGooglePay(googlePayPaymentData: JSONObject): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCardParamsFromGooglePay","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-card-params-from-google-pay.html","searchKeys":["createCardParamsFromGooglePay","fun createCardParamsFromGooglePay(googlePayPaymentData: JSONObject): SourceParams","com.stripe.android.model.SourceParams.Companion.createCardParamsFromGooglePay"]},{"name":"fun createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createCardToken","location":"payments-core/com.stripe.android/-stripe/create-card-token.html","searchKeys":["createCardToken","fun createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createCardToken"]},{"name":"fun createCardTokenSynchronous(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createCardTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-card-token-synchronous.html","searchKeys":["createCardTokenSynchronous","fun createCardTokenSynchronous(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createCardTokenSynchronous"]},{"name":"fun createCustomParams(type: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createCustomParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-custom-params.html","searchKeys":["createCustomParams","fun createCustomParams(type: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createCustomParams"]},{"name":"fun createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createCvcUpdateToken","location":"payments-core/com.stripe.android/-stripe/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken","fun createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createCvcUpdateToken"]},{"name":"fun createCvcUpdateTokenSynchronous(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createCvcUpdateTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-cvc-update-token-synchronous.html","searchKeys":["createCvcUpdateTokenSynchronous","fun createCvcUpdateTokenSynchronous(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createCvcUpdateTokenSynchronous"]},{"name":"fun createDelete(url: String, options: ApiRequest.Options): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createDelete","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-delete.html","searchKeys":["createDelete","fun createDelete(url: String, options: ApiRequest.Options): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createDelete"]},{"name":"fun createEPSParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createEPSParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-e-p-s-params.html","searchKeys":["createEPSParams","fun createEPSParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createEPSParams"]},{"name":"fun createEps(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createEps","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-eps.html","searchKeys":["createEps","fun createEps(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createEps"]},{"name":"fun createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createFile","location":"payments-core/com.stripe.android/-stripe/create-file.html","searchKeys":["createFile","fun createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createFile"]},{"name":"fun createFileSynchronous(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","description":"com.stripe.android.Stripe.createFileSynchronous","location":"payments-core/com.stripe.android/-stripe/create-file-synchronous.html","searchKeys":["createFileSynchronous","fun createFileSynchronous(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","com.stripe.android.Stripe.createFileSynchronous"]},{"name":"fun createFromGooglePay(googlePayPaymentData: JSONObject): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createFromGooglePay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-from-google-pay.html","searchKeys":["createFromGooglePay","fun createFromGooglePay(googlePayPaymentData: JSONObject): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createFromGooglePay"]},{"name":"fun createGet(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createGet","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-get.html","searchKeys":["createGet","fun createGet(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createGet"]},{"name":"fun createGiropay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createGiropay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-giropay.html","searchKeys":["createGiropay","fun createGiropay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createGiropay"]},{"name":"fun createGiropayParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createGiropayParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-giropay-params.html","searchKeys":["createGiropayParams","fun createGiropayParams(amount: Long, name: String, returnUrl: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createGiropayParams"]},{"name":"fun createGrabPay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createGrabPay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-grab-pay.html","searchKeys":["createGrabPay","fun createGrabPay(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createGrabPay"]},{"name":"fun createIdealParams(amount: Long, name: String?, returnUrl: String, statementDescriptor: String? = null, bank: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createIdealParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-ideal-params.html","searchKeys":["createIdealParams","fun createIdealParams(amount: Long, name: String?, returnUrl: String, statementDescriptor: String? = null, bank: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createIdealParams"]},{"name":"fun createIsReadyToPayRequest(billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, existingPaymentMethodRequired: Boolean? = null): JSONObject","description":"com.stripe.android.GooglePayJsonFactory.createIsReadyToPayRequest","location":"payments-core/com.stripe.android/-google-pay-json-factory/create-is-ready-to-pay-request.html","searchKeys":["createIsReadyToPayRequest","fun createIsReadyToPayRequest(billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, existingPaymentMethodRequired: Boolean? = null): JSONObject","com.stripe.android.GooglePayJsonFactory.createIsReadyToPayRequest"]},{"name":"fun createKlarna(returnUrl: String, currency: String, klarnaParams: KlarnaSourceParams): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createKlarna","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-klarna.html","searchKeys":["createKlarna","fun createKlarna(returnUrl: String, currency: String, klarnaParams: KlarnaSourceParams): SourceParams","com.stripe.android.model.SourceParams.Companion.createKlarna"]},{"name":"fun createMasterpassParams(transactionId: String, cartId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createMasterpassParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-masterpass-params.html","searchKeys":["createMasterpassParams","fun createMasterpassParams(transactionId: String, cartId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createMasterpassParams"]},{"name":"fun createMultibancoParams(amount: Long, returnUrl: String, email: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createMultibancoParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-multibanco-params.html","searchKeys":["createMultibancoParams","fun createMultibancoParams(amount: Long, returnUrl: String, email: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createMultibancoParams"]},{"name":"fun createOxxo(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createOxxo","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-oxxo.html","searchKeys":["createOxxo","fun createOxxo(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createOxxo"]},{"name":"fun createP24(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createP24","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-p24.html","searchKeys":["createP24","fun createP24(billingDetails: PaymentMethod.BillingDetails, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createP24"]},{"name":"fun createP24Params(amount: Long, currency: String, name: String?, email: String, returnUrl: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createP24Params","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-p24-params.html","searchKeys":["createP24Params","fun createP24Params(amount: Long, currency: String, name: String?, email: String, returnUrl: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createP24Params"]},{"name":"fun createPayPal(metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createPayPal","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-pay-pal.html","searchKeys":["createPayPal","fun createPayPal(metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createPayPal"]},{"name":"fun createPaymentDataRequest(transactionInfo: GooglePayJsonFactory.TransactionInfo, billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, shippingAddressParameters: GooglePayJsonFactory.ShippingAddressParameters? = null, isEmailRequired: Boolean = false, merchantInfo: GooglePayJsonFactory.MerchantInfo? = null): JSONObject","description":"com.stripe.android.GooglePayJsonFactory.createPaymentDataRequest","location":"payments-core/com.stripe.android/-google-pay-json-factory/create-payment-data-request.html","searchKeys":["createPaymentDataRequest","fun createPaymentDataRequest(transactionInfo: GooglePayJsonFactory.TransactionInfo, billingAddressParameters: GooglePayJsonFactory.BillingAddressParameters? = null, shippingAddressParameters: GooglePayJsonFactory.ShippingAddressParameters? = null, isEmailRequired: Boolean = false, merchantInfo: GooglePayJsonFactory.MerchantInfo? = null): JSONObject","com.stripe.android.GooglePayJsonFactory.createPaymentDataRequest"]},{"name":"fun createPaymentIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createPaymentIntentArgs","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/create-payment-intent-args.html","searchKeys":["createPaymentIntentArgs","fun createPaymentIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createPaymentIntentArgs"]},{"name":"fun createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPaymentMethod","location":"payments-core/com.stripe.android/-stripe/create-payment-method.html","searchKeys":["createPaymentMethod","fun createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPaymentMethod"]},{"name":"fun createPaymentMethodSynchronous(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod?","description":"com.stripe.android.Stripe.createPaymentMethodSynchronous","location":"payments-core/com.stripe.android/-stripe/create-payment-method-synchronous.html","searchKeys":["createPaymentMethodSynchronous","fun createPaymentMethodSynchronous(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod?","com.stripe.android.Stripe.createPaymentMethodSynchronous"]},{"name":"fun createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPersonToken","location":"payments-core/com.stripe.android/-stripe/create-person-token.html","searchKeys":["createPersonToken","fun createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPersonToken"]},{"name":"fun createPersonTokenSynchronous(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createPersonTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-person-token-synchronous.html","searchKeys":["createPersonTokenSynchronous","fun createPersonTokenSynchronous(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createPersonTokenSynchronous"]},{"name":"fun createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createPiiToken","location":"payments-core/com.stripe.android/-stripe/create-pii-token.html","searchKeys":["createPiiToken","fun createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createPiiToken"]},{"name":"fun createPiiTokenSynchronous(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","description":"com.stripe.android.Stripe.createPiiTokenSynchronous","location":"payments-core/com.stripe.android/-stripe/create-pii-token-synchronous.html","searchKeys":["createPiiTokenSynchronous","fun createPiiTokenSynchronous(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token?","com.stripe.android.Stripe.createPiiTokenSynchronous"]},{"name":"fun createPost(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","description":"com.stripe.android.networking.ApiRequest.Factory.createPost","location":"payments-core/com.stripe.android.networking/-api-request/-factory/create-post.html","searchKeys":["createPost","fun createPost(url: String, options: ApiRequest.Options, params: Map? = null): ApiRequest","com.stripe.android.networking.ApiRequest.Factory.createPost"]},{"name":"fun createRadarSession(stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createRadarSession","location":"payments-core/com.stripe.android/-stripe/create-radar-session.html","searchKeys":["createRadarSession","fun createRadarSession(stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createRadarSession"]},{"name":"fun createRequest(event: String, deviceId: String): AnalyticsRequest","description":"com.stripe.android.networking.AnalyticsRequestFactory.createRequest","location":"payments-core/com.stripe.android.networking/-analytics-request-factory/create-request.html","searchKeys":["createRequest","fun createRequest(event: String, deviceId: String): AnalyticsRequest","com.stripe.android.networking.AnalyticsRequestFactory.createRequest"]},{"name":"fun createRetrieveSourceParams(clientSecret: String): Map","description":"com.stripe.android.model.SourceParams.Companion.createRetrieveSourceParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-retrieve-source-params.html","searchKeys":["createRetrieveSourceParams","fun createRetrieveSourceParams(clientSecret: String): Map","com.stripe.android.model.SourceParams.Companion.createRetrieveSourceParams"]},{"name":"fun createSepaDebitParams(name: String, iban: String, addressLine1: String?, city: String, postalCode: String, country: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSepaDebitParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sepa-debit-params.html","searchKeys":["createSepaDebitParams","fun createSepaDebitParams(name: String, iban: String, addressLine1: String?, city: String, postalCode: String, country: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createSepaDebitParams"]},{"name":"fun createSepaDebitParams(name: String, iban: String, email: String?, addressLine1: String?, city: String?, postalCode: String?, country: String?): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSepaDebitParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sepa-debit-params.html","searchKeys":["createSepaDebitParams","fun createSepaDebitParams(name: String, iban: String, email: String?, addressLine1: String?, city: String?, postalCode: String?, country: String?): SourceParams","com.stripe.android.model.SourceParams.Companion.createSepaDebitParams"]},{"name":"fun createSetupIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createSetupIntentArgs","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/create-setup-intent-args.html","searchKeys":["createSetupIntentArgs","fun createSetupIntentArgs(clientSecret: String, config: PaymentSheet.Configuration? = null): PaymentSheetContract.Args","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion.createSetupIntentArgs"]},{"name":"fun createSofortParams(amount: Long, returnUrl: String, country: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSofortParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-sofort-params.html","searchKeys":["createSofortParams","fun createSofortParams(amount: Long, returnUrl: String, country: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createSofortParams"]},{"name":"fun createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.createSource","location":"payments-core/com.stripe.android/-stripe/create-source.html","searchKeys":["createSource","fun createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.createSource"]},{"name":"fun createSourceFromTokenParams(tokenId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createSourceFromTokenParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-source-from-token-params.html","searchKeys":["createSourceFromTokenParams","fun createSourceFromTokenParams(tokenId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createSourceFromTokenParams"]},{"name":"fun createSourceSynchronous(params: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source?","description":"com.stripe.android.Stripe.createSourceSynchronous","location":"payments-core/com.stripe.android/-stripe/create-source-synchronous.html","searchKeys":["createSourceSynchronous","fun createSourceSynchronous(params: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source?","com.stripe.android.Stripe.createSourceSynchronous"]},{"name":"fun createThreeDSecureParams(amount: Long, currency: String, returnUrl: String, cardId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createThreeDSecureParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-three-d-secure-params.html","searchKeys":["createThreeDSecureParams","fun createThreeDSecureParams(amount: Long, currency: String, returnUrl: String, cardId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createThreeDSecureParams"]},{"name":"fun createVisaCheckoutParams(callId: String): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createVisaCheckoutParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-visa-checkout-params.html","searchKeys":["createVisaCheckoutParams","fun createVisaCheckoutParams(callId: String): SourceParams","com.stripe.android.model.SourceParams.Companion.createVisaCheckoutParams"]},{"name":"fun createWeChatPay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion.createWeChatPay","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/create-we-chat-pay.html","searchKeys":["createWeChatPay","fun createWeChatPay(billingDetails: PaymentMethod.BillingDetails? = null, metadata: Map? = null): PaymentMethodCreateParams","com.stripe.android.model.PaymentMethodCreateParams.Companion.createWeChatPay"]},{"name":"fun createWeChatPayParams(amount: Long, currency: String, weChatAppId: String, statementDescriptor: String? = null): SourceParams","description":"com.stripe.android.model.SourceParams.Companion.createWeChatPayParams","location":"payments-core/com.stripe.android.model/-source-params/-companion/create-we-chat-pay-params.html","searchKeys":["createWeChatPayParams","fun createWeChatPayParams(amount: Long, currency: String, weChatAppId: String, statementDescriptor: String? = null): SourceParams","com.stripe.android.model.SourceParams.Companion.createWeChatPayParams"]},{"name":"fun createWithAppTheme(activity: Activity): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion.createWithAppTheme","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-companion/create-with-app-theme.html","searchKeys":["createWithAppTheme","fun createWithAppTheme(activity: Activity): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion.createWithAppTheme"]},{"name":"fun createWithPaymentMethodCreateParams(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, savePaymentMethod: Boolean? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-payment-method-create-params.html","searchKeys":["createWithPaymentMethodCreateParams","fun createWithPaymentMethodCreateParams(paymentMethodCreateParams: PaymentMethodCreateParams, clientSecret: String, savePaymentMethod: Boolean? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodCreateParams"]},{"name":"fun createWithPaymentMethodId(paymentMethodId: String, clientSecret: String, savePaymentMethod: Boolean? = null, paymentMethodOptions: PaymentMethodOptionsParams? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-payment-method-id.html","searchKeys":["createWithPaymentMethodId","fun createWithPaymentMethodId(paymentMethodId: String, clientSecret: String, savePaymentMethod: Boolean? = null, paymentMethodOptions: PaymentMethodOptionsParams? = null, mandateId: String? = null, mandateData: MandateDataParams? = null, setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithPaymentMethodId"]},{"name":"fun createWithSourceId(sourceId: String, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-source-id.html","searchKeys":["createWithSourceId","fun createWithSourceId(sourceId: String, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceId"]},{"name":"fun createWithSourceParams(sourceParams: SourceParams, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/create-with-source-params.html","searchKeys":["createWithSourceParams","fun createWithSourceParams(sourceParams: SourceParams, clientSecret: String, returnUrl: String, savePaymentMethod: Boolean? = null, shipping: ConfirmPaymentIntentParams.Shipping? = null): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.Companion.createWithSourceParams"]},{"name":"fun createWithoutPaymentMethod(clientSecret: String): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion.createWithoutPaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/create-without-payment-method.html","searchKeys":["createWithoutPaymentMethod","fun createWithoutPaymentMethod(clientSecret: String): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.Companion.createWithoutPaymentMethod"]},{"name":"fun deleteCustomerSource(sourceId: String, listener: CustomerSession.SourceRetrievalListener)","description":"com.stripe.android.CustomerSession.deleteCustomerSource","location":"payments-core/com.stripe.android/-customer-session/delete-customer-source.html","searchKeys":["deleteCustomerSource","fun deleteCustomerSource(sourceId: String, listener: CustomerSession.SourceRetrievalListener)","com.stripe.android.CustomerSession.deleteCustomerSource"]},{"name":"fun detachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","description":"com.stripe.android.CustomerSession.detachPaymentMethod","location":"payments-core/com.stripe.android/-customer-session/detach-payment-method.html","searchKeys":["detachPaymentMethod","fun detachPaymentMethod(paymentMethodId: String, listener: CustomerSession.PaymentMethodRetrievalListener)","com.stripe.android.CustomerSession.detachPaymentMethod"]},{"name":"fun endCustomerSession()","description":"com.stripe.android.CustomerSession.Companion.endCustomerSession","location":"payments-core/com.stripe.android/-customer-session/-companion/end-customer-session.html","searchKeys":["endCustomerSession","fun endCustomerSession()","com.stripe.android.CustomerSession.Companion.endCustomerSession"]},{"name":"fun formatPriceStringUsingFree(amount: Long, currency: Currency, free: String): String","description":"com.stripe.android.view.PaymentUtils.formatPriceStringUsingFree","location":"payments-core/com.stripe.android.view/-payment-utils/format-price-string-using-free.html","searchKeys":["formatPriceStringUsingFree","fun formatPriceStringUsingFree(amount: Long, currency: Currency, free: String): String","com.stripe.android.view.PaymentUtils.formatPriceStringUsingFree"]},{"name":"fun fromCode(code: String?): CardBrand","description":"com.stripe.android.model.CardBrand.Companion.fromCode","location":"payments-core/com.stripe.android.model/-card-brand/-companion/from-code.html","searchKeys":["fromCode","fun fromCode(code: String?): CardBrand","com.stripe.android.model.CardBrand.Companion.fromCode"]},{"name":"fun fromIntent(intent: Intent?): AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion.fromIntent","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion.fromIntent"]},{"name":"fun fromIntent(intent: Intent?): PaymentFlowResult.Unvalidated","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.fromIntent","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): PaymentFlowResult.Unvalidated","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.fromIntent"]},{"name":"fun fromIntent(intent: Intent?): PaymentMethodsActivityStarter.Result?","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion.fromIntent","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/-companion/from-intent.html","searchKeys":["fromIntent","fun fromIntent(intent: Intent?): PaymentMethodsActivityStarter.Result?","com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion.fromIntent"]},{"name":"fun fromJson(jsonObject: JSONObject?): Address?","description":"com.stripe.android.model.Address.Companion.fromJson","location":"payments-core/com.stripe.android.model/-address/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Address?","com.stripe.android.model.Address.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): PaymentIntent?","description":"com.stripe.android.model.PaymentIntent.Companion.fromJson","location":"payments-core/com.stripe.android.model/-payment-intent/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): PaymentIntent?","com.stripe.android.model.PaymentIntent.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): SetupIntent?","description":"com.stripe.android.model.SetupIntent.Companion.fromJson","location":"payments-core/com.stripe.android.model/-setup-intent/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): SetupIntent?","com.stripe.android.model.SetupIntent.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): Source?","description":"com.stripe.android.model.Source.Companion.fromJson","location":"payments-core/com.stripe.android.model/-source/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Source?","com.stripe.android.model.Source.Companion.fromJson"]},{"name":"fun fromJson(jsonObject: JSONObject?): Token?","description":"com.stripe.android.model.Token.Companion.fromJson","location":"payments-core/com.stripe.android.model/-token/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(jsonObject: JSONObject?): Token?","com.stripe.android.model.Token.Companion.fromJson"]},{"name":"fun fromJson(paymentDataJson: JSONObject): GooglePayResult","description":"com.stripe.android.model.GooglePayResult.Companion.fromJson","location":"payments-core/com.stripe.android.model/-google-pay-result/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(paymentDataJson: JSONObject): GooglePayResult","com.stripe.android.model.GooglePayResult.Companion.fromJson"]},{"name":"fun fromJson(paymentMethod: JSONObject?): PaymentMethod?","description":"com.stripe.android.model.PaymentMethod.Companion.fromJson","location":"payments-core/com.stripe.android.model/-payment-method/-companion/from-json.html","searchKeys":["fromJson","fun fromJson(paymentMethod: JSONObject?): PaymentMethod?","com.stripe.android.model.PaymentMethod.Companion.fromJson"]},{"name":"fun fun interface AfterTextChangedListener","description":"com.stripe.android.view.StripeEditText.AfterTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-after-text-changed-listener/index.html","searchKeys":["AfterTextChangedListener","fun fun interface AfterTextChangedListener","com.stripe.android.view.StripeEditText.AfterTextChangedListener"]},{"name":"fun fun interface AlipayAuthenticator","description":"com.stripe.android.AlipayAuthenticator","location":"payments-core/com.stripe.android/-alipay-authenticator/index.html","searchKeys":["AlipayAuthenticator","fun fun interface AlipayAuthenticator","com.stripe.android.AlipayAuthenticator"]},{"name":"fun fun interface AnalyticsRequestExecutor","description":"com.stripe.android.networking.AnalyticsRequestExecutor","location":"payments-core/com.stripe.android.networking/-analytics-request-executor/index.html","searchKeys":["AnalyticsRequestExecutor","fun fun interface AnalyticsRequestExecutor","com.stripe.android.networking.AnalyticsRequestExecutor"]},{"name":"fun fun interface AuthActivityStarter","description":"com.stripe.android.view.AuthActivityStarter","location":"payments-core/com.stripe.android.view/-auth-activity-starter/index.html","searchKeys":["AuthActivityStarter","fun fun interface AuthActivityStarter","com.stripe.android.view.AuthActivityStarter"]},{"name":"fun fun interface CardValidCallback","description":"com.stripe.android.view.CardValidCallback","location":"payments-core/com.stripe.android.view/-card-valid-callback/index.html","searchKeys":["CardValidCallback","fun fun interface CardValidCallback","com.stripe.android.view.CardValidCallback"]},{"name":"fun fun interface ConfigCallback","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-config-callback/index.html","searchKeys":["ConfigCallback","fun fun interface ConfigCallback","com.stripe.android.paymentsheet.PaymentSheet.FlowController.ConfigCallback"]},{"name":"fun fun interface DeleteEmptyListener","description":"com.stripe.android.view.StripeEditText.DeleteEmptyListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-delete-empty-listener/index.html","searchKeys":["DeleteEmptyListener","fun fun interface DeleteEmptyListener","com.stripe.android.view.StripeEditText.DeleteEmptyListener"]},{"name":"fun fun interface EphemeralKeyProvider","description":"com.stripe.android.EphemeralKeyProvider","location":"payments-core/com.stripe.android/-ephemeral-key-provider/index.html","searchKeys":["EphemeralKeyProvider","fun fun interface EphemeralKeyProvider","com.stripe.android.EphemeralKeyProvider"]},{"name":"fun fun interface ErrorMessageListener","description":"com.stripe.android.view.StripeEditText.ErrorMessageListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/-error-message-listener/index.html","searchKeys":["ErrorMessageListener","fun fun interface ErrorMessageListener","com.stripe.android.view.StripeEditText.ErrorMessageListener"]},{"name":"fun fun interface GooglePayRepository","description":"com.stripe.android.googlepaylauncher.GooglePayRepository","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/index.html","searchKeys":["GooglePayRepository","fun fun interface GooglePayRepository","com.stripe.android.googlepaylauncher.GooglePayRepository"]},{"name":"fun fun interface PaymentOptionCallback","description":"com.stripe.android.paymentsheet.PaymentOptionCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-option-callback/index.html","searchKeys":["PaymentOptionCallback","fun fun interface PaymentOptionCallback","com.stripe.android.paymentsheet.PaymentOptionCallback"]},{"name":"fun fun interface PaymentSheetResultCallback","description":"com.stripe.android.paymentsheet.PaymentSheetResultCallback","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result-callback/index.html","searchKeys":["PaymentSheetResultCallback","fun fun interface PaymentSheetResultCallback","com.stripe.android.paymentsheet.PaymentSheetResultCallback"]},{"name":"fun fun interface ReadyCallback","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-ready-callback/index.html","searchKeys":["ReadyCallback","fun fun interface ReadyCallback","com.stripe.android.googlepaylauncher.GooglePayLauncher.ReadyCallback"]},{"name":"fun fun interface ReadyCallback","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-ready-callback/index.html","searchKeys":["ReadyCallback","fun fun interface ReadyCallback","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ReadyCallback"]},{"name":"fun fun interface ResultCallback","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result-callback/index.html","searchKeys":["ResultCallback","fun fun interface ResultCallback","com.stripe.android.googlepaylauncher.GooglePayLauncher.ResultCallback"]},{"name":"fun fun interface ResultCallback","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result-callback/index.html","searchKeys":["ResultCallback","fun fun interface ResultCallback","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.ResultCallback"]},{"name":"fun get(): PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig.Companion.get","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/get.html","searchKeys":["get","fun get(): PaymentAuthConfig","com.stripe.android.PaymentAuthConfig.Companion.get"]},{"name":"fun getErrorMessageTranslator(): ErrorMessageTranslator","description":"com.stripe.android.view.i18n.TranslatorManager.getErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/get-error-message-translator.html","searchKeys":["getErrorMessageTranslator","fun getErrorMessageTranslator(): ErrorMessageTranslator","com.stripe.android.view.i18n.TranslatorManager.getErrorMessageTranslator"]},{"name":"fun getInstance(): CustomerSession","description":"com.stripe.android.CustomerSession.Companion.getInstance","location":"payments-core/com.stripe.android/-customer-session/-companion/get-instance.html","searchKeys":["getInstance","fun getInstance(): CustomerSession","com.stripe.android.CustomerSession.Companion.getInstance"]},{"name":"fun getInstance(context: Context): PaymentConfiguration","description":"com.stripe.android.PaymentConfiguration.Companion.getInstance","location":"payments-core/com.stripe.android/-payment-configuration/-companion/get-instance.html","searchKeys":["getInstance","fun getInstance(context: Context): PaymentConfiguration","com.stripe.android.PaymentConfiguration.Companion.getInstance"]},{"name":"fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, limit: Int?, endingBefore: String? = null, startingAfter: String? = null, listener: CustomerSession.PaymentMethodsRetrievalListener)","description":"com.stripe.android.CustomerSession.getPaymentMethods","location":"payments-core/com.stripe.android/-customer-session/get-payment-methods.html","searchKeys":["getPaymentMethods","fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, limit: Int?, endingBefore: String? = null, startingAfter: String? = null, listener: CustomerSession.PaymentMethodsRetrievalListener)","com.stripe.android.CustomerSession.getPaymentMethods"]},{"name":"fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, listener: CustomerSession.PaymentMethodsRetrievalListener)","description":"com.stripe.android.CustomerSession.getPaymentMethods","location":"payments-core/com.stripe.android/-customer-session/get-payment-methods.html","searchKeys":["getPaymentMethods","fun getPaymentMethods(paymentMethodType: PaymentMethod.Type, listener: CustomerSession.PaymentMethodsRetrievalListener)","com.stripe.android.CustomerSession.getPaymentMethods"]},{"name":"fun getPriceString(price: Int, currency: Currency): String","description":"com.stripe.android.PayWithGoogleUtils.getPriceString","location":"payments-core/com.stripe.android/-pay-with-google-utils/get-price-string.html","searchKeys":["getPriceString","fun getPriceString(price: Int, currency: Currency): String","com.stripe.android.PayWithGoogleUtils.getPriceString"]},{"name":"fun getSourceById(sourceId: String): CustomerPaymentSource?","description":"com.stripe.android.model.Customer.getSourceById","location":"payments-core/com.stripe.android.model/-customer/get-source-by-id.html","searchKeys":["getSourceById","fun getSourceById(sourceId: String): CustomerPaymentSource?","com.stripe.android.model.Customer.getSourceById"]},{"name":"fun handleNextActionForPayment(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForPayment","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-payment.html","searchKeys":["handleNextActionForPayment","fun handleNextActionForPayment(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForPayment"]},{"name":"fun handleNextActionForPayment(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForPayment","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-payment.html","searchKeys":["handleNextActionForPayment","fun handleNextActionForPayment(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForPayment"]},{"name":"fun handleNextActionForSetupIntent(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForSetupIntent","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-setup-intent.html","searchKeys":["handleNextActionForSetupIntent","fun handleNextActionForSetupIntent(activity: ComponentActivity, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForSetupIntent"]},{"name":"fun handleNextActionForSetupIntent(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","description":"com.stripe.android.Stripe.handleNextActionForSetupIntent","location":"payments-core/com.stripe.android/-stripe/handle-next-action-for-setup-intent.html","searchKeys":["handleNextActionForSetupIntent","fun handleNextActionForSetupIntent(fragment: Fragment, clientSecret: String, stripeAccountId: String? = this.stripeAccountId)","com.stripe.android.Stripe.handleNextActionForSetupIntent"]},{"name":"fun handlePaymentData(requestCode: Int, resultCode: Int, data: Intent?): Boolean","description":"com.stripe.android.PaymentSession.handlePaymentData","location":"payments-core/com.stripe.android/-payment-session/handle-payment-data.html","searchKeys":["handlePaymentData","fun handlePaymentData(requestCode: Int, resultCode: Int, data: Intent?): Boolean","com.stripe.android.PaymentSession.handlePaymentData"]},{"name":"fun init(config: PaymentAuthConfig)","description":"com.stripe.android.PaymentAuthConfig.Companion.init","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/init.html","searchKeys":["init","fun init(config: PaymentAuthConfig)","com.stripe.android.PaymentAuthConfig.Companion.init"]},{"name":"fun init(context: Context, publishableKey: String, stripeAccountId: String? = null)","description":"com.stripe.android.PaymentConfiguration.Companion.init","location":"payments-core/com.stripe.android/-payment-configuration/-companion/init.html","searchKeys":["init","fun init(context: Context, publishableKey: String, stripeAccountId: String? = null)","com.stripe.android.PaymentConfiguration.Companion.init"]},{"name":"fun init(listener: PaymentSession.PaymentSessionListener)","description":"com.stripe.android.PaymentSession.init","location":"payments-core/com.stripe.android/-payment-session/init.html","searchKeys":["init","fun init(listener: PaymentSession.PaymentSessionListener)","com.stripe.android.PaymentSession.init"]},{"name":"fun initCustomerSession(context: Context, ephemeralKeyProvider: EphemeralKeyProvider, shouldPrefetchEphemeralKey: Boolean = true)","description":"com.stripe.android.CustomerSession.Companion.initCustomerSession","location":"payments-core/com.stripe.android/-customer-session/-companion/init-customer-session.html","searchKeys":["initCustomerSession","fun initCustomerSession(context: Context, ephemeralKeyProvider: EphemeralKeyProvider, shouldPrefetchEphemeralKey: Boolean = true)","com.stripe.android.CustomerSession.Companion.initCustomerSession"]},{"name":"fun isAuthenticateSourceResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isAuthenticateSourceResult","location":"payments-core/com.stripe.android/-stripe/is-authenticate-source-result.html","searchKeys":["isAuthenticateSourceResult","fun isAuthenticateSourceResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isAuthenticateSourceResult"]},{"name":"fun isMaxCvc(cvcText: String?): Boolean","description":"com.stripe.android.model.CardBrand.isMaxCvc","location":"payments-core/com.stripe.android.model/-card-brand/is-max-cvc.html","searchKeys":["isMaxCvc","fun isMaxCvc(cvcText: String?): Boolean","com.stripe.android.model.CardBrand.isMaxCvc"]},{"name":"fun isPaymentResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isPaymentResult","location":"payments-core/com.stripe.android/-stripe/is-payment-result.html","searchKeys":["isPaymentResult","fun isPaymentResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isPaymentResult"]},{"name":"fun isSetupResult(requestCode: Int, data: Intent?): Boolean","description":"com.stripe.android.Stripe.isSetupResult","location":"payments-core/com.stripe.android/-stripe/is-setup-result.html","searchKeys":["isSetupResult","fun isSetupResult(requestCode: Int, data: Intent?): Boolean","com.stripe.android.Stripe.isSetupResult"]},{"name":"fun isValidCardNumberLength(cardNumber: String?): Boolean","description":"com.stripe.android.model.CardBrand.isValidCardNumberLength","location":"payments-core/com.stripe.android.model/-card-brand/is-valid-card-number-length.html","searchKeys":["isValidCardNumberLength","fun isValidCardNumberLength(cardNumber: String?): Boolean","com.stripe.android.model.CardBrand.isValidCardNumberLength"]},{"name":"fun isValidCvc(cvc: String): Boolean","description":"com.stripe.android.model.CardBrand.isValidCvc","location":"payments-core/com.stripe.android.model/-card-brand/is-valid-cvc.html","searchKeys":["isValidCvc","fun isValidCvc(cvc: String): Boolean","com.stripe.android.model.CardBrand.isValidCvc"]},{"name":"fun onAuthenticateSourceResult(data: Intent, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.onAuthenticateSourceResult","location":"payments-core/com.stripe.android/-stripe/on-authenticate-source-result.html","searchKeys":["onAuthenticateSourceResult","fun onAuthenticateSourceResult(data: Intent, callback: ApiResultCallback)","com.stripe.android.Stripe.onAuthenticateSourceResult"]},{"name":"fun onCompleted()","description":"com.stripe.android.PaymentSession.onCompleted","location":"payments-core/com.stripe.android/-payment-session/on-completed.html","searchKeys":["onCompleted","fun onCompleted()","com.stripe.android.PaymentSession.onCompleted"]},{"name":"fun onPaymentResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","description":"com.stripe.android.Stripe.onPaymentResult","location":"payments-core/com.stripe.android/-stripe/on-payment-result.html","searchKeys":["onPaymentResult","fun onPaymentResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","com.stripe.android.Stripe.onPaymentResult"]},{"name":"fun onSetupResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","description":"com.stripe.android.Stripe.onSetupResult","location":"payments-core/com.stripe.android/-stripe/on-setup-result.html","searchKeys":["onSetupResult","fun onSetupResult(requestCode: Int, data: Intent?, callback: ApiResultCallback): Boolean","com.stripe.android.Stripe.onSetupResult"]},{"name":"fun populateShippingInfo(shippingInformation: ShippingInformation?)","description":"com.stripe.android.view.ShippingInfoWidget.populateShippingInfo","location":"payments-core/com.stripe.android.view/-shipping-info-widget/populate-shipping-info.html","searchKeys":["populateShippingInfo","fun populateShippingInfo(shippingInformation: ShippingInformation?)","com.stripe.android.view.ShippingInfoWidget.populateShippingInfo"]},{"name":"fun present(currencyCode: String, amount: Int = 0, transactionId: String? = null)","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/present.html","searchKeys":["present","fun present(currencyCode: String, amount: Int = 0, transactionId: String? = null)","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.present"]},{"name":"fun presentForPaymentIntent(clientSecret: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForPaymentIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/present-for-payment-intent.html","searchKeys":["presentForPaymentIntent","fun presentForPaymentIntent(clientSecret: String)","com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForPaymentIntent"]},{"name":"fun presentForSetupIntent(clientSecret: String, currencyCode: String)","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForSetupIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/present-for-setup-intent.html","searchKeys":["presentForSetupIntent","fun presentForSetupIntent(clientSecret: String, currencyCode: String)","com.stripe.android.googlepaylauncher.GooglePayLauncher.presentForSetupIntent"]},{"name":"fun presentPaymentMethodSelection(selectedPaymentMethodId: String? = null)","description":"com.stripe.android.PaymentSession.presentPaymentMethodSelection","location":"payments-core/com.stripe.android/-payment-session/present-payment-method-selection.html","searchKeys":["presentPaymentMethodSelection","fun presentPaymentMethodSelection(selectedPaymentMethodId: String? = null)","com.stripe.android.PaymentSession.presentPaymentMethodSelection"]},{"name":"fun presentShippingFlow()","description":"com.stripe.android.PaymentSession.presentShippingFlow","location":"payments-core/com.stripe.android/-payment-session/present-shipping-flow.html","searchKeys":["presentShippingFlow","fun presentShippingFlow()","com.stripe.android.PaymentSession.presentShippingFlow"]},{"name":"fun presentWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.presentWithPaymentIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/present-with-payment-intent.html","searchKeys":["presentWithPaymentIntent","fun presentWithPaymentIntent(paymentIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","com.stripe.android.paymentsheet.PaymentSheet.presentWithPaymentIntent"]},{"name":"fun presentWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","description":"com.stripe.android.paymentsheet.PaymentSheet.presentWithSetupIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/present-with-setup-intent.html","searchKeys":["presentWithSetupIntent","fun presentWithSetupIntent(setupIntentClientSecret: String, configuration: PaymentSheet.Configuration? = null)","com.stripe.android.paymentsheet.PaymentSheet.presentWithSetupIntent"]},{"name":"fun provideGooglePayRepositoryFactory(appContext: Context): (GooglePayEnvironment) -> GooglePayRepository","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherModule.provideGooglePayRepositoryFactory","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-module/provide-google-pay-repository-factory.html","searchKeys":["provideGooglePayRepositoryFactory","fun provideGooglePayRepositoryFactory(appContext: Context): (GooglePayEnvironment) -> GooglePayRepository","com.stripe.android.googlepaylauncher.GooglePayLauncherModule.provideGooglePayRepositoryFactory"]},{"name":"fun retrieveCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.retrieveCurrentCustomer","location":"payments-core/com.stripe.android/-customer-session/retrieve-current-customer.html","searchKeys":["retrieveCurrentCustomer","fun retrieveCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.retrieveCurrentCustomer"]},{"name":"fun retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrievePaymentIntent","location":"payments-core/com.stripe.android/-stripe/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent","fun retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrievePaymentIntent"]},{"name":"fun retrievePaymentIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent?","description":"com.stripe.android.Stripe.retrievePaymentIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-payment-intent-synchronous.html","searchKeys":["retrievePaymentIntentSynchronous","fun retrievePaymentIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent?","com.stripe.android.Stripe.retrievePaymentIntentSynchronous"]},{"name":"fun retrievePin(cardId: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinRetrievalListener)","description":"com.stripe.android.IssuingCardPinService.retrievePin","location":"payments-core/com.stripe.android/-issuing-card-pin-service/retrieve-pin.html","searchKeys":["retrievePin","fun retrievePin(cardId: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinRetrievalListener)","com.stripe.android.IssuingCardPinService.retrievePin"]},{"name":"fun retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrieveSetupIntent","location":"payments-core/com.stripe.android/-stripe/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent","fun retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrieveSetupIntent"]},{"name":"fun retrieveSetupIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent?","description":"com.stripe.android.Stripe.retrieveSetupIntentSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-setup-intent-synchronous.html","searchKeys":["retrieveSetupIntentSynchronous","fun retrieveSetupIntentSynchronous(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent?","com.stripe.android.Stripe.retrieveSetupIntentSynchronous"]},{"name":"fun retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","description":"com.stripe.android.Stripe.retrieveSource","location":"payments-core/com.stripe.android/-stripe/retrieve-source.html","searchKeys":["retrieveSource","fun retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId, callback: ApiResultCallback)","com.stripe.android.Stripe.retrieveSource"]},{"name":"fun retrieveSourceSynchronous(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source?","description":"com.stripe.android.Stripe.retrieveSourceSynchronous","location":"payments-core/com.stripe.android/-stripe/retrieve-source-synchronous.html","searchKeys":["retrieveSourceSynchronous","fun retrieveSourceSynchronous(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source?","com.stripe.android.Stripe.retrieveSourceSynchronous"]},{"name":"fun set3ds2Config(stripe3ds2Config: PaymentAuthConfig.Stripe3ds2Config): PaymentAuthConfig.Builder","description":"com.stripe.android.PaymentAuthConfig.Builder.set3ds2Config","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/set3ds2-config.html","searchKeys":["set3ds2Config","fun set3ds2Config(stripe3ds2Config: PaymentAuthConfig.Stripe3ds2Config): PaymentAuthConfig.Builder","com.stripe.android.PaymentAuthConfig.Builder.set3ds2Config"]},{"name":"fun setAccentColor(hexColor: String): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setAccentColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-accent-color.html","searchKeys":["setAccentColor","fun setAccentColor(hexColor: String): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setAccentColor"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setAddPaymentMethodFooter","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-add-payment-method-footer.html","searchKeys":["setAddPaymentMethodFooter","fun setAddPaymentMethodFooter(addPaymentMethodFooterLayoutId: Int): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setAddPaymentMethodFooter"]},{"name":"fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddress","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddress","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setAddress","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setAddress"]},{"name":"fun setAddress(address: Address?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddress","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address.html","searchKeys":["setAddress","fun setAddress(address: Address?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddress"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKana"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKana"]},{"name":"fun setAddressKana(addressKana: AddressJapanParams?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddressKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address-kana.html","searchKeys":["setAddressKana","fun setAddressKana(addressKana: AddressJapanParams?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddressKana"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setAddressKanji"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setAddressKanji"]},{"name":"fun setAddressKanji(addressKanji: AddressJapanParams?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setAddressKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-address-kanji.html","searchKeys":["setAddressKanji","fun setAddressKanji(addressKanji: AddressJapanParams?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setAddressKanji"]},{"name":"fun setAfterTextChangedListener(afterTextChangedListener: StripeEditText.AfterTextChangedListener?)","description":"com.stripe.android.view.StripeEditText.setAfterTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-after-text-changed-listener.html","searchKeys":["setAfterTextChangedListener","fun setAfterTextChangedListener(afterTextChangedListener: StripeEditText.AfterTextChangedListener?)","com.stripe.android.view.StripeEditText.setAfterTextChangedListener"]},{"name":"fun setAllowedCountryCodes(allowedCountryCodes: Set)","description":"com.stripe.android.view.ShippingInfoWidget.setAllowedCountryCodes","location":"payments-core/com.stripe.android.view/-shipping-info-widget/set-allowed-country-codes.html","searchKeys":["setAllowedCountryCodes","fun setAllowedCountryCodes(allowedCountryCodes: Set)","com.stripe.android.view.ShippingInfoWidget.setAllowedCountryCodes"]},{"name":"fun setAllowedShippingCountryCodes(allowedShippingCountryCodes: Set): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setAllowedShippingCountryCodes","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-allowed-shipping-country-codes.html","searchKeys":["setAllowedShippingCountryCodes","fun setAllowedShippingCountryCodes(allowedShippingCountryCodes: Set): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setAllowedShippingCountryCodes"]},{"name":"fun setApiParameterMap(apiParameterMap: Map?): SourceParams","description":"com.stripe.android.model.SourceParams.setApiParameterMap","location":"payments-core/com.stripe.android.model/-source-params/set-api-parameter-map.html","searchKeys":["setApiParameterMap","fun setApiParameterMap(apiParameterMap: Map?): SourceParams","com.stripe.android.model.SourceParams.setApiParameterMap"]},{"name":"fun setAuBecsDebit(auBecsDebit: PaymentMethod.AuBecsDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setAuBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-au-becs-debit.html","searchKeys":["setAuBecsDebit","fun setAuBecsDebit(auBecsDebit: PaymentMethod.AuBecsDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setAuBecsDebit"]},{"name":"fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setBackgroundColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-background-color.html","searchKeys":["setBackgroundColor","fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setBackgroundColor"]},{"name":"fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setBackgroundColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-background-color.html","searchKeys":["setBackgroundColor","fun setBackgroundColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setBackgroundColor"]},{"name":"fun setBacsDebit(bacsDebit: PaymentMethod.BacsDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setBacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-bacs-debit.html","searchKeys":["setBacsDebit","fun setBacsDebit(bacsDebit: PaymentMethod.BacsDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setBacsDebit"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setBillingAddressFields"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setBillingAddressFields"]},{"name":"fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setBillingAddressFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-billing-address-fields.html","searchKeys":["setBillingAddressFields","fun setBillingAddressFields(billingAddressFields: BillingAddressFields): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setBillingAddressFields"]},{"name":"fun setBillingDetails(billingDetails: PaymentMethod.BillingDetails?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setBillingDetails","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-billing-details.html","searchKeys":["setBillingDetails","fun setBillingDetails(billingDetails: PaymentMethod.BillingDetails?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setBillingDetails"]},{"name":"fun setBorderColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-border-color.html","searchKeys":["setBorderColor","fun setBorderColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderColor"]},{"name":"fun setBorderWidth(borderWidth: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderWidth","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-border-width.html","searchKeys":["setBorderWidth","fun setBorderWidth(borderWidth: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setBorderWidth"]},{"name":"fun setButtonCustomization(buttonCustomization: PaymentAuthConfig.Stripe3ds2ButtonCustomization, buttonType: PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setButtonCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-button-customization.html","searchKeys":["setButtonCustomization","fun setButtonCustomization(buttonCustomization: PaymentAuthConfig.Stripe3ds2ButtonCustomization, buttonType: PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setButtonCustomization"]},{"name":"fun setButtonText(buttonText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setButtonText","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-button-text.html","searchKeys":["setButtonText","fun setButtonText(buttonText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setButtonText"]},{"name":"fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setCanDeletePaymentMethods","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-can-delete-payment-methods.html","searchKeys":["setCanDeletePaymentMethods","fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setCanDeletePaymentMethods"]},{"name":"fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setCanDeletePaymentMethods","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-can-delete-payment-methods.html","searchKeys":["setCanDeletePaymentMethods","fun setCanDeletePaymentMethods(canDeletePaymentMethods: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setCanDeletePaymentMethods"]},{"name":"fun setCard(card: PaymentMethod.Card?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCard","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-card.html","searchKeys":["setCard","fun setCard(card: PaymentMethod.Card?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCard"]},{"name":"fun setCardPresent(cardPresent: PaymentMethod.CardPresent?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCardPresent","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-card-present.html","searchKeys":["setCardPresent","fun setCardPresent(cardPresent: PaymentMethod.CardPresent?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCardPresent"]},{"name":"fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardFormView.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-form-view/set-card-valid-callback.html","searchKeys":["setCardValidCallback","fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardFormView.setCardValidCallback"]},{"name":"fun setCartTotal(cartTotal: Long)","description":"com.stripe.android.PaymentSession.setCartTotal","location":"payments-core/com.stripe.android/-payment-session/set-cart-total.html","searchKeys":["setCartTotal","fun setCartTotal(cartTotal: Long)","com.stripe.android.PaymentSession.setCartTotal"]},{"name":"fun setCity(city: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setCity","location":"payments-core/com.stripe.android.model/-address/-builder/set-city.html","searchKeys":["setCity","fun setCity(city: String?): Address.Builder","com.stripe.android.model.Address.Builder.setCity"]},{"name":"fun setCity(city: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setCity","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-city.html","searchKeys":["setCity","fun setCity(city: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setCity"]},{"name":"fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setCornerRadius","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-corner-radius.html","searchKeys":["setCornerRadius","fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setCornerRadius"]},{"name":"fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setCornerRadius","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-corner-radius.html","searchKeys":["setCornerRadius","fun setCornerRadius(cornerRadius: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setCornerRadius"]},{"name":"fun setCountry(country: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setCountry","location":"payments-core/com.stripe.android.model/-address/-builder/set-country.html","searchKeys":["setCountry","fun setCountry(country: String?): Address.Builder","com.stripe.android.model.Address.Builder.setCountry"]},{"name":"fun setCountry(country: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setCountry","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-country.html","searchKeys":["setCountry","fun setCountry(country: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setCountry"]},{"name":"fun setCreated(created: Long?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCreated","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-created.html","searchKeys":["setCreated","fun setCreated(created: Long?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCreated"]},{"name":"fun setCustomerDefaultSource(sourceId: String, sourceType: String, listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.setCustomerDefaultSource","location":"payments-core/com.stripe.android/-customer-session/set-customer-default-source.html","searchKeys":["setCustomerDefaultSource","fun setCustomerDefaultSource(sourceId: String, sourceType: String, listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.setCustomerDefaultSource"]},{"name":"fun setCustomerId(customerId: String?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setCustomerId","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-customer-id.html","searchKeys":["setCustomerId","fun setCustomerId(customerId: String?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setCustomerId"]},{"name":"fun setCustomerShippingInformation(shippingInformation: ShippingInformation, listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.setCustomerShippingInformation","location":"payments-core/com.stripe.android/-customer-session/set-customer-shipping-information.html","searchKeys":["setCustomerShippingInformation","fun setCustomerShippingInformation(shippingInformation: ShippingInformation, listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.setCustomerShippingInformation"]},{"name":"fun setCvc(cvc: String?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setCvc","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-cvc.html","searchKeys":["setCvc","fun setCvc(cvc: String?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setCvc"]},{"name":"fun setCvcLabel(cvcLabel: String?)","description":"com.stripe.android.view.CardInputWidget.setCvcLabel","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-label.html","searchKeys":["setCvcLabel","fun setCvcLabel(cvcLabel: String?)","com.stripe.android.view.CardInputWidget.setCvcLabel"]},{"name":"fun setCvcLabel(cvcLabel: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcLabel","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-label.html","searchKeys":["setCvcLabel","fun setCvcLabel(cvcLabel: String?)","com.stripe.android.view.CardMultilineWidget.setCvcLabel"]},{"name":"fun setDateOfBirth(dateOfBirth: DateOfBirth?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setDateOfBirth","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-date-of-birth.html","searchKeys":["setDateOfBirth","fun setDateOfBirth(dateOfBirth: DateOfBirth?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setDateOfBirth"]},{"name":"fun setDateOfBirth(dateOfBirth: DateOfBirth?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setDateOfBirth","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-date-of-birth.html","searchKeys":["setDateOfBirth","fun setDateOfBirth(dateOfBirth: DateOfBirth?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setDateOfBirth"]},{"name":"fun setDeleteEmptyListener(deleteEmptyListener: StripeEditText.DeleteEmptyListener?)","description":"com.stripe.android.view.StripeEditText.setDeleteEmptyListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-delete-empty-listener.html","searchKeys":["setDeleteEmptyListener","fun setDeleteEmptyListener(deleteEmptyListener: StripeEditText.DeleteEmptyListener?)","com.stripe.android.view.StripeEditText.setDeleteEmptyListener"]},{"name":"fun setDirector(director: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setDirector","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-director.html","searchKeys":["setDirector","fun setDirector(director: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setDirector"]},{"name":"fun setDirectorsProvided(directorsProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setDirectorsProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-directors-provided.html","searchKeys":["setDirectorsProvided","fun setDirectorsProvided(directorsProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setDirectorsProvided"]},{"name":"fun setEmail(email: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setEmail","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setEmail"]},{"name":"fun setEmail(email: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setEmail","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setEmail"]},{"name":"fun setEmail(email: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setEmail","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-email.html","searchKeys":["setEmail","fun setEmail(email: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setEmail"]},{"name":"fun setErrorColor(errorColor: Int)","description":"com.stripe.android.view.StripeEditText.setErrorColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-color.html","searchKeys":["setErrorColor","fun setErrorColor(errorColor: Int)","com.stripe.android.view.StripeEditText.setErrorColor"]},{"name":"fun setErrorMessage(errorMessage: String?)","description":"com.stripe.android.view.StripeEditText.setErrorMessage","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-message.html","searchKeys":["setErrorMessage","fun setErrorMessage(errorMessage: String?)","com.stripe.android.view.StripeEditText.setErrorMessage"]},{"name":"fun setErrorMessageListener(errorMessageListener: StripeEditText.ErrorMessageListener?)","description":"com.stripe.android.view.StripeEditText.setErrorMessageListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-error-message-listener.html","searchKeys":["setErrorMessageListener","fun setErrorMessageListener(errorMessageListener: StripeEditText.ErrorMessageListener?)","com.stripe.android.view.StripeEditText.setErrorMessageListener"]},{"name":"fun setErrorMessageTranslator(errorMessageTranslator: ErrorMessageTranslator?)","description":"com.stripe.android.view.i18n.TranslatorManager.setErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/set-error-message-translator.html","searchKeys":["setErrorMessageTranslator","fun setErrorMessageTranslator(errorMessageTranslator: ErrorMessageTranslator?)","com.stripe.android.view.i18n.TranslatorManager.setErrorMessageTranslator"]},{"name":"fun setExecutive(executive: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setExecutive","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-executive.html","searchKeys":["setExecutive","fun setExecutive(executive: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setExecutive"]},{"name":"fun setExecutivesProvided(executivesProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setExecutivesProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-executives-provided.html","searchKeys":["setExecutivesProvided","fun setExecutivesProvided(executivesProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setExecutivesProvided"]},{"name":"fun setExpiryMonth(expiryMonth: Int?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryMonth","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-expiry-month.html","searchKeys":["setExpiryMonth","fun setExpiryMonth(expiryMonth: Int?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryMonth"]},{"name":"fun setExpiryYear(expiryYear: Int?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryYear","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-expiry-year.html","searchKeys":["setExpiryYear","fun setExpiryYear(expiryYear: Int?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setExpiryYear"]},{"name":"fun setFirstName(firstName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name.html","searchKeys":["setFirstName","fun setFirstName(firstName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstName"]},{"name":"fun setFirstName(firstName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name.html","searchKeys":["setFirstName","fun setFirstName(firstName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstName"]},{"name":"fun setFirstNameKana(firstNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name-kana.html","searchKeys":["setFirstNameKana","fun setFirstNameKana(firstNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKana"]},{"name":"fun setFirstNameKana(firstNameKana: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name-kana.html","searchKeys":["setFirstNameKana","fun setFirstNameKana(firstNameKana: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKana"]},{"name":"fun setFirstNameKanji(firstNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-first-name-kanji.html","searchKeys":["setFirstNameKanji","fun setFirstNameKanji(firstNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setFirstNameKanji"]},{"name":"fun setFirstNameKanji(firstNameKanji: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-first-name-kanji.html","searchKeys":["setFirstNameKanji","fun setFirstNameKanji(firstNameKanji: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setFirstNameKanji"]},{"name":"fun setFpx(fpx: PaymentMethod.Fpx?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setFpx","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-fpx.html","searchKeys":["setFpx","fun setFpx(fpx: PaymentMethod.Fpx?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setFpx"]},{"name":"fun setGender(gender: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setGender","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-gender.html","searchKeys":["setGender","fun setGender(gender: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setGender"]},{"name":"fun setGender(gender: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setGender","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-gender.html","searchKeys":["setGender","fun setGender(gender: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setGender"]},{"name":"fun setHeaderText(headerText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setHeaderText","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-header-text.html","searchKeys":["setHeaderText","fun setHeaderText(headerText: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setHeaderText"]},{"name":"fun setHeadingTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-color.html","searchKeys":["setHeadingTextColor","fun setHeadingTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextColor"]},{"name":"fun setHeadingTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-font-name.html","searchKeys":["setHeadingTextFontName","fun setHeadingTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontName"]},{"name":"fun setHeadingTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-heading-text-font-size.html","searchKeys":["setHeadingTextFontSize","fun setHeadingTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setHeadingTextFontSize"]},{"name":"fun setHiddenShippingInfoFields(vararg hiddenShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setHiddenShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-hidden-shipping-info-fields.html","searchKeys":["setHiddenShippingInfoFields","fun setHiddenShippingInfoFields(vararg hiddenShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setHiddenShippingInfoFields"]},{"name":"fun setId(id: String?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setId","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-id.html","searchKeys":["setId","fun setId(id: String?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setId"]},{"name":"fun setIdNumber(idNumber: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setIdNumber","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-id-number.html","searchKeys":["setIdNumber","fun setIdNumber(idNumber: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setIdNumber"]},{"name":"fun setIdNumber(idNumber: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setIdNumber","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-id-number.html","searchKeys":["setIdNumber","fun setIdNumber(idNumber: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setIdNumber"]},{"name":"fun setIdeal(ideal: PaymentMethod.Ideal?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setIdeal","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-ideal.html","searchKeys":["setIdeal","fun setIdeal(ideal: PaymentMethod.Ideal?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setIdeal"]},{"name":"fun setInitialPaymentMethodId(initialPaymentMethodId: String?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setInitialPaymentMethodId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-initial-payment-method-id.html","searchKeys":["setInitialPaymentMethodId","fun setInitialPaymentMethodId(initialPaymentMethodId: String?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setInitialPaymentMethodId"]},{"name":"fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setIsPaymentSessionActive","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-is-payment-session-active.html","searchKeys":["setIsPaymentSessionActive","fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setIsPaymentSessionActive"]},{"name":"fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setIsPaymentSessionActive","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-is-payment-session-active.html","searchKeys":["setIsPaymentSessionActive","fun setIsPaymentSessionActive(isPaymentSessionActive: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setIsPaymentSessionActive"]},{"name":"fun setLabelCustomization(labelCustomization: PaymentAuthConfig.Stripe3ds2LabelCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setLabelCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-label-customization.html","searchKeys":["setLabelCustomization","fun setLabelCustomization(labelCustomization: PaymentAuthConfig.Stripe3ds2LabelCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setLabelCustomization"]},{"name":"fun setLastName(lastName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name.html","searchKeys":["setLastName","fun setLastName(lastName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastName"]},{"name":"fun setLastName(lastName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name.html","searchKeys":["setLastName","fun setLastName(lastName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastName"]},{"name":"fun setLastNameKana(lastNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name-kana.html","searchKeys":["setLastNameKana","fun setLastNameKana(lastNameKana: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKana"]},{"name":"fun setLastNameKana(lastNameKana: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name-kana.html","searchKeys":["setLastNameKana","fun setLastNameKana(lastNameKana: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastNameKana"]},{"name":"fun setLastNameKanji(lastNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-last-name-kanji.html","searchKeys":["setLastNameKanji","fun setLastNameKanji(lastNameKanji: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setLastNameKanji"]},{"name":"fun setLastNameKanji(lastNameKanji: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setLastNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-last-name-kanji.html","searchKeys":["setLastNameKanji","fun setLastNameKanji(lastNameKanji: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setLastNameKanji"]},{"name":"fun setLine1(line1: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setLine1","location":"payments-core/com.stripe.android.model/-address/-builder/set-line1.html","searchKeys":["setLine1","fun setLine1(line1: String?): Address.Builder","com.stripe.android.model.Address.Builder.setLine1"]},{"name":"fun setLine1(line1: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setLine1","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-line1.html","searchKeys":["setLine1","fun setLine1(line1: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setLine1"]},{"name":"fun setLine2(line2: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setLine2","location":"payments-core/com.stripe.android.model/-address/-builder/set-line2.html","searchKeys":["setLine2","fun setLine2(line2: String?): Address.Builder","com.stripe.android.model.Address.Builder.setLine2"]},{"name":"fun setLine2(line2: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setLine2","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-line2.html","searchKeys":["setLine2","fun setLine2(line2: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setLine2"]},{"name":"fun setLiveMode(liveMode: Boolean): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setLiveMode","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-live-mode.html","searchKeys":["setLiveMode","fun setLiveMode(liveMode: Boolean): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setLiveMode"]},{"name":"fun setMaidenName(maidenName: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMaidenName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-maiden-name.html","searchKeys":["setMaidenName","fun setMaidenName(maidenName: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMaidenName"]},{"name":"fun setMaidenName(maidenName: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setMaidenName","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-maiden-name.html","searchKeys":["setMaidenName","fun setMaidenName(maidenName: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setMaidenName"]},{"name":"fun setMetadata(metadata: Map?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setMetadata"]},{"name":"fun setMetadata(metadata: Map?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setMetadata"]},{"name":"fun setMetadata(metadata: Map?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setMetadata","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-metadata.html","searchKeys":["setMetadata","fun setMetadata(metadata: Map?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setMetadata"]},{"name":"fun setName(name: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name.html","searchKeys":["setName","fun setName(name: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setName"]},{"name":"fun setName(name: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setName","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-name.html","searchKeys":["setName","fun setName(name: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setName"]},{"name":"fun setNameKana(nameKana: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name-kana.html","searchKeys":["setNameKana","fun setNameKana(nameKana: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKana"]},{"name":"fun setNameKanji(nameKanji: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-name-kanji.html","searchKeys":["setNameKanji","fun setNameKanji(nameKanji: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setNameKanji"]},{"name":"fun setNetbanking(netbanking: PaymentMethod.Netbanking?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setNetbanking","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-netbanking.html","searchKeys":["setNetbanking","fun setNetbanking(netbanking: PaymentMethod.Netbanking?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setNetbanking"]},{"name":"fun setNumber(number: String?): PaymentMethodCreateParams.Card.Builder","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/set-number.html","searchKeys":["setNumber","fun setNumber(number: String?): PaymentMethodCreateParams.Card.Builder","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.setNumber"]},{"name":"fun setOptionalShippingInfoFields(vararg optionalShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setOptionalShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-optional-shipping-info-fields.html","searchKeys":["setOptionalShippingInfoFields","fun setOptionalShippingInfoFields(vararg optionalShippingInfoFields: ShippingInfoWidget.CustomizableShippingField): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setOptionalShippingInfoFields"]},{"name":"fun setOwner(owner: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setOwner","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-owner.html","searchKeys":["setOwner","fun setOwner(owner: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setOwner"]},{"name":"fun setOwnersProvided(ownersProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setOwnersProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-owners-provided.html","searchKeys":["setOwnersProvided","fun setOwnersProvided(ownersProvided: Boolean?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setOwnersProvided"]},{"name":"fun setPaymentConfiguration(paymentConfiguration: PaymentConfiguration?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentConfiguration","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-configuration.html","searchKeys":["setPaymentConfiguration","fun setPaymentConfiguration(paymentConfiguration: PaymentConfiguration?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentConfiguration"]},{"name":"fun setPaymentMethodType(paymentMethodType: PaymentMethod.Type): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setPaymentMethodType","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-payment-method-type.html","searchKeys":["setPaymentMethodType","fun setPaymentMethodType(paymentMethodType: PaymentMethod.Type): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setPaymentMethodType"]},{"name":"fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodTypes","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-method-types.html","searchKeys":["setPaymentMethodTypes","fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodTypes"]},{"name":"fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodTypes","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-payment-method-types.html","searchKeys":["setPaymentMethodTypes","fun setPaymentMethodTypes(paymentMethodTypes: List): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodTypes"]},{"name":"fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodsFooter","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-payment-methods-footer.html","searchKeys":["setPaymentMethodsFooter","fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setPaymentMethodsFooter"]},{"name":"fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodsFooter","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-payment-methods-footer.html","searchKeys":["setPaymentMethodsFooter","fun setPaymentMethodsFooter(paymentMethodsFooterLayoutId: Int): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPaymentMethodsFooter"]},{"name":"fun setPaymentSessionConfig(paymentSessionConfig: PaymentSessionConfig?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionConfig","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-payment-session-config.html","searchKeys":["setPaymentSessionConfig","fun setPaymentSessionConfig(paymentSessionConfig: PaymentSessionConfig?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionConfig"]},{"name":"fun setPaymentSessionData(paymentSessionData: PaymentSessionData?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionData","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-payment-session-data.html","searchKeys":["setPaymentSessionData","fun setPaymentSessionData(paymentSessionData: PaymentSessionData?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setPaymentSessionData"]},{"name":"fun setPercentOwnership(percentOwnership: Int?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setPercentOwnership","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-percent-ownership.html","searchKeys":["setPercentOwnership","fun setPercentOwnership(percentOwnership: Int?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setPercentOwnership"]},{"name":"fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setPhone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setPhone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setPhone","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.setPhone"]},{"name":"fun setPhone(phone: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setPhone","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-phone.html","searchKeys":["setPhone","fun setPhone(phone: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setPhone"]},{"name":"fun setPostalCode(postalCode: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setPostalCode","location":"payments-core/com.stripe.android.model/-address/-builder/set-postal-code.html","searchKeys":["setPostalCode","fun setPostalCode(postalCode: String?): Address.Builder","com.stripe.android.model.Address.Builder.setPostalCode"]},{"name":"fun setPostalCode(postalCode: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setPostalCode","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-postal-code.html","searchKeys":["setPostalCode","fun setPostalCode(postalCode: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setPostalCode"]},{"name":"fun setPrepopulatedShippingInfo(shippingInfo: ShippingInformation?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setPrepopulatedShippingInfo","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-prepopulated-shipping-info.html","searchKeys":["setPrepopulatedShippingInfo","fun setPrepopulatedShippingInfo(shippingInfo: ShippingInformation?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setPrepopulatedShippingInfo"]},{"name":"fun setRelationship(relationship: PersonTokenParams.Relationship?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setRelationship","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-relationship.html","searchKeys":["setRelationship","fun setRelationship(relationship: PersonTokenParams.Relationship?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setRelationship"]},{"name":"fun setRepresentative(representative: Boolean?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setRepresentative","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-representative.html","searchKeys":["setRepresentative","fun setRepresentative(representative: Boolean?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setRepresentative"]},{"name":"fun setSepaDebit(sepaDebit: PaymentMethod.SepaDebit?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setSepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-sepa-debit.html","searchKeys":["setSepaDebit","fun setSepaDebit(sepaDebit: PaymentMethod.SepaDebit?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setSepaDebit"]},{"name":"fun setShippingInfoRequired(shippingInfoRequired: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingInfoRequired","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-info-required.html","searchKeys":["setShippingInfoRequired","fun setShippingInfoRequired(shippingInfoRequired: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingInfoRequired"]},{"name":"fun setShippingInformationValidator(shippingInformationValidator: PaymentSessionConfig.ShippingInformationValidator?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingInformationValidator","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-information-validator.html","searchKeys":["setShippingInformationValidator","fun setShippingInformationValidator(shippingInformationValidator: PaymentSessionConfig.ShippingInformationValidator?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingInformationValidator"]},{"name":"fun setShippingMethodsFactory(shippingMethodsFactory: PaymentSessionConfig.ShippingMethodsFactory?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsFactory","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-methods-factory.html","searchKeys":["setShippingMethodsFactory","fun setShippingMethodsFactory(shippingMethodsFactory: PaymentSessionConfig.ShippingMethodsFactory?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsFactory"]},{"name":"fun setShippingMethodsRequired(shippingMethodsRequired: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsRequired","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-shipping-methods-required.html","searchKeys":["setShippingMethodsRequired","fun setShippingMethodsRequired(shippingMethodsRequired: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShippingMethodsRequired"]},{"name":"fun setShouldAttachToCustomer(shouldAttachToCustomer: Boolean): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setShouldAttachToCustomer","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-should-attach-to-customer.html","searchKeys":["setShouldAttachToCustomer","fun setShouldAttachToCustomer(shouldAttachToCustomer: Boolean): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setShouldAttachToCustomer"]},{"name":"fun setShouldPrefetchCustomer(shouldPrefetchCustomer: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShouldPrefetchCustomer","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-should-prefetch-customer.html","searchKeys":["setShouldPrefetchCustomer","fun setShouldPrefetchCustomer(shouldPrefetchCustomer: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShouldPrefetchCustomer"]},{"name":"fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setShouldShowGooglePay","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-should-show-google-pay.html","searchKeys":["setShouldShowGooglePay","fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setShouldShowGooglePay"]},{"name":"fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setShouldShowGooglePay","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-should-show-google-pay.html","searchKeys":["setShouldShowGooglePay","fun setShouldShowGooglePay(shouldShowGooglePay: Boolean): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setShouldShowGooglePay"]},{"name":"fun setShouldShowPostalCode(shouldShowPostalCode: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.setShouldShowPostalCode","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-should-show-postal-code.html","searchKeys":["setShouldShowPostalCode","fun setShouldShowPostalCode(shouldShowPostalCode: Boolean)","com.stripe.android.view.CardMultilineWidget.setShouldShowPostalCode"]},{"name":"fun setSofort(sofort: PaymentMethod.Sofort?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setSofort","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-sofort.html","searchKeys":["setSofort","fun setSofort(sofort: PaymentMethod.Sofort?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setSofort"]},{"name":"fun setSsnLast4(ssnLast4: String?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setSsnLast4","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-ssn-last4.html","searchKeys":["setSsnLast4","fun setSsnLast4(ssnLast4: String?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setSsnLast4"]},{"name":"fun setSsnLast4(ssnLast4: String?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setSsnLast4","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-ssn-last4.html","searchKeys":["setSsnLast4","fun setSsnLast4(ssnLast4: String?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setSsnLast4"]},{"name":"fun setState(state: String?): Address.Builder","description":"com.stripe.android.model.Address.Builder.setState","location":"payments-core/com.stripe.android.model/-address/-builder/set-state.html","searchKeys":["setState","fun setState(state: String?): Address.Builder","com.stripe.android.model.Address.Builder.setState"]},{"name":"fun setState(state: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setState","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-state.html","searchKeys":["setState","fun setState(state: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setState"]},{"name":"fun setStatusBarColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setStatusBarColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-status-bar-color.html","searchKeys":["setStatusBarColor","fun setStatusBarColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setStatusBarColor"]},{"name":"fun setTaxId(taxId: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-tax-id.html","searchKeys":["setTaxId","fun setTaxId(taxId: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxId"]},{"name":"fun setTaxIdRegistrar(taxIdRegistrar: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxIdRegistrar","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-tax-id-registrar.html","searchKeys":["setTaxIdRegistrar","fun setTaxIdRegistrar(taxIdRegistrar: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setTaxIdRegistrar"]},{"name":"fun setTextBoxCustomization(textBoxCustomization: PaymentAuthConfig.Stripe3ds2TextBoxCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setTextBoxCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-text-box-customization.html","searchKeys":["setTextBoxCustomization","fun setTextBoxCustomization(textBoxCustomization: PaymentAuthConfig.Stripe3ds2TextBoxCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setTextBoxCustomization"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextColor"]},{"name":"fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextColor","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-color.html","searchKeys":["setTextColor","fun setTextColor(hexColor: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextColor"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontName","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-font-name.html","searchKeys":["setTextFontName","fun setTextFontName(fontName: String): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontName"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.setTextFontSize"]},{"name":"fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontSize","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/set-text-font-size.html","searchKeys":["setTextFontSize","fun setTextFontSize(fontSize: Int): PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.setTextFontSize"]},{"name":"fun setTimeout(timeout: Int): PaymentAuthConfig.Stripe3ds2Config.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setTimeout","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/set-timeout.html","searchKeys":["setTimeout","fun setTimeout(timeout: Int): PaymentAuthConfig.Stripe3ds2Config.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setTimeout"]},{"name":"fun setTitle(title: String?): PersonTokenParams.Relationship.Builder","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.setTitle","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/set-title.html","searchKeys":["setTitle","fun setTitle(title: String?): PersonTokenParams.Relationship.Builder","com.stripe.android.model.PersonTokenParams.Relationship.Builder.setTitle"]},{"name":"fun setToolbarCustomization(toolbarCustomization: PaymentAuthConfig.Stripe3ds2ToolbarCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setToolbarCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/set-toolbar-customization.html","searchKeys":["setToolbarCustomization","fun setToolbarCustomization(toolbarCustomization: PaymentAuthConfig.Stripe3ds2ToolbarCustomization): PaymentAuthConfig.Stripe3ds2UiCustomization.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.setToolbarCustomization"]},{"name":"fun setTown(town: String?): AddressJapanParams.Builder","description":"com.stripe.android.model.AddressJapanParams.Builder.setTown","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/set-town.html","searchKeys":["setTown","fun setTown(town: String?): AddressJapanParams.Builder","com.stripe.android.model.AddressJapanParams.Builder.setTown"]},{"name":"fun setType(type: PaymentMethod.Type?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setType","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-type.html","searchKeys":["setType","fun setType(type: PaymentMethod.Type?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setType"]},{"name":"fun setUiCustomization(uiCustomization: PaymentAuthConfig.Stripe3ds2UiCustomization): PaymentAuthConfig.Stripe3ds2Config.Builder","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setUiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/set-ui-customization.html","searchKeys":["setUiCustomization","fun setUiCustomization(uiCustomization: PaymentAuthConfig.Stripe3ds2UiCustomization): PaymentAuthConfig.Stripe3ds2Config.Builder","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.setUiCustomization"]},{"name":"fun setUpi(upi: PaymentMethod.Upi?): PaymentMethod.Builder","description":"com.stripe.android.model.PaymentMethod.Builder.setUpi","location":"payments-core/com.stripe.android.model/-payment-method/-builder/set-upi.html","searchKeys":["setUpi","fun setUpi(upi: PaymentMethod.Upi?): PaymentMethod.Builder","com.stripe.android.model.PaymentMethod.Builder.setUpi"]},{"name":"fun setVatId(vatId: String?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVatId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-vat-id.html","searchKeys":["setVatId","fun setVatId(vatId: String?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVatId"]},{"name":"fun setVerification(verification: AccountParams.BusinessTypeParams.Company.Verification?): AccountParams.BusinessTypeParams.Company.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVerification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: AccountParams.BusinessTypeParams.Company.Verification?): AccountParams.BusinessTypeParams.Company.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.setVerification"]},{"name":"fun setVerification(verification: AccountParams.BusinessTypeParams.Individual.Verification?): AccountParams.BusinessTypeParams.Individual.Builder","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setVerification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: AccountParams.BusinessTypeParams.Individual.Verification?): AccountParams.BusinessTypeParams.Individual.Builder","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.setVerification"]},{"name":"fun setVerification(verification: PersonTokenParams.Verification?): PersonTokenParams.Builder","description":"com.stripe.android.model.PersonTokenParams.Builder.setVerification","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/set-verification.html","searchKeys":["setVerification","fun setVerification(verification: PersonTokenParams.Verification?): PersonTokenParams.Builder","com.stripe.android.model.PersonTokenParams.Builder.setVerification"]},{"name":"fun setWindowFlags(windowFlags: Int?): AddPaymentMethodActivityStarter.Args.Builder","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): AddPaymentMethodActivityStarter.Args.Builder","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentFlowActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentFlowActivityStarter.Args.Builder","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentMethodsActivityStarter.Args.Builder","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setWindowFlags","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentMethodsActivityStarter.Args.Builder","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.setWindowFlags"]},{"name":"fun setWindowFlags(windowFlags: Int?): PaymentSessionConfig.Builder","description":"com.stripe.android.PaymentSessionConfig.Builder.setWindowFlags","location":"payments-core/com.stripe.android/-payment-session-config/-builder/set-window-flags.html","searchKeys":["setWindowFlags","fun setWindowFlags(windowFlags: Int?): PaymentSessionConfig.Builder","com.stripe.android.PaymentSessionConfig.Builder.setWindowFlags"]},{"name":"fun shouldSavePaymentMethod(): Boolean","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shouldSavePaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/should-save-payment-method.html","searchKeys":["shouldSavePaymentMethod","fun shouldSavePaymentMethod(): Boolean","com.stripe.android.model.ConfirmPaymentIntentParams.shouldSavePaymentMethod"]},{"name":"fun startForResult(args: ArgsType)","description":"com.stripe.android.view.ActivityStarter.startForResult","location":"payments-core/com.stripe.android.view/-activity-starter/start-for-result.html","searchKeys":["startForResult","fun startForResult(args: ArgsType)","com.stripe.android.view.ActivityStarter.startForResult"]},{"name":"fun toBuilder(): PaymentMethod.BillingDetails.Builder","description":"com.stripe.android.model.PaymentMethod.BillingDetails.toBuilder","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/to-builder.html","searchKeys":["toBuilder","fun toBuilder(): PaymentMethod.BillingDetails.Builder","com.stripe.android.model.PaymentMethod.BillingDetails.toBuilder"]},{"name":"fun toBundle(): Bundle","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.toBundle","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/to-bundle.html","searchKeys":["toBundle","fun toBundle(): Bundle","com.stripe.android.payments.PaymentFlowResult.Unvalidated.toBundle"]},{"name":"fun updateCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","description":"com.stripe.android.CustomerSession.updateCurrentCustomer","location":"payments-core/com.stripe.android/-customer-session/update-current-customer.html","searchKeys":["updateCurrentCustomer","fun updateCurrentCustomer(listener: CustomerSession.CustomerRetrievalListener)","com.stripe.android.CustomerSession.updateCurrentCustomer"]},{"name":"fun updatePin(cardId: String, newPin: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinUpdateListener)","description":"com.stripe.android.IssuingCardPinService.updatePin","location":"payments-core/com.stripe.android/-issuing-card-pin-service/update-pin.html","searchKeys":["updatePin","fun updatePin(cardId: String, newPin: String, verificationId: String, userOneTimeCode: String, listener: IssuingCardPinService.IssuingCardPinUpdateListener)","com.stripe.android.IssuingCardPinService.updatePin"]},{"name":"fun validateAllFields(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.validateAllFields","location":"payments-core/com.stripe.android.view/-card-multiline-widget/validate-all-fields.html","searchKeys":["validateAllFields","fun validateAllFields(): Boolean","com.stripe.android.view.CardMultilineWidget.validateAllFields"]},{"name":"fun validateAllFields(): Boolean","description":"com.stripe.android.view.ShippingInfoWidget.validateAllFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/validate-all-fields.html","searchKeys":["validateAllFields","fun validateAllFields(): Boolean","com.stripe.android.view.ShippingInfoWidget.validateAllFields"]},{"name":"fun validateCardNumber(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.validateCardNumber","location":"payments-core/com.stripe.android.view/-card-multiline-widget/validate-card-number.html","searchKeys":["validateCardNumber","fun validateCardNumber(): Boolean","com.stripe.android.view.CardMultilineWidget.validateCardNumber"]},{"name":"interface ActivityResultLauncherHost","description":"com.stripe.android.payments.core.ActivityResultLauncherHost","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/index.html","searchKeys":["ActivityResultLauncherHost","interface ActivityResultLauncherHost","com.stripe.android.payments.core.ActivityResultLauncherHost"]},{"name":"interface ApiResultCallback","description":"com.stripe.android.ApiResultCallback","location":"payments-core/com.stripe.android/-api-result-callback/index.html","searchKeys":["ApiResultCallback","interface ApiResultCallback","com.stripe.android.ApiResultCallback"]},{"name":"interface Args : Parcelable","description":"com.stripe.android.view.ActivityStarter.Args","location":"payments-core/com.stripe.android.view/-activity-starter/-args/index.html","searchKeys":["Args","interface Args : Parcelable","com.stripe.android.view.ActivityStarter.Args"]},{"name":"interface CardInputListener","description":"com.stripe.android.view.CardInputListener","location":"payments-core/com.stripe.android.view/-card-input-listener/index.html","searchKeys":["CardInputListener","interface CardInputListener","com.stripe.android.view.CardInputListener"]},{"name":"interface ConfirmStripeIntentParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.ConfirmStripeIntentParams","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/index.html","searchKeys":["ConfirmStripeIntentParams","interface ConfirmStripeIntentParams : StripeParamsModel, Parcelable","com.stripe.android.model.ConfirmStripeIntentParams"]},{"name":"interface CustomerRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.CustomerRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-customer-retrieval-listener/index.html","searchKeys":["CustomerRetrievalListener","interface CustomerRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.CustomerRetrievalListener"]},{"name":"interface EphemeralKeyUpdateListener","description":"com.stripe.android.EphemeralKeyUpdateListener","location":"payments-core/com.stripe.android/-ephemeral-key-update-listener/index.html","searchKeys":["EphemeralKeyUpdateListener","interface EphemeralKeyUpdateListener","com.stripe.android.EphemeralKeyUpdateListener"]},{"name":"interface ErrorMessageTranslator","description":"com.stripe.android.view.i18n.ErrorMessageTranslator","location":"payments-core/com.stripe.android.view.i18n/-error-message-translator/index.html","searchKeys":["ErrorMessageTranslator","interface ErrorMessageTranslator","com.stripe.android.view.i18n.ErrorMessageTranslator"]},{"name":"interface FlowController","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/index.html","searchKeys":["FlowController","interface FlowController","com.stripe.android.paymentsheet.PaymentSheet.FlowController"]},{"name":"interface GooglePayPaymentMethodLauncherFactory","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherFactory","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-factory/index.html","searchKeys":["GooglePayPaymentMethodLauncherFactory","interface GooglePayPaymentMethodLauncherFactory","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherFactory"]},{"name":"interface IssuingCardPinRetrievalListener : IssuingCardPinService.Listener","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-retrieval-listener/index.html","searchKeys":["IssuingCardPinRetrievalListener","interface IssuingCardPinRetrievalListener : IssuingCardPinService.Listener","com.stripe.android.IssuingCardPinService.IssuingCardPinRetrievalListener"]},{"name":"interface IssuingCardPinUpdateListener : IssuingCardPinService.Listener","description":"com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-issuing-card-pin-update-listener/index.html","searchKeys":["IssuingCardPinUpdateListener","interface IssuingCardPinUpdateListener : IssuingCardPinService.Listener","com.stripe.android.IssuingCardPinService.IssuingCardPinUpdateListener"]},{"name":"interface Listener","description":"com.stripe.android.IssuingCardPinService.Listener","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-listener/index.html","searchKeys":["Listener","interface Listener","com.stripe.android.IssuingCardPinService.Listener"]},{"name":"interface Logger","description":"com.stripe.android.Logger","location":"payments-core/com.stripe.android/-logger/index.html","searchKeys":["Logger","interface Logger","com.stripe.android.Logger"]},{"name":"interface PaymentAuthenticator : ActivityResultLauncherHost","description":"com.stripe.android.payments.core.authentication.PaymentAuthenticator","location":"payments-core/com.stripe.android.payments.core.authentication/-payment-authenticator/index.html","searchKeys":["PaymentAuthenticator","interface PaymentAuthenticator : ActivityResultLauncherHost","com.stripe.android.payments.core.authentication.PaymentAuthenticator"]},{"name":"interface PaymentMethodRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.PaymentMethodRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-payment-method-retrieval-listener/index.html","searchKeys":["PaymentMethodRetrievalListener","interface PaymentMethodRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.PaymentMethodRetrievalListener"]},{"name":"interface PaymentMethodsRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-payment-methods-retrieval-listener/index.html","searchKeys":["PaymentMethodsRetrievalListener","interface PaymentMethodsRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.PaymentMethodsRetrievalListener"]},{"name":"interface PaymentSessionListener","description":"com.stripe.android.PaymentSession.PaymentSessionListener","location":"payments-core/com.stripe.android/-payment-session/-payment-session-listener/index.html","searchKeys":["PaymentSessionListener","interface PaymentSessionListener","com.stripe.android.PaymentSession.PaymentSessionListener"]},{"name":"interface Result : Parcelable","description":"com.stripe.android.view.ActivityStarter.Result","location":"payments-core/com.stripe.android.view/-activity-starter/-result/index.html","searchKeys":["Result","interface Result : Parcelable","com.stripe.android.view.ActivityStarter.Result"]},{"name":"interface RetrievalListener","description":"com.stripe.android.CustomerSession.RetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-retrieval-listener/index.html","searchKeys":["RetrievalListener","interface RetrievalListener","com.stripe.android.CustomerSession.RetrievalListener"]},{"name":"interface ShippingInformationValidator : Serializable","description":"com.stripe.android.PaymentSessionConfig.ShippingInformationValidator","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-information-validator/index.html","searchKeys":["ShippingInformationValidator","interface ShippingInformationValidator : Serializable","com.stripe.android.PaymentSessionConfig.ShippingInformationValidator"]},{"name":"interface ShippingMethodsFactory : Serializable","description":"com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory","location":"payments-core/com.stripe.android/-payment-session-config/-shipping-methods-factory/index.html","searchKeys":["ShippingMethodsFactory","interface ShippingMethodsFactory : Serializable","com.stripe.android.PaymentSessionConfig.ShippingMethodsFactory"]},{"name":"interface SourceRetrievalListener : CustomerSession.RetrievalListener","description":"com.stripe.android.CustomerSession.SourceRetrievalListener","location":"payments-core/com.stripe.android/-customer-session/-source-retrieval-listener/index.html","searchKeys":["SourceRetrievalListener","interface SourceRetrievalListener : CustomerSession.RetrievalListener","com.stripe.android.CustomerSession.SourceRetrievalListener"]},{"name":"interface StripeIntent : StripeModel","description":"com.stripe.android.model.StripeIntent","location":"payments-core/com.stripe.android.model/-stripe-intent/index.html","searchKeys":["StripeIntent","interface StripeIntent : StripeModel","com.stripe.android.model.StripeIntent"]},{"name":"interface StripeModel : Parcelable","description":"com.stripe.android.model.StripeModel","location":"payments-core/com.stripe.android.model/-stripe-model/index.html","searchKeys":["StripeModel","interface StripeModel : Parcelable","com.stripe.android.model.StripeModel"]},{"name":"interface StripeParamsModel : Parcelable","description":"com.stripe.android.model.StripeParamsModel","location":"payments-core/com.stripe.android.model/-stripe-params-model/index.html","searchKeys":["StripeParamsModel","interface StripeParamsModel : Parcelable","com.stripe.android.model.StripeParamsModel"]},{"name":"interface StripePaymentSource : Parcelable","description":"com.stripe.android.model.StripePaymentSource","location":"payments-core/com.stripe.android.model/-stripe-payment-source/index.html","searchKeys":["StripePaymentSource","interface StripePaymentSource : Parcelable","com.stripe.android.model.StripePaymentSource"]},{"name":"interface ValidParamsCallback","description":"com.stripe.android.view.BecsDebitWidget.ValidParamsCallback","location":"payments-core/com.stripe.android.view/-becs-debit-widget/-valid-params-callback/index.html","searchKeys":["ValidParamsCallback","interface ValidParamsCallback","com.stripe.android.view.BecsDebitWidget.ValidParamsCallback"]},{"name":"object BankAccountTokenParamsFixtures","description":"com.stripe.android.model.BankAccountTokenParamsFixtures","location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/index.html","searchKeys":["BankAccountTokenParamsFixtures","object BankAccountTokenParamsFixtures","com.stripe.android.model.BankAccountTokenParamsFixtures"]},{"name":"object BlikAuthorize : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/index.html","searchKeys":["BlikAuthorize","object BlikAuthorize : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize"]},{"name":"object Canceled : AddPaymentMethodActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Canceled","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : AddPaymentMethodActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Canceled"]},{"name":"object Canceled : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Canceled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Canceled"]},{"name":"object Canceled : GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Canceled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Canceled"]},{"name":"object Canceled : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Canceled","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-canceled/index.html","searchKeys":["Canceled","object Canceled : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Canceled"]},{"name":"object Companion","description":"com.stripe.android.AppInfo.Companion","location":"payments-core/com.stripe.android/-app-info/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.AppInfo.Companion"]},{"name":"object Companion","description":"com.stripe.android.CustomerSession.Companion","location":"payments-core/com.stripe.android/-customer-session/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.CustomerSession.Companion"]},{"name":"object Companion","description":"com.stripe.android.IssuingCardPinService.Companion","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.IssuingCardPinService.Companion"]},{"name":"object Companion","description":"com.stripe.android.Logger.Companion","location":"payments-core/com.stripe.android/-logger/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.Logger.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentAuthConfig.Companion","location":"payments-core/com.stripe.android/-payment-auth-config/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentAuthConfig.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.Companion"]},{"name":"object Companion","description":"com.stripe.android.PaymentConfiguration.Companion","location":"payments-core/com.stripe.android/-payment-configuration/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.PaymentConfiguration.Companion"]},{"name":"object Companion","description":"com.stripe.android.Stripe.Companion","location":"payments-core/com.stripe.android/-stripe/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.Stripe.Companion"]},{"name":"object Companion","description":"com.stripe.android.StripeIntentResult.Outcome.Companion","location":"payments-core/com.stripe.android/-stripe-intent-result/-outcome/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.StripeIntentResult.Outcome.Companion"]},{"name":"object Companion","description":"com.stripe.android.exception.StripeException.Companion","location":"payments-core/com.stripe.android.exception/-stripe-exception/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.exception.StripeException.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.AccountParams.Companion","location":"payments-core/com.stripe.android.model/-account-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.AccountParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Address.Companion","location":"payments-core/com.stripe.android.model/-address/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Address.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.CardBrand.Companion","location":"payments-core/com.stripe.android.model/-card-brand/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.CardBrand.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmPaymentIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmSetupIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmSetupIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ConfirmStripeIntentParams.Companion","location":"payments-core/com.stripe.android.model/-confirm-stripe-intent-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ConfirmStripeIntentParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.GooglePayResult.Companion","location":"payments-core/com.stripe.android.model/-google-pay-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.GooglePayResult.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentIntent.Companion","location":"payments-core/com.stripe.android.model/-payment-intent/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentIntent.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethod.Companion","location":"payments-core/com.stripe.android.model/-payment-method/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethod.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethod.Type.Companion","location":"payments-core/com.stripe.android.model/-payment-method/-type/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethod.Type.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Companion","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethodCreateParams.Card.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.PaymentMethodCreateParams.Companion","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.PaymentMethodCreateParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.SetupIntent.Companion","location":"payments-core/com.stripe.android.model/-setup-intent/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.SetupIntent.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.ShippingInformation.Companion","location":"payments-core/com.stripe.android.model/-shipping-information/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.ShippingInformation.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Source.Companion","location":"payments-core/com.stripe.android.model/-source/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Source.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Source.SourceType.Companion","location":"payments-core/com.stripe.android.model/-source/-source-type/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Source.SourceType.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.SourceParams.Companion","location":"payments-core/com.stripe.android.model/-source-params/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.SourceParams.Companion"]},{"name":"object Companion","description":"com.stripe.android.model.Token.Companion","location":"payments-core/com.stripe.android.model/-token/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.model.Token.Companion"]},{"name":"object Companion","description":"com.stripe.android.networking.ApiRequest.Options.Companion","location":"payments-core/com.stripe.android.networking/-api-request/-options/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.networking.ApiRequest.Options.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.PaymentSheetContract.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.ActivityStarter.Args.Companion","location":"payments-core/com.stripe.android.view/-activity-starter/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.ActivityStarter.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.ActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.ActivityStarter.Result.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.AddPaymentMethodActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentFlowActivityStarter.Args.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentFlowActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentFlowActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Companion","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentMethodsActivityStarter.Companion"]},{"name":"object Companion","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.view.PaymentMethodsActivityStarter.Result.Companion"]},{"name":"object Companion : Parceler ","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/index.html","searchKeys":["Companion","object Companion : Parceler ","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion"]},{"name":"object Completed : GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Completed","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-completed/index.html","searchKeys":["Completed","object Completed : GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Completed"]},{"name":"object Completed : PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Completed","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-completed/index.html","searchKeys":["Completed","object Completed : PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetResult.Completed"]},{"name":"object Disabled : GooglePayRepository","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/-disabled/index.html","searchKeys":["Disabled","object Disabled : GooglePayRepository","com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled"]},{"name":"object PayWithGoogleUtils","description":"com.stripe.android.PayWithGoogleUtils","location":"payments-core/com.stripe.android/-pay-with-google-utils/index.html","searchKeys":["PayWithGoogleUtils","object PayWithGoogleUtils","com.stripe.android.PayWithGoogleUtils"]},{"name":"object PaymentUtils","description":"com.stripe.android.view.PaymentUtils","location":"payments-core/com.stripe.android.view/-payment-utils/index.html","searchKeys":["PaymentUtils","object PaymentUtils","com.stripe.android.view.PaymentUtils"]},{"name":"object Success : PaymentSheet.FlowController.Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Success","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-success/index.html","searchKeys":["Success","object Success : PaymentSheet.FlowController.Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Success"]},{"name":"object TranslatorManager","description":"com.stripe.android.view.i18n.TranslatorManager","location":"payments-core/com.stripe.android.view.i18n/-translator-manager/index.html","searchKeys":["TranslatorManager","object TranslatorManager","com.stripe.android.view.i18n.TranslatorManager"]},{"name":"open class StripeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : TextInputEditText","description":"com.stripe.android.view.StripeEditText","location":"payments-core/com.stripe.android.view/-stripe-edit-text/index.html","searchKeys":["StripeEditText","open class StripeEditText constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : TextInputEditText","com.stripe.android.view.StripeEditText"]},{"name":"open fun onLauncherInvalidated()","description":"com.stripe.android.payments.core.ActivityResultLauncherHost.onLauncherInvalidated","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/on-launcher-invalidated.html","searchKeys":["onLauncherInvalidated","open fun onLauncherInvalidated()","com.stripe.android.payments.core.ActivityResultLauncherHost.onLauncherInvalidated"]},{"name":"open fun onNewActivityResultCaller(activityResultCaller: ActivityResultCaller, activityResultCallback: ActivityResultCallback)","description":"com.stripe.android.payments.core.ActivityResultLauncherHost.onNewActivityResultCaller","location":"payments-core/com.stripe.android.payments.core/-activity-result-launcher-host/on-new-activity-result-caller.html","searchKeys":["onNewActivityResultCaller","open fun onNewActivityResultCaller(activityResultCaller: ActivityResultCaller, activityResultCallback: ActivityResultCallback)","com.stripe.android.payments.core.ActivityResultLauncherHost.onNewActivityResultCaller"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.exception.StripeException.equals","location":"payments-core/com.stripe.android.exception/-stripe-exception/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.stripe.android.exception.StripeException.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.equals","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.equals"]},{"name":"open override fun PaymentFlowResult.Unvalidated.write(parcel: Parcel, flags: Int)","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.write","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/write.html","searchKeys":["write","open override fun PaymentFlowResult.Unvalidated.write(parcel: Parcel, flags: Int)","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.write"]},{"name":"open override fun addTextChangedListener(watcher: TextWatcher?)","description":"com.stripe.android.view.StripeEditText.addTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/add-text-changed-listener.html","searchKeys":["addTextChangedListener","open override fun addTextChangedListener(watcher: TextWatcher?)","com.stripe.android.view.StripeEditText.addTextChangedListener"]},{"name":"open override fun build(): AccountParams.BusinessTypeParams.Company","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.build","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-builder/build.html","searchKeys":["build","open override fun build(): AccountParams.BusinessTypeParams.Company","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Builder.build"]},{"name":"open override fun build(): AccountParams.BusinessTypeParams.Individual","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.build","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-builder/build.html","searchKeys":["build","open override fun build(): AccountParams.BusinessTypeParams.Individual","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Builder.build"]},{"name":"open override fun build(): AddPaymentMethodActivityStarter.Args","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): AddPaymentMethodActivityStarter.Args","com.stripe.android.view.AddPaymentMethodActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): Address","description":"com.stripe.android.model.Address.Builder.build","location":"payments-core/com.stripe.android.model/-address/-builder/build.html","searchKeys":["build","open override fun build(): Address","com.stripe.android.model.Address.Builder.build"]},{"name":"open override fun build(): AddressJapanParams","description":"com.stripe.android.model.AddressJapanParams.Builder.build","location":"payments-core/com.stripe.android.model/-address-japan-params/-builder/build.html","searchKeys":["build","open override fun build(): AddressJapanParams","com.stripe.android.model.AddressJapanParams.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig","description":"com.stripe.android.PaymentAuthConfig.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig","com.stripe.android.PaymentAuthConfig.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2ButtonCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-button-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2ButtonCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ButtonCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2Config","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2Config","com.stripe.android.PaymentAuthConfig.Stripe3ds2Config.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2LabelCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-label-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2LabelCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2TextBoxCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-text-box-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2TextBoxCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2TextBoxCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2ToolbarCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-toolbar-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2ToolbarCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2ToolbarCustomization.Builder.build"]},{"name":"open override fun build(): PaymentAuthConfig.Stripe3ds2UiCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.build","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-builder/build.html","searchKeys":["build","open override fun build(): PaymentAuthConfig.Stripe3ds2UiCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.Builder.build"]},{"name":"open override fun build(): PaymentFlowActivityStarter.Args","description":"com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-payment-flow-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): PaymentFlowActivityStarter.Args","com.stripe.android.view.PaymentFlowActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): PaymentMethod","description":"com.stripe.android.model.PaymentMethod.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethod","com.stripe.android.model.PaymentMethod.Builder.build"]},{"name":"open override fun build(): PaymentMethod.BillingDetails","description":"com.stripe.android.model.PaymentMethod.BillingDetails.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethod.BillingDetails","com.stripe.android.model.PaymentMethod.BillingDetails.Builder.build"]},{"name":"open override fun build(): PaymentMethodCreateParams.Card","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.build","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethodCreateParams.Card","com.stripe.android.model.PaymentMethodCreateParams.Card.Builder.build"]},{"name":"open override fun build(): PaymentMethodsActivityStarter.Args","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.build","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/-builder/build.html","searchKeys":["build","open override fun build(): PaymentMethodsActivityStarter.Args","com.stripe.android.view.PaymentMethodsActivityStarter.Args.Builder.build"]},{"name":"open override fun build(): PaymentSessionConfig","description":"com.stripe.android.PaymentSessionConfig.Builder.build","location":"payments-core/com.stripe.android/-payment-session-config/-builder/build.html","searchKeys":["build","open override fun build(): PaymentSessionConfig","com.stripe.android.PaymentSessionConfig.Builder.build"]},{"name":"open override fun build(): PersonTokenParams","description":"com.stripe.android.model.PersonTokenParams.Builder.build","location":"payments-core/com.stripe.android.model/-person-token-params/-builder/build.html","searchKeys":["build","open override fun build(): PersonTokenParams","com.stripe.android.model.PersonTokenParams.Builder.build"]},{"name":"open override fun build(): PersonTokenParams.Relationship","description":"com.stripe.android.model.PersonTokenParams.Relationship.Builder.build","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/-builder/build.html","searchKeys":["build","open override fun build(): PersonTokenParams.Relationship","com.stripe.android.model.PersonTokenParams.Relationship.Builder.build"]},{"name":"open override fun clear()","description":"com.stripe.android.view.CardInputWidget.clear","location":"payments-core/com.stripe.android.view/-card-input-widget/clear.html","searchKeys":["clear","open override fun clear()","com.stripe.android.view.CardInputWidget.clear"]},{"name":"open override fun clear()","description":"com.stripe.android.view.CardMultilineWidget.clear","location":"payments-core/com.stripe.android.view/-card-multiline-widget/clear.html","searchKeys":["clear","open override fun clear()","com.stripe.android.view.CardMultilineWidget.clear"]},{"name":"open override fun create(parcel: Parcel): PaymentFlowResult.Unvalidated","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.create","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/-companion/create.html","searchKeys":["create","open override fun create(parcel: Parcel): PaymentFlowResult.Unvalidated","com.stripe.android.payments.PaymentFlowResult.Unvalidated.Companion.create"]},{"name":"open override fun createIntent(context: Context, input: GooglePayLauncherContract.Args): Intent","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.createIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: GooglePayLauncherContract.Args): Intent","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.createIntent"]},{"name":"open override fun createIntent(context: Context, input: GooglePayPaymentMethodLauncherContract.Args): Intent","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.createIntent","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: GooglePayPaymentMethodLauncherContract.Args): Intent","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.createIntent"]},{"name":"open override fun createIntent(context: Context, input: PaymentSheetContract.Args): Intent","description":"com.stripe.android.paymentsheet.PaymentSheetContract.createIntent","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/create-intent.html","searchKeys":["createIntent","open override fun createIntent(context: Context, input: PaymentSheetContract.Args): Intent","com.stripe.android.paymentsheet.PaymentSheetContract.createIntent"]},{"name":"open override fun getOnFocusChangeListener(): View.OnFocusChangeListener?","description":"com.stripe.android.view.StripeEditText.getOnFocusChangeListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/get-on-focus-change-listener.html","searchKeys":["getOnFocusChangeListener","open override fun getOnFocusChangeListener(): View.OnFocusChangeListener?","com.stripe.android.view.StripeEditText.getOnFocusChangeListener"]},{"name":"open override fun hashCode(): Int","description":"com.stripe.android.exception.StripeException.hashCode","location":"payments-core/com.stripe.android.exception/-stripe-exception/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.stripe.android.exception.StripeException.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.hashCode","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-blik-authorize/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.stripe.android.model.StripeIntent.NextActionData.BlikAuthorize.hashCode"]},{"name":"open override fun isEnabled(): Boolean","description":"com.stripe.android.view.CardInputWidget.isEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/is-enabled.html","searchKeys":["isEnabled","open override fun isEnabled(): Boolean","com.stripe.android.view.CardInputWidget.isEnabled"]},{"name":"open override fun isEnabled(): Boolean","description":"com.stripe.android.view.CardMultilineWidget.isEnabled","location":"payments-core/com.stripe.android.view/-card-multiline-widget/is-enabled.html","searchKeys":["isEnabled","open override fun isEnabled(): Boolean","com.stripe.android.view.CardMultilineWidget.isEnabled"]},{"name":"open override fun isReady(): Flow","description":"com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled.isReady","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-repository/-disabled/is-ready.html","searchKeys":["isReady","open override fun isReady(): Flow","com.stripe.android.googlepaylauncher.GooglePayRepository.Disabled.isReady"]},{"name":"open override fun onActionSave()","description":"com.stripe.android.view.AddPaymentMethodActivity.onActionSave","location":"payments-core/com.stripe.android.view/-add-payment-method-activity/on-action-save.html","searchKeys":["onActionSave","open override fun onActionSave()","com.stripe.android.view.AddPaymentMethodActivity.onActionSave"]},{"name":"open override fun onActionSave()","description":"com.stripe.android.view.PaymentFlowActivity.onActionSave","location":"payments-core/com.stripe.android.view/-payment-flow-activity/on-action-save.html","searchKeys":["onActionSave","open override fun onActionSave()","com.stripe.android.view.PaymentFlowActivity.onActionSave"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentAuthWebViewActivity.onBackPressed"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentFlowActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-flow-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentFlowActivity.onBackPressed"]},{"name":"open override fun onBackPressed()","description":"com.stripe.android.view.PaymentMethodsActivity.onBackPressed","location":"payments-core/com.stripe.android.view/-payment-methods-activity/on-back-pressed.html","searchKeys":["onBackPressed","open override fun onBackPressed()","com.stripe.android.view.PaymentMethodsActivity.onBackPressed"]},{"name":"open override fun onCreateInputConnection(outAttrs: EditorInfo): InputConnection?","description":"com.stripe.android.view.StripeEditText.onCreateInputConnection","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-create-input-connection.html","searchKeys":["onCreateInputConnection","open override fun onCreateInputConnection(outAttrs: EditorInfo): InputConnection?","com.stripe.android.view.StripeEditText.onCreateInputConnection"]},{"name":"open override fun onCreateOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onCreateOptionsMenu","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-create-options-menu.html","searchKeys":["onCreateOptionsMenu","open override fun onCreateOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.PaymentAuthWebViewActivity.onCreateOptionsMenu"]},{"name":"open override fun onCreateOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.StripeActivity.onCreateOptionsMenu","location":"payments-core/com.stripe.android.view/-stripe-activity/on-create-options-menu.html","searchKeys":["onCreateOptionsMenu","open override fun onCreateOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.StripeActivity.onCreateOptionsMenu"]},{"name":"open override fun onInitializeAccessibilityNodeInfo(info: AccessibilityNodeInfo)","description":"com.stripe.android.view.StripeEditText.onInitializeAccessibilityNodeInfo","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-initialize-accessibility-node-info.html","searchKeys":["onInitializeAccessibilityNodeInfo","open override fun onInitializeAccessibilityNodeInfo(info: AccessibilityNodeInfo)","com.stripe.android.view.StripeEditText.onInitializeAccessibilityNodeInfo"]},{"name":"open override fun onInterceptTouchEvent(ev: MotionEvent): Boolean","description":"com.stripe.android.view.CardInputWidget.onInterceptTouchEvent","location":"payments-core/com.stripe.android.view/-card-input-widget/on-intercept-touch-event.html","searchKeys":["onInterceptTouchEvent","open override fun onInterceptTouchEvent(ev: MotionEvent): Boolean","com.stripe.android.view.CardInputWidget.onInterceptTouchEvent"]},{"name":"open override fun onInterceptTouchEvent(event: MotionEvent?): Boolean","description":"com.stripe.android.view.PaymentFlowViewPager.onInterceptTouchEvent","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/on-intercept-touch-event.html","searchKeys":["onInterceptTouchEvent","open override fun onInterceptTouchEvent(event: MotionEvent?): Boolean","com.stripe.android.view.PaymentFlowViewPager.onInterceptTouchEvent"]},{"name":"open override fun onOptionsItemSelected(item: MenuItem): Boolean","description":"com.stripe.android.view.PaymentAuthWebViewActivity.onOptionsItemSelected","location":"payments-core/com.stripe.android.view/-payment-auth-web-view-activity/on-options-item-selected.html","searchKeys":["onOptionsItemSelected","open override fun onOptionsItemSelected(item: MenuItem): Boolean","com.stripe.android.view.PaymentAuthWebViewActivity.onOptionsItemSelected"]},{"name":"open override fun onOptionsItemSelected(item: MenuItem): Boolean","description":"com.stripe.android.view.StripeActivity.onOptionsItemSelected","location":"payments-core/com.stripe.android.view/-stripe-activity/on-options-item-selected.html","searchKeys":["onOptionsItemSelected","open override fun onOptionsItemSelected(item: MenuItem): Boolean","com.stripe.android.view.StripeActivity.onOptionsItemSelected"]},{"name":"open override fun onPrepareOptionsMenu(menu: Menu): Boolean","description":"com.stripe.android.view.StripeActivity.onPrepareOptionsMenu","location":"payments-core/com.stripe.android.view/-stripe-activity/on-prepare-options-menu.html","searchKeys":["onPrepareOptionsMenu","open override fun onPrepareOptionsMenu(menu: Menu): Boolean","com.stripe.android.view.StripeActivity.onPrepareOptionsMenu"]},{"name":"open override fun onRestoreInstanceState(state: Parcelable?)","description":"com.stripe.android.view.StripeEditText.onRestoreInstanceState","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-restore-instance-state.html","searchKeys":["onRestoreInstanceState","open override fun onRestoreInstanceState(state: Parcelable?)","com.stripe.android.view.StripeEditText.onRestoreInstanceState"]},{"name":"open override fun onSaveInstanceState(): Parcelable","description":"com.stripe.android.view.StripeEditText.onSaveInstanceState","location":"payments-core/com.stripe.android.view/-stripe-edit-text/on-save-instance-state.html","searchKeys":["onSaveInstanceState","open override fun onSaveInstanceState(): Parcelable","com.stripe.android.view.StripeEditText.onSaveInstanceState"]},{"name":"open override fun onSupportNavigateUp(): Boolean","description":"com.stripe.android.view.PaymentMethodsActivity.onSupportNavigateUp","location":"payments-core/com.stripe.android.view/-payment-methods-activity/on-support-navigate-up.html","searchKeys":["onSupportNavigateUp","open override fun onSupportNavigateUp(): Boolean","com.stripe.android.view.PaymentMethodsActivity.onSupportNavigateUp"]},{"name":"open override fun onTouchEvent(event: MotionEvent?): Boolean","description":"com.stripe.android.view.PaymentFlowViewPager.onTouchEvent","location":"payments-core/com.stripe.android.view/-payment-flow-view-pager/on-touch-event.html","searchKeys":["onTouchEvent","open override fun onTouchEvent(event: MotionEvent?): Boolean","com.stripe.android.view.PaymentFlowViewPager.onTouchEvent"]},{"name":"open override fun onWindowFocusChanged(hasWindowFocus: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.onWindowFocusChanged","location":"payments-core/com.stripe.android.view/-card-multiline-widget/on-window-focus-changed.html","searchKeys":["onWindowFocusChanged","open override fun onWindowFocusChanged(hasWindowFocus: Boolean)","com.stripe.android.view.CardMultilineWidget.onWindowFocusChanged"]},{"name":"open override fun parse(json: JSONObject): PaymentIntent?","description":"com.stripe.android.model.parsers.PaymentIntentJsonParser.parse","location":"payments-core/com.stripe.android.model.parsers/-payment-intent-json-parser/parse.html","searchKeys":["parse","open override fun parse(json: JSONObject): PaymentIntent?","com.stripe.android.model.parsers.PaymentIntentJsonParser.parse"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.parseResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.parseResult"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayPaymentMethodLauncher.Result","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.parseResult","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): GooglePayPaymentMethodLauncher.Result","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncherContract.parseResult"]},{"name":"open override fun parseResult(resultCode: Int, intent: Intent?): PaymentSheetResult","description":"com.stripe.android.paymentsheet.PaymentSheetContract.parseResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/parse-result.html","searchKeys":["parseResult","open override fun parseResult(resultCode: Int, intent: Intent?): PaymentSheetResult","com.stripe.android.paymentsheet.PaymentSheetContract.parseResult"]},{"name":"open override fun removeTextChangedListener(watcher: TextWatcher?)","description":"com.stripe.android.view.StripeEditText.removeTextChangedListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/remove-text-changed-listener.html","searchKeys":["removeTextChangedListener","open override fun removeTextChangedListener(watcher: TextWatcher?)","com.stripe.android.view.StripeEditText.removeTextChangedListener"]},{"name":"open override fun requiresAction(): Boolean","description":"com.stripe.android.model.PaymentIntent.requiresAction","location":"payments-core/com.stripe.android.model/-payment-intent/requires-action.html","searchKeys":["requiresAction","open override fun requiresAction(): Boolean","com.stripe.android.model.PaymentIntent.requiresAction"]},{"name":"open override fun requiresAction(): Boolean","description":"com.stripe.android.model.SetupIntent.requiresAction","location":"payments-core/com.stripe.android.model/-setup-intent/requires-action.html","searchKeys":["requiresAction","open override fun requiresAction(): Boolean","com.stripe.android.model.SetupIntent.requiresAction"]},{"name":"open override fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.PaymentIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-payment-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","open override fun requiresConfirmation(): Boolean","com.stripe.android.model.PaymentIntent.requiresConfirmation"]},{"name":"open override fun requiresConfirmation(): Boolean","description":"com.stripe.android.model.SetupIntent.requiresConfirmation","location":"payments-core/com.stripe.android.model/-setup-intent/requires-confirmation.html","searchKeys":["requiresConfirmation","open override fun requiresConfirmation(): Boolean","com.stripe.android.model.SetupIntent.requiresConfirmation"]},{"name":"open override fun setCardHint(cardHint: String)","description":"com.stripe.android.view.CardInputWidget.setCardHint","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-hint.html","searchKeys":["setCardHint","open override fun setCardHint(cardHint: String)","com.stripe.android.view.CardInputWidget.setCardHint"]},{"name":"open override fun setCardHint(cardHint: String)","description":"com.stripe.android.view.CardMultilineWidget.setCardHint","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-hint.html","searchKeys":["setCardHint","open override fun setCardHint(cardHint: String)","com.stripe.android.view.CardMultilineWidget.setCardHint"]},{"name":"open override fun setCardInputListener(listener: CardInputListener?)","description":"com.stripe.android.view.CardInputWidget.setCardInputListener","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-input-listener.html","searchKeys":["setCardInputListener","open override fun setCardInputListener(listener: CardInputListener?)","com.stripe.android.view.CardInputWidget.setCardInputListener"]},{"name":"open override fun setCardInputListener(listener: CardInputListener?)","description":"com.stripe.android.view.CardMultilineWidget.setCardInputListener","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-input-listener.html","searchKeys":["setCardInputListener","open override fun setCardInputListener(listener: CardInputListener?)","com.stripe.android.view.CardMultilineWidget.setCardInputListener"]},{"name":"open override fun setCardNumber(cardNumber: String?)","description":"com.stripe.android.view.CardInputWidget.setCardNumber","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-number.html","searchKeys":["setCardNumber","open override fun setCardNumber(cardNumber: String?)","com.stripe.android.view.CardInputWidget.setCardNumber"]},{"name":"open override fun setCardNumber(cardNumber: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCardNumber","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-number.html","searchKeys":["setCardNumber","open override fun setCardNumber(cardNumber: String?)","com.stripe.android.view.CardMultilineWidget.setCardNumber"]},{"name":"open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setCardNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-number-text-watcher.html","searchKeys":["setCardNumberTextWatcher","open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setCardNumberTextWatcher"]},{"name":"open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setCardNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-number-text-watcher.html","searchKeys":["setCardNumberTextWatcher","open override fun setCardNumberTextWatcher(cardNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setCardNumberTextWatcher"]},{"name":"open override fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardInputWidget.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-input-widget/set-card-valid-callback.html","searchKeys":["setCardValidCallback","open override fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardInputWidget.setCardValidCallback"]},{"name":"open override fun setCardValidCallback(callback: CardValidCallback?)","description":"com.stripe.android.view.CardMultilineWidget.setCardValidCallback","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-card-valid-callback.html","searchKeys":["setCardValidCallback","open override fun setCardValidCallback(callback: CardValidCallback?)","com.stripe.android.view.CardMultilineWidget.setCardValidCallback"]},{"name":"open override fun setCvcCode(cvcCode: String?)","description":"com.stripe.android.view.CardInputWidget.setCvcCode","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-code.html","searchKeys":["setCvcCode","open override fun setCvcCode(cvcCode: String?)","com.stripe.android.view.CardInputWidget.setCvcCode"]},{"name":"open override fun setCvcCode(cvcCode: String?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcCode","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-code.html","searchKeys":["setCvcCode","open override fun setCvcCode(cvcCode: String?)","com.stripe.android.view.CardMultilineWidget.setCvcCode"]},{"name":"open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setCvcNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-cvc-number-text-watcher.html","searchKeys":["setCvcNumberTextWatcher","open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setCvcNumberTextWatcher"]},{"name":"open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setCvcNumberTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-cvc-number-text-watcher.html","searchKeys":["setCvcNumberTextWatcher","open override fun setCvcNumberTextWatcher(cvcNumberTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setCvcNumberTextWatcher"]},{"name":"open override fun setEnabled(enabled: Boolean)","description":"com.stripe.android.view.CardFormView.setEnabled","location":"payments-core/com.stripe.android.view/-card-form-view/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(enabled: Boolean)","com.stripe.android.view.CardFormView.setEnabled"]},{"name":"open override fun setEnabled(enabled: Boolean)","description":"com.stripe.android.view.CardMultilineWidget.setEnabled","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(enabled: Boolean)","com.stripe.android.view.CardMultilineWidget.setEnabled"]},{"name":"open override fun setEnabled(isEnabled: Boolean)","description":"com.stripe.android.view.CardInputWidget.setEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/set-enabled.html","searchKeys":["setEnabled","open override fun setEnabled(isEnabled: Boolean)","com.stripe.android.view.CardInputWidget.setEnabled"]},{"name":"open override fun setExpiryDate(month: Int, year: Int)","description":"com.stripe.android.view.CardInputWidget.setExpiryDate","location":"payments-core/com.stripe.android.view/-card-input-widget/set-expiry-date.html","searchKeys":["setExpiryDate","open override fun setExpiryDate(month: Int, year: Int)","com.stripe.android.view.CardInputWidget.setExpiryDate"]},{"name":"open override fun setExpiryDate(month: Int, year: Int)","description":"com.stripe.android.view.CardMultilineWidget.setExpiryDate","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-expiry-date.html","searchKeys":["setExpiryDate","open override fun setExpiryDate(month: Int, year: Int)","com.stripe.android.view.CardMultilineWidget.setExpiryDate"]},{"name":"open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setExpiryDateTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-expiry-date-text-watcher.html","searchKeys":["setExpiryDateTextWatcher","open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setExpiryDateTextWatcher"]},{"name":"open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setExpiryDateTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-expiry-date-text-watcher.html","searchKeys":["setExpiryDateTextWatcher","open override fun setExpiryDateTextWatcher(expiryDateTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setExpiryDateTextWatcher"]},{"name":"open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardInputWidget.setPostalCodeTextWatcher","location":"payments-core/com.stripe.android.view/-card-input-widget/set-postal-code-text-watcher.html","searchKeys":["setPostalCodeTextWatcher","open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","com.stripe.android.view.CardInputWidget.setPostalCodeTextWatcher"]},{"name":"open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","description":"com.stripe.android.view.CardMultilineWidget.setPostalCodeTextWatcher","location":"payments-core/com.stripe.android.view/-card-multiline-widget/set-postal-code-text-watcher.html","searchKeys":["setPostalCodeTextWatcher","open override fun setPostalCodeTextWatcher(postalCodeTextWatcher: TextWatcher?)","com.stripe.android.view.CardMultilineWidget.setPostalCodeTextWatcher"]},{"name":"open override fun setTextColor(color: Int)","description":"com.stripe.android.view.StripeEditText.setTextColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-text-color.html","searchKeys":["setTextColor","open override fun setTextColor(color: Int)","com.stripe.android.view.StripeEditText.setTextColor"]},{"name":"open override fun setTextColor(colors: ColorStateList?)","description":"com.stripe.android.view.StripeEditText.setTextColor","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-text-color.html","searchKeys":["setTextColor","open override fun setTextColor(colors: ColorStateList?)","com.stripe.android.view.StripeEditText.setTextColor"]},{"name":"open override fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","open override fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmPaymentIntentParams.shouldUseStripeSdk"]},{"name":"open override fun shouldUseStripeSdk(): Boolean","description":"com.stripe.android.model.ConfirmSetupIntentParams.shouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/should-use-stripe-sdk.html","searchKeys":["shouldUseStripeSdk","open override fun shouldUseStripeSdk(): Boolean","com.stripe.android.model.ConfirmSetupIntentParams.shouldUseStripeSdk"]},{"name":"open override fun toBundle(): Bundle","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","open override fun toBundle(): Bundle","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.toBundle"]},{"name":"open override fun toBundle(): Bundle","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.toBundle","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/to-bundle.html","searchKeys":["toBundle","open override fun toBundle(): Bundle","com.stripe.android.view.PaymentMethodsActivityStarter.Result.toBundle"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.toParamMap","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AccountParams.BusinessTypeParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.Address.toParamMap","location":"payments-core/com.stripe.android.model/-address/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.Address.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.AddressJapanParams.toParamMap","location":"payments-core/com.stripe.android.model/-address-japan-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.AddressJapanParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-shipping/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmPaymentIntentParams.Shipping.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmPaymentIntentParams.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmPaymentIntentParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ConfirmSetupIntentParams.toParamMap","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ConfirmSetupIntentParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.DateOfBirth.toParamMap","location":"payments-core/com.stripe.android.model/-date-of-birth/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.DateOfBirth.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.toParamMap","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.KlarnaSourceParams.toParamMap","location":"payments-core/com.stripe.android.model/-klarna-source-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.KlarnaSourceParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.MandateDataParams.Type.Online.toParamMap","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/-online/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.MandateDataParams.Type.Online.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.MandateDataParams.toParamMap","location":"payments-core/com.stripe.android.model/-mandate-data-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.MandateDataParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethod.BillingDetails.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethod.BillingDetails.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Card.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-card/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Card.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Fpx.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Ideal.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Netbanking.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-netbanking/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Netbanking.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Sofort.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sofort/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Sofort.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.Upi.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-upi/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.Upi.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodCreateParams.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-create-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodCreateParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PaymentMethodOptionsParams.toParamMap","location":"payments-core/com.stripe.android.model/-payment-method-options-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PaymentMethodOptionsParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Document.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-document/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Document.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Relationship.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Relationship.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.PersonTokenParams.Verification.toParamMap","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.PersonTokenParams.Verification.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.ShippingInformation.toParamMap","location":"payments-core/com.stripe.android.model/-shipping-information/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.ShippingInformation.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.Item.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/-item/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.Item.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.Shipping.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.Shipping.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceOrderParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-order-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceOrderParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceParams.OwnerParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-params/-owner-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceParams.OwnerParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.SourceParams.toParamMap","location":"payments-core/com.stripe.android.model/-source-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.SourceParams.toParamMap"]},{"name":"open override fun toParamMap(): Map","description":"com.stripe.android.model.TokenParams.toParamMap","location":"payments-core/com.stripe.android.model/-token-params/to-param-map.html","searchKeys":["toParamMap","open override fun toParamMap(): Map","com.stripe.android.model.TokenParams.toParamMap"]},{"name":"open override fun toString(): String","description":"com.stripe.android.exception.StripeException.toString","location":"payments-core/com.stripe.android.exception/-stripe-exception/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.exception.StripeException.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.BankAccount.Status.toString","location":"payments-core/com.stripe.android.model/-bank-account/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.BankAccount.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.BankAccount.Type.toString","location":"payments-core/com.stripe.android.model/-bank-account/-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.BankAccount.Type.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.PaymentMethod.Type.toString","location":"payments-core/com.stripe.android.model/-payment-method/-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.PaymentMethod.Type.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.CodeVerification.Status.toString","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.CodeVerification.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Flow.toString","location":"payments-core/com.stripe.android.model/-source/-flow/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Flow.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Redirect.Status.toString","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Redirect.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Status.toString","location":"payments-core/com.stripe.android.model/-source/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.Source.Usage.toString","location":"payments-core/com.stripe.android.model/-source/-usage/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.Source.Usage.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.toString","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.NextActionType.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.NextActionType.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.Status.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.Status.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.model.StripeIntent.Usage.toString","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.model.StripeIntent.Usage.toString"]},{"name":"open override fun toString(): String","description":"com.stripe.android.networking.ApiRequest.toString","location":"payments-core/com.stripe.android.networking/-api-request/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.networking.ApiRequest.toString"]},{"name":"open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmPaymentIntentParams","description":"com.stripe.android.model.ConfirmPaymentIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmPaymentIntentParams","com.stripe.android.model.ConfirmPaymentIntentParams.withShouldUseStripeSdk"]},{"name":"open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmSetupIntentParams","description":"com.stripe.android.model.ConfirmSetupIntentParams.withShouldUseStripeSdk","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/with-should-use-stripe-sdk.html","searchKeys":["withShouldUseStripeSdk","open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmSetupIntentParams","com.stripe.android.model.ConfirmSetupIntentParams.withShouldUseStripeSdk"]},{"name":"open override val baseUrl: String","description":"com.stripe.android.networking.AnalyticsRequest.baseUrl","location":"payments-core/com.stripe.android.networking/-analytics-request/base-url.html","searchKeys":["baseUrl","open override val baseUrl: String","com.stripe.android.networking.AnalyticsRequest.baseUrl"]},{"name":"open override val baseUrl: String","description":"com.stripe.android.networking.ApiRequest.baseUrl","location":"payments-core/com.stripe.android.networking/-api-request/base-url.html","searchKeys":["baseUrl","open override val baseUrl: String","com.stripe.android.networking.ApiRequest.baseUrl"]},{"name":"open override val cardParams: CardParams?","description":"com.stripe.android.view.CardInputWidget.cardParams","location":"payments-core/com.stripe.android.view/-card-input-widget/card-params.html","searchKeys":["cardParams","open override val cardParams: CardParams?","com.stripe.android.view.CardInputWidget.cardParams"]},{"name":"open override val cardParams: CardParams?","description":"com.stripe.android.view.CardMultilineWidget.cardParams","location":"payments-core/com.stripe.android.view/-card-multiline-widget/card-params.html","searchKeys":["cardParams","open override val cardParams: CardParams?","com.stripe.android.view.CardMultilineWidget.cardParams"]},{"name":"open override val clientSecret: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String","com.stripe.android.model.ConfirmPaymentIntentParams.clientSecret"]},{"name":"open override val clientSecret: String","description":"com.stripe.android.model.ConfirmSetupIntentParams.clientSecret","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String","com.stripe.android.model.ConfirmSetupIntentParams.clientSecret"]},{"name":"open override val clientSecret: String?","description":"com.stripe.android.model.PaymentIntent.clientSecret","location":"payments-core/com.stripe.android.model/-payment-intent/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String?","com.stripe.android.model.PaymentIntent.clientSecret"]},{"name":"open override val clientSecret: String?","description":"com.stripe.android.model.SetupIntent.clientSecret","location":"payments-core/com.stripe.android.model/-setup-intent/client-secret.html","searchKeys":["clientSecret","open override val clientSecret: String?","com.stripe.android.model.SetupIntent.clientSecret"]},{"name":"open override val created: Long","description":"com.stripe.android.model.PaymentIntent.created","location":"payments-core/com.stripe.android.model/-payment-intent/created.html","searchKeys":["created","open override val created: Long","com.stripe.android.model.PaymentIntent.created"]},{"name":"open override val created: Long","description":"com.stripe.android.model.SetupIntent.created","location":"payments-core/com.stripe.android.model/-setup-intent/created.html","searchKeys":["created","open override val created: Long","com.stripe.android.model.SetupIntent.created"]},{"name":"open override val description: String?","description":"com.stripe.android.model.SetupIntent.description","location":"payments-core/com.stripe.android.model/-setup-intent/description.html","searchKeys":["description","open override val description: String?","com.stripe.android.model.SetupIntent.description"]},{"name":"open override val description: String? = null","description":"com.stripe.android.model.PaymentIntent.description","location":"payments-core/com.stripe.android.model/-payment-intent/description.html","searchKeys":["description","open override val description: String? = null","com.stripe.android.model.PaymentIntent.description"]},{"name":"open override val failureMessage: String? = null","description":"com.stripe.android.PaymentIntentResult.failureMessage","location":"payments-core/com.stripe.android/-payment-intent-result/failure-message.html","searchKeys":["failureMessage","open override val failureMessage: String? = null","com.stripe.android.PaymentIntentResult.failureMessage"]},{"name":"open override val failureMessage: String? = null","description":"com.stripe.android.SetupIntentResult.failureMessage","location":"payments-core/com.stripe.android/-setup-intent-result/failure-message.html","searchKeys":["failureMessage","open override val failureMessage: String? = null","com.stripe.android.SetupIntentResult.failureMessage"]},{"name":"open override val id: String","description":"com.stripe.android.model.Token.id","location":"payments-core/com.stripe.android.model/-token/id.html","searchKeys":["id","open override val id: String","com.stripe.android.model.Token.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.Card.id","location":"payments-core/com.stripe.android.model/-card/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.Card.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerBankAccount.id","location":"payments-core/com.stripe.android.model/-customer-bank-account/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerBankAccount.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerCard.id","location":"payments-core/com.stripe.android.model/-customer-card/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerCard.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.CustomerSource.id","location":"payments-core/com.stripe.android.model/-customer-source/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.CustomerSource.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.PaymentIntent.id","location":"payments-core/com.stripe.android.model/-payment-intent/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.PaymentIntent.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.SetupIntent.id","location":"payments-core/com.stripe.android.model/-setup-intent/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.SetupIntent.id"]},{"name":"open override val id: String?","description":"com.stripe.android.model.Source.id","location":"payments-core/com.stripe.android.model/-source/id.html","searchKeys":["id","open override val id: String?","com.stripe.android.model.Source.id"]},{"name":"open override val id: String? = null","description":"com.stripe.android.model.BankAccount.id","location":"payments-core/com.stripe.android.model/-bank-account/id.html","searchKeys":["id","open override val id: String? = null","com.stripe.android.model.BankAccount.id"]},{"name":"open override val intent: PaymentIntent","description":"com.stripe.android.PaymentIntentResult.intent","location":"payments-core/com.stripe.android/-payment-intent-result/intent.html","searchKeys":["intent","open override val intent: PaymentIntent","com.stripe.android.PaymentIntentResult.intent"]},{"name":"open override val intent: SetupIntent","description":"com.stripe.android.SetupIntentResult.intent","location":"payments-core/com.stripe.android/-setup-intent-result/intent.html","searchKeys":["intent","open override val intent: SetupIntent","com.stripe.android.SetupIntentResult.intent"]},{"name":"open override val isConfirmed: Boolean","description":"com.stripe.android.model.PaymentIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-payment-intent/is-confirmed.html","searchKeys":["isConfirmed","open override val isConfirmed: Boolean","com.stripe.android.model.PaymentIntent.isConfirmed"]},{"name":"open override val isConfirmed: Boolean","description":"com.stripe.android.model.SetupIntent.isConfirmed","location":"payments-core/com.stripe.android.model/-setup-intent/is-confirmed.html","searchKeys":["isConfirmed","open override val isConfirmed: Boolean","com.stripe.android.model.SetupIntent.isConfirmed"]},{"name":"open override val isLiveMode: Boolean","description":"com.stripe.android.model.PaymentIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-payment-intent/is-live-mode.html","searchKeys":["isLiveMode","open override val isLiveMode: Boolean","com.stripe.android.model.PaymentIntent.isLiveMode"]},{"name":"open override val isLiveMode: Boolean","description":"com.stripe.android.model.SetupIntent.isLiveMode","location":"payments-core/com.stripe.android.model/-setup-intent/is-live-mode.html","searchKeys":["isLiveMode","open override val isLiveMode: Boolean","com.stripe.android.model.SetupIntent.isLiveMode"]},{"name":"open override val lastErrorMessage: String?","description":"com.stripe.android.model.PaymentIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-payment-intent/last-error-message.html","searchKeys":["lastErrorMessage","open override val lastErrorMessage: String?","com.stripe.android.model.PaymentIntent.lastErrorMessage"]},{"name":"open override val lastErrorMessage: String?","description":"com.stripe.android.model.SetupIntent.lastErrorMessage","location":"payments-core/com.stripe.android.model/-setup-intent/last-error-message.html","searchKeys":["lastErrorMessage","open override val lastErrorMessage: String?","com.stripe.android.model.SetupIntent.lastErrorMessage"]},{"name":"open override val nextActionData: StripeIntent.NextActionData?","description":"com.stripe.android.model.SetupIntent.nextActionData","location":"payments-core/com.stripe.android.model/-setup-intent/next-action-data.html","searchKeys":["nextActionData","open override val nextActionData: StripeIntent.NextActionData?","com.stripe.android.model.SetupIntent.nextActionData"]},{"name":"open override val nextActionData: StripeIntent.NextActionData? = null","description":"com.stripe.android.model.PaymentIntent.nextActionData","location":"payments-core/com.stripe.android.model/-payment-intent/next-action-data.html","searchKeys":["nextActionData","open override val nextActionData: StripeIntent.NextActionData? = null","com.stripe.android.model.PaymentIntent.nextActionData"]},{"name":"open override val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.PaymentIntent.nextActionType","location":"payments-core/com.stripe.android.model/-payment-intent/next-action-type.html","searchKeys":["nextActionType","open override val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.PaymentIntent.nextActionType"]},{"name":"open override val nextActionType: StripeIntent.NextActionType?","description":"com.stripe.android.model.SetupIntent.nextActionType","location":"payments-core/com.stripe.android.model/-setup-intent/next-action-type.html","searchKeys":["nextActionType","open override val nextActionType: StripeIntent.NextActionType?","com.stripe.android.model.SetupIntent.nextActionType"]},{"name":"open override val params: Map","description":"com.stripe.android.networking.AnalyticsRequest.params","location":"payments-core/com.stripe.android.networking/-analytics-request/params.html","searchKeys":["params","open override val params: Map","com.stripe.android.networking.AnalyticsRequest.params"]},{"name":"open override val params: Map? = null","description":"com.stripe.android.networking.ApiRequest.params","location":"payments-core/com.stripe.android.networking/-api-request/params.html","searchKeys":["params","open override val params: Map? = null","com.stripe.android.networking.ApiRequest.params"]},{"name":"open override val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/params-list.html","searchKeys":["paramsList","open override val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.paramsList"]},{"name":"open override val paramsList: List>","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.paramsList","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/params-list.html","searchKeys":["paramsList","open override val paramsList: List>","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.paramsList"]},{"name":"open override val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.model.PaymentIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method.html","searchKeys":["paymentMethod","open override val paymentMethod: PaymentMethod? = null","com.stripe.android.model.PaymentIntent.paymentMethod"]},{"name":"open override val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.model.SetupIntent.paymentMethod","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method.html","searchKeys":["paymentMethod","open override val paymentMethod: PaymentMethod? = null","com.stripe.android.model.SetupIntent.paymentMethod"]},{"name":"open override val paymentMethodCard: PaymentMethodCreateParams.Card?","description":"com.stripe.android.view.CardInputWidget.paymentMethodCard","location":"payments-core/com.stripe.android.view/-card-input-widget/payment-method-card.html","searchKeys":["paymentMethodCard","open override val paymentMethodCard: PaymentMethodCreateParams.Card?","com.stripe.android.view.CardInputWidget.paymentMethodCard"]},{"name":"open override val paymentMethodCard: PaymentMethodCreateParams.Card?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodCard","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-card.html","searchKeys":["paymentMethodCard","open override val paymentMethodCard: PaymentMethodCreateParams.Card?","com.stripe.android.view.CardMultilineWidget.paymentMethodCard"]},{"name":"open override val paymentMethodCreateParams: PaymentMethodCreateParams?","description":"com.stripe.android.view.CardInputWidget.paymentMethodCreateParams","location":"payments-core/com.stripe.android.view/-card-input-widget/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","open override val paymentMethodCreateParams: PaymentMethodCreateParams?","com.stripe.android.view.CardInputWidget.paymentMethodCreateParams"]},{"name":"open override val paymentMethodCreateParams: PaymentMethodCreateParams?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodCreateParams","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","open override val paymentMethodCreateParams: PaymentMethodCreateParams?","com.stripe.android.view.CardMultilineWidget.paymentMethodCreateParams"]},{"name":"open override val paymentMethodId: String?","description":"com.stripe.android.model.SetupIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method-id.html","searchKeys":["paymentMethodId","open override val paymentMethodId: String?","com.stripe.android.model.SetupIntent.paymentMethodId"]},{"name":"open override val paymentMethodId: String? = null","description":"com.stripe.android.model.PaymentIntent.paymentMethodId","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method-id.html","searchKeys":["paymentMethodId","open override val paymentMethodId: String? = null","com.stripe.android.model.PaymentIntent.paymentMethodId"]},{"name":"open override val paymentMethodTypes: List","description":"com.stripe.android.model.PaymentIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-payment-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","open override val paymentMethodTypes: List","com.stripe.android.model.PaymentIntent.paymentMethodTypes"]},{"name":"open override val paymentMethodTypes: List","description":"com.stripe.android.model.SetupIntent.paymentMethodTypes","location":"payments-core/com.stripe.android.model/-setup-intent/payment-method-types.html","searchKeys":["paymentMethodTypes","open override val paymentMethodTypes: List","com.stripe.android.model.SetupIntent.paymentMethodTypes"]},{"name":"open override val status: StripeIntent.Status?","description":"com.stripe.android.model.SetupIntent.status","location":"payments-core/com.stripe.android.model/-setup-intent/status.html","searchKeys":["status","open override val status: StripeIntent.Status?","com.stripe.android.model.SetupIntent.status"]},{"name":"open override val status: StripeIntent.Status? = null","description":"com.stripe.android.model.PaymentIntent.status","location":"payments-core/com.stripe.android.model/-payment-intent/status.html","searchKeys":["status","open override val status: StripeIntent.Status? = null","com.stripe.android.model.PaymentIntent.status"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerBankAccount.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-bank-account/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerBankAccount.tokenizationMethod"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerCard.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-card/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerCard.tokenizationMethod"]},{"name":"open override val tokenizationMethod: TokenizationMethod?","description":"com.stripe.android.model.CustomerSource.tokenizationMethod","location":"payments-core/com.stripe.android.model/-customer-source/tokenization-method.html","searchKeys":["tokenizationMethod","open override val tokenizationMethod: TokenizationMethod?","com.stripe.android.model.CustomerSource.tokenizationMethod"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.AuBecsDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.BacsDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.BacsDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Card.type","location":"payments-core/com.stripe.android.model/-payment-method/-card/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Card.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.CardPresent.type","location":"payments-core/com.stripe.android.model/-payment-method/-card-present/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.CardPresent.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Fpx.type","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Fpx.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Ideal.type","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Ideal.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Netbanking.type","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Netbanking.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.SepaDebit.type","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.SepaDebit.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Sofort.type","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Sofort.type"]},{"name":"open override val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethod.Upi.type","location":"payments-core/com.stripe.android.model/-payment-method/-upi/type.html","searchKeys":["type","open override val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethod.Upi.type"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.AccountParams.typeDataParams","location":"payments-core/com.stripe.android.model/-account-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.AccountParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.BankAccountTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-bank-account-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.BankAccountTokenParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.CardParams.typeDataParams","location":"payments-core/com.stripe.android.model/-card-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.CardParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.CvcTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-cvc-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.CvcTokenParams.typeDataParams"]},{"name":"open override val typeDataParams: Map","description":"com.stripe.android.model.PersonTokenParams.typeDataParams","location":"payments-core/com.stripe.android.model/-person-token-params/type-data-params.html","searchKeys":["typeDataParams","open override val typeDataParams: Map","com.stripe.android.model.PersonTokenParams.typeDataParams"]},{"name":"open override var returnUrl: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/return-url.html","searchKeys":["returnUrl","open override var returnUrl: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.returnUrl"]},{"name":"open override var returnUrl: String? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.returnUrl","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/return-url.html","searchKeys":["returnUrl","open override var returnUrl: String? = null","com.stripe.android.model.ConfirmSetupIntentParams.returnUrl"]},{"name":"override fun setOnFocusChangeListener(listener: View.OnFocusChangeListener?)","description":"com.stripe.android.view.StripeEditText.setOnFocusChangeListener","location":"payments-core/com.stripe.android.view/-stripe-edit-text/set-on-focus-change-listener.html","searchKeys":["setOnFocusChangeListener","override fun setOnFocusChangeListener(listener: View.OnFocusChangeListener?)","com.stripe.android.view.StripeEditText.setOnFocusChangeListener"]},{"name":"sealed class Args : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncherContract.Args","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher-contract/-args/index.html","searchKeys":["Args","sealed class Args : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncherContract.Args"]},{"name":"sealed class AuthActivityStarterHost","description":"com.stripe.android.view.AuthActivityStarterHost","location":"payments-core/com.stripe.android.view/-auth-activity-starter-host/index.html","searchKeys":["AuthActivityStarterHost","sealed class AuthActivityStarterHost","com.stripe.android.view.AuthActivityStarterHost"]},{"name":"sealed class BusinessTypeParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.AccountParams.BusinessTypeParams","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/index.html","searchKeys":["BusinessTypeParams","sealed class BusinessTypeParams : StripeParamsModel, Parcelable","com.stripe.android.model.AccountParams.BusinessTypeParams"]},{"name":"sealed class CustomerPaymentSource : StripeModel","description":"com.stripe.android.model.CustomerPaymentSource","location":"payments-core/com.stripe.android.model/-customer-payment-source/index.html","searchKeys":["CustomerPaymentSource","sealed class CustomerPaymentSource : StripeModel","com.stripe.android.model.CustomerPaymentSource"]},{"name":"sealed class ExpirationDate","description":"com.stripe.android.model.ExpirationDate","location":"payments-core/com.stripe.android.model/-expiration-date/index.html","searchKeys":["ExpirationDate","sealed class ExpirationDate","com.stripe.android.model.ExpirationDate"]},{"name":"sealed class NextActionData : StripeModel","description":"com.stripe.android.model.StripeIntent.NextActionData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/index.html","searchKeys":["NextActionData","sealed class NextActionData : StripeModel","com.stripe.android.model.StripeIntent.NextActionData"]},{"name":"sealed class PaymentFlowResult","description":"com.stripe.android.payments.PaymentFlowResult","location":"payments-core/com.stripe.android.payments/-payment-flow-result/index.html","searchKeys":["PaymentFlowResult","sealed class PaymentFlowResult","com.stripe.android.payments.PaymentFlowResult"]},{"name":"sealed class PaymentMethodOptionsParams : StripeParamsModel, Parcelable","description":"com.stripe.android.model.PaymentMethodOptionsParams","location":"payments-core/com.stripe.android.model/-payment-method-options-params/index.html","searchKeys":["PaymentMethodOptionsParams","sealed class PaymentMethodOptionsParams : StripeParamsModel, Parcelable","com.stripe.android.model.PaymentMethodOptionsParams"]},{"name":"sealed class PaymentSheetResult : Parcelable","description":"com.stripe.android.paymentsheet.PaymentSheetResult","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/index.html","searchKeys":["PaymentSheetResult","sealed class PaymentSheetResult : Parcelable","com.stripe.android.paymentsheet.PaymentSheetResult"]},{"name":"sealed class Result","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/index.html","searchKeys":["Result","sealed class Result","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result"]},{"name":"sealed class Result : ActivityStarter.Result","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/index.html","searchKeys":["Result","sealed class Result : ActivityStarter.Result","com.stripe.android.view.AddPaymentMethodActivityStarter.Result"]},{"name":"sealed class Result : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/index.html","searchKeys":["Result","sealed class Result : Parcelable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result"]},{"name":"sealed class Result : Parcelable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/index.html","searchKeys":["Result","sealed class Result : Parcelable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result"]},{"name":"sealed class SdkData : StripeIntent.NextActionData","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/index.html","searchKeys":["SdkData","sealed class SdkData : StripeIntent.NextActionData","com.stripe.android.model.StripeIntent.NextActionData.SdkData"]},{"name":"sealed class SourceTypeModel : StripeModel","description":"com.stripe.android.model.SourceTypeModel","location":"payments-core/com.stripe.android.model/-source-type-model/index.html","searchKeys":["SourceTypeModel","sealed class SourceTypeModel : StripeModel","com.stripe.android.model.SourceTypeModel"]},{"name":"sealed class Type : StripeParamsModel, Parcelable","description":"com.stripe.android.model.MandateDataParams.Type","location":"payments-core/com.stripe.android.model/-mandate-data-params/-type/index.html","searchKeys":["Type","sealed class Type : StripeParamsModel, Parcelable","com.stripe.android.model.MandateDataParams.Type"]},{"name":"sealed class TypeData : StripeModel","description":"com.stripe.android.model.PaymentMethod.TypeData","location":"payments-core/com.stripe.android.model/-payment-method/-type-data/index.html","searchKeys":["TypeData","sealed class TypeData : StripeModel","com.stripe.android.model.PaymentMethod.TypeData"]},{"name":"sealed class Wallet : StripeModel","description":"com.stripe.android.model.wallets.Wallet","location":"payments-core/com.stripe.android.model.wallets/-wallet/index.html","searchKeys":["Wallet","sealed class Wallet : StripeModel","com.stripe.android.model.wallets.Wallet"]},{"name":"suspend fun Stripe.confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId): PaymentIntentResult","description":"com.stripe.android.confirmAlipayPayment","location":"payments-core/com.stripe.android/confirm-alipay-payment.html","searchKeys":["confirmAlipayPayment","suspend fun Stripe.confirmAlipayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, authenticator: AlipayAuthenticator, stripeAccountId: String? = this.stripeAccountId): PaymentIntentResult","com.stripe.android.confirmAlipayPayment"]},{"name":"suspend fun Stripe.confirmPaymentIntent(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent","description":"com.stripe.android.confirmPaymentIntent","location":"payments-core/com.stripe.android/confirm-payment-intent.html","searchKeys":["confirmPaymentIntent","suspend fun Stripe.confirmPaymentIntent(confirmPaymentIntentParams: ConfirmPaymentIntentParams, idempotencyKey: String? = null): PaymentIntent","com.stripe.android.confirmPaymentIntent"]},{"name":"suspend fun Stripe.confirmSetupIntent(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent","description":"com.stripe.android.confirmSetupIntent","location":"payments-core/com.stripe.android/confirm-setup-intent.html","searchKeys":["confirmSetupIntent","suspend fun Stripe.confirmSetupIntent(confirmSetupIntentParams: ConfirmSetupIntentParams, idempotencyKey: String? = null): SetupIntent","com.stripe.android.confirmSetupIntent"]},{"name":"suspend fun Stripe.confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId): WeChatPayNextAction","description":"com.stripe.android.confirmWeChatPayPayment","location":"payments-core/com.stripe.android/confirm-we-chat-pay-payment.html","searchKeys":["confirmWeChatPayPayment","suspend fun Stripe.confirmWeChatPayPayment(confirmPaymentIntentParams: ConfirmPaymentIntentParams, stripeAccountId: String? = this.stripeAccountId): WeChatPayNextAction","com.stripe.android.confirmWeChatPayPayment"]},{"name":"suspend fun Stripe.createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createAccountToken","location":"payments-core/com.stripe.android/create-account-token.html","searchKeys":["createAccountToken","suspend fun Stripe.createAccountToken(accountParams: AccountParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createAccountToken"]},{"name":"suspend fun Stripe.createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createBankAccountToken","location":"payments-core/com.stripe.android/create-bank-account-token.html","searchKeys":["createBankAccountToken","suspend fun Stripe.createBankAccountToken(bankAccountTokenParams: BankAccountTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createBankAccountToken"]},{"name":"suspend fun Stripe.createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createCardToken","location":"payments-core/com.stripe.android/create-card-token.html","searchKeys":["createCardToken","suspend fun Stripe.createCardToken(cardParams: CardParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createCardToken"]},{"name":"suspend fun Stripe.createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createCvcUpdateToken","location":"payments-core/com.stripe.android/create-cvc-update-token.html","searchKeys":["createCvcUpdateToken","suspend fun Stripe.createCvcUpdateToken(cvc: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createCvcUpdateToken"]},{"name":"suspend fun Stripe.createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","description":"com.stripe.android.createFile","location":"payments-core/com.stripe.android/create-file.html","searchKeys":["createFile","suspend fun Stripe.createFile(fileParams: StripeFileParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): StripeFile","com.stripe.android.createFile"]},{"name":"suspend fun Stripe.createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod","description":"com.stripe.android.createPaymentMethod","location":"payments-core/com.stripe.android/create-payment-method.html","searchKeys":["createPaymentMethod","suspend fun Stripe.createPaymentMethod(paymentMethodCreateParams: PaymentMethodCreateParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): PaymentMethod","com.stripe.android.createPaymentMethod"]},{"name":"suspend fun Stripe.createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createPersonToken","location":"payments-core/com.stripe.android/create-person-token.html","searchKeys":["createPersonToken","suspend fun Stripe.createPersonToken(params: PersonTokenParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createPersonToken"]},{"name":"suspend fun Stripe.createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","description":"com.stripe.android.createPiiToken","location":"payments-core/com.stripe.android/create-pii-token.html","searchKeys":["createPiiToken","suspend fun Stripe.createPiiToken(personalId: String, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Token","com.stripe.android.createPiiToken"]},{"name":"suspend fun Stripe.createRadarSession(): RadarSession","description":"com.stripe.android.createRadarSession","location":"payments-core/com.stripe.android/create-radar-session.html","searchKeys":["createRadarSession","suspend fun Stripe.createRadarSession(): RadarSession","com.stripe.android.createRadarSession"]},{"name":"suspend fun Stripe.createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source","description":"com.stripe.android.createSource","location":"payments-core/com.stripe.android/create-source.html","searchKeys":["createSource","suspend fun Stripe.createSource(sourceParams: SourceParams, idempotencyKey: String? = null, stripeAccountId: String? = this.stripeAccountId): Source","com.stripe.android.createSource"]},{"name":"suspend fun Stripe.getAuthenticateSourceResult(requestCode: Int, data: Intent): Source","description":"com.stripe.android.getAuthenticateSourceResult","location":"payments-core/com.stripe.android/get-authenticate-source-result.html","searchKeys":["getAuthenticateSourceResult","suspend fun Stripe.getAuthenticateSourceResult(requestCode: Int, data: Intent): Source","com.stripe.android.getAuthenticateSourceResult"]},{"name":"suspend fun Stripe.getPaymentIntentResult(requestCode: Int, data: Intent): PaymentIntentResult","description":"com.stripe.android.getPaymentIntentResult","location":"payments-core/com.stripe.android/get-payment-intent-result.html","searchKeys":["getPaymentIntentResult","suspend fun Stripe.getPaymentIntentResult(requestCode: Int, data: Intent): PaymentIntentResult","com.stripe.android.getPaymentIntentResult"]},{"name":"suspend fun Stripe.getSetupIntentResult(requestCode: Int, data: Intent): SetupIntentResult","description":"com.stripe.android.getSetupIntentResult","location":"payments-core/com.stripe.android/get-setup-intent-result.html","searchKeys":["getSetupIntentResult","suspend fun Stripe.getSetupIntentResult(requestCode: Int, data: Intent): SetupIntentResult","com.stripe.android.getSetupIntentResult"]},{"name":"suspend fun Stripe.retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent","description":"com.stripe.android.retrievePaymentIntent","location":"payments-core/com.stripe.android/retrieve-payment-intent.html","searchKeys":["retrievePaymentIntent","suspend fun Stripe.retrievePaymentIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): PaymentIntent","com.stripe.android.retrievePaymentIntent"]},{"name":"suspend fun Stripe.retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent","description":"com.stripe.android.retrieveSetupIntent","location":"payments-core/com.stripe.android/retrieve-setup-intent.html","searchKeys":["retrieveSetupIntent","suspend fun Stripe.retrieveSetupIntent(clientSecret: String, stripeAccountId: String? = this.stripeAccountId): SetupIntent","com.stripe.android.retrieveSetupIntent"]},{"name":"suspend fun Stripe.retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source","description":"com.stripe.android.retrieveSource","location":"payments-core/com.stripe.android/retrieve-source.html","searchKeys":["retrieveSource","suspend fun Stripe.retrieveSource(sourceId: String, clientSecret: String, stripeAccountId: String? = this.stripeAccountId): Source","com.stripe.android.retrieveSource"]},{"name":"val API_VERSION: String","description":"com.stripe.android.Stripe.Companion.API_VERSION","location":"payments-core/com.stripe.android/-stripe/-companion/-a-p-i_-v-e-r-s-i-o-n.html","searchKeys":["API_VERSION","val API_VERSION: String","com.stripe.android.Stripe.Companion.API_VERSION"]},{"name":"val DEFAULT: BankAccountTokenParams","description":"com.stripe.android.model.BankAccountTokenParamsFixtures.DEFAULT","location":"payments-core/com.stripe.android.model/-bank-account-token-params-fixtures/-d-e-f-a-u-l-t.html","searchKeys":["DEFAULT","val DEFAULT: BankAccountTokenParams","com.stripe.android.model.BankAccountTokenParamsFixtures.DEFAULT"]},{"name":"val accountHolderName: String? = null","description":"com.stripe.android.model.BankAccount.accountHolderName","location":"payments-core/com.stripe.android.model/-bank-account/account-holder-name.html","searchKeys":["accountHolderName","val accountHolderName: String? = null","com.stripe.android.model.BankAccount.accountHolderName"]},{"name":"val accountHolderType: BankAccount.Type? = null","description":"com.stripe.android.model.BankAccount.accountHolderType","location":"payments-core/com.stripe.android.model/-bank-account/account-holder-type.html","searchKeys":["accountHolderType","val accountHolderType: BankAccount.Type? = null","com.stripe.android.model.BankAccount.accountHolderType"]},{"name":"val accountHolderType: String?","description":"com.stripe.android.model.PaymentMethod.Fpx.accountHolderType","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/account-holder-type.html","searchKeys":["accountHolderType","val accountHolderType: String?","com.stripe.android.model.PaymentMethod.Fpx.accountHolderType"]},{"name":"val addPaymentMethodFooterLayoutId: Int","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.addPaymentMethodFooterLayoutId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/add-payment-method-footer-layout-id.html","searchKeys":["addPaymentMethodFooterLayoutId","val addPaymentMethodFooterLayoutId: Int","com.stripe.android.view.PaymentMethodsActivityStarter.Args.addPaymentMethodFooterLayoutId"]},{"name":"val addPaymentMethodFooterLayoutId: Int = 0","description":"com.stripe.android.PaymentSessionConfig.addPaymentMethodFooterLayoutId","location":"payments-core/com.stripe.android/-payment-session-config/add-payment-method-footer-layout-id.html","searchKeys":["addPaymentMethodFooterLayoutId","val addPaymentMethodFooterLayoutId: Int = 0","com.stripe.android.PaymentSessionConfig.addPaymentMethodFooterLayoutId"]},{"name":"val additionalDocument: PersonTokenParams.Document? = null","description":"com.stripe.android.model.PersonTokenParams.Verification.additionalDocument","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/additional-document.html","searchKeys":["additionalDocument","val additionalDocument: PersonTokenParams.Document? = null","com.stripe.android.model.PersonTokenParams.Verification.additionalDocument"]},{"name":"val address: Address","description":"com.stripe.android.model.PaymentIntent.Shipping.address","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/address.html","searchKeys":["address","val address: Address","com.stripe.android.model.PaymentIntent.Shipping.address"]},{"name":"val address: Address","description":"com.stripe.android.model.SourceOrderParams.Shipping.address","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/address.html","searchKeys":["address","val address: Address","com.stripe.android.model.SourceOrderParams.Shipping.address"]},{"name":"val address: Address?","description":"com.stripe.android.model.Source.Owner.address","location":"payments-core/com.stripe.android.model/-source/-owner/address.html","searchKeys":["address","val address: Address?","com.stripe.android.model.Source.Owner.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.GooglePayResult.address","location":"payments-core/com.stripe.android.model/-google-pay-result/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.GooglePayResult.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.address","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.PaymentMethod.BillingDetails.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.PersonTokenParams.address","location":"payments-core/com.stripe.android.model/-person-token-params/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.PersonTokenParams.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.ShippingInformation.address","location":"payments-core/com.stripe.android.model/-shipping-information/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.ShippingInformation.address"]},{"name":"val address: Address? = null","description":"com.stripe.android.model.SourceOrder.Shipping.address","location":"payments-core/com.stripe.android.model/-source-order/-shipping/address.html","searchKeys":["address","val address: Address? = null","com.stripe.android.model.SourceOrder.Shipping.address"]},{"name":"val address: String?","description":"com.stripe.android.model.Source.Receiver.address","location":"payments-core/com.stripe.android.model/-source/-receiver/address.html","searchKeys":["address","val address: String?","com.stripe.android.model.Source.Receiver.address"]},{"name":"val addressCity: String? = null","description":"com.stripe.android.model.Card.addressCity","location":"payments-core/com.stripe.android.model/-card/address-city.html","searchKeys":["addressCity","val addressCity: String? = null","com.stripe.android.model.Card.addressCity"]},{"name":"val addressCountry: String? = null","description":"com.stripe.android.model.Card.addressCountry","location":"payments-core/com.stripe.android.model/-card/address-country.html","searchKeys":["addressCountry","val addressCountry: String? = null","com.stripe.android.model.Card.addressCountry"]},{"name":"val addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.PersonTokenParams.addressKana","location":"payments-core/com.stripe.android.model/-person-token-params/address-kana.html","searchKeys":["addressKana","val addressKana: AddressJapanParams? = null","com.stripe.android.model.PersonTokenParams.addressKana"]},{"name":"val addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.PersonTokenParams.addressKanji","location":"payments-core/com.stripe.android.model/-person-token-params/address-kanji.html","searchKeys":["addressKanji","val addressKanji: AddressJapanParams? = null","com.stripe.android.model.PersonTokenParams.addressKanji"]},{"name":"val addressLine1: String? = null","description":"com.stripe.android.model.Card.addressLine1","location":"payments-core/com.stripe.android.model/-card/address-line1.html","searchKeys":["addressLine1","val addressLine1: String? = null","com.stripe.android.model.Card.addressLine1"]},{"name":"val addressLine1Check: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.addressLine1Check","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String?","com.stripe.android.model.PaymentMethod.Card.Checks.addressLine1Check"]},{"name":"val addressLine1Check: String? = null","description":"com.stripe.android.model.Card.addressLine1Check","location":"payments-core/com.stripe.android.model/-card/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String? = null","com.stripe.android.model.Card.addressLine1Check"]},{"name":"val addressLine1Check: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.addressLine1Check","location":"payments-core/com.stripe.android.model/-source-type-model/-card/address-line1-check.html","searchKeys":["addressLine1Check","val addressLine1Check: String? = null","com.stripe.android.model.SourceTypeModel.Card.addressLine1Check"]},{"name":"val addressLine2: String? = null","description":"com.stripe.android.model.Card.addressLine2","location":"payments-core/com.stripe.android.model/-card/address-line2.html","searchKeys":["addressLine2","val addressLine2: String? = null","com.stripe.android.model.Card.addressLine2"]},{"name":"val addressPostalCodeCheck: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.addressPostalCodeCheck","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/address-postal-code-check.html","searchKeys":["addressPostalCodeCheck","val addressPostalCodeCheck: String?","com.stripe.android.model.PaymentMethod.Card.Checks.addressPostalCodeCheck"]},{"name":"val addressState: String? = null","description":"com.stripe.android.model.Card.addressState","location":"payments-core/com.stripe.android.model/-card/address-state.html","searchKeys":["addressState","val addressState: String? = null","com.stripe.android.model.Card.addressState"]},{"name":"val addressZip: String? = null","description":"com.stripe.android.model.Card.addressZip","location":"payments-core/com.stripe.android.model/-card/address-zip.html","searchKeys":["addressZip","val addressZip: String? = null","com.stripe.android.model.Card.addressZip"]},{"name":"val addressZipCheck: String? = null","description":"com.stripe.android.model.Card.addressZipCheck","location":"payments-core/com.stripe.android.model/-card/address-zip-check.html","searchKeys":["addressZipCheck","val addressZipCheck: String? = null","com.stripe.android.model.Card.addressZipCheck"]},{"name":"val addressZipCheck: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.addressZipCheck","location":"payments-core/com.stripe.android.model/-source-type-model/-card/address-zip-check.html","searchKeys":["addressZipCheck","val addressZipCheck: String? = null","com.stripe.android.model.SourceTypeModel.Card.addressZipCheck"]},{"name":"val allowedShippingCountryCodes: Set","description":"com.stripe.android.PaymentSessionConfig.allowedShippingCountryCodes","location":"payments-core/com.stripe.android/-payment-session-config/allowed-shipping-country-codes.html","searchKeys":["allowedShippingCountryCodes","val allowedShippingCountryCodes: Set","com.stripe.android.PaymentSessionConfig.allowedShippingCountryCodes"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrder.Item.amount","location":"payments-core/com.stripe.android.model/-source-order/-item/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrder.Item.amount"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrder.amount","location":"payments-core/com.stripe.android.model/-source-order/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrder.amount"]},{"name":"val amount: Int? = null","description":"com.stripe.android.model.SourceOrderParams.Item.amount","location":"payments-core/com.stripe.android.model/-source-order-params/-item/amount.html","searchKeys":["amount","val amount: Int? = null","com.stripe.android.model.SourceOrderParams.Item.amount"]},{"name":"val amount: Long","description":"com.stripe.android.model.ShippingMethod.amount","location":"payments-core/com.stripe.android.model/-shipping-method/amount.html","searchKeys":["amount","val amount: Long","com.stripe.android.model.ShippingMethod.amount"]},{"name":"val amount: Long?","description":"com.stripe.android.model.PaymentIntent.amount","location":"payments-core/com.stripe.android.model/-payment-intent/amount.html","searchKeys":["amount","val amount: Long?","com.stripe.android.model.PaymentIntent.amount"]},{"name":"val amount: Long? = null","description":"com.stripe.android.model.Source.amount","location":"payments-core/com.stripe.android.model/-source/amount.html","searchKeys":["amount","val amount: Long? = null","com.stripe.android.model.Source.amount"]},{"name":"val amountCharged: Long","description":"com.stripe.android.model.Source.Receiver.amountCharged","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-charged.html","searchKeys":["amountCharged","val amountCharged: Long","com.stripe.android.model.Source.Receiver.amountCharged"]},{"name":"val amountReceived: Long","description":"com.stripe.android.model.Source.Receiver.amountReceived","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-received.html","searchKeys":["amountReceived","val amountReceived: Long","com.stripe.android.model.Source.Receiver.amountReceived"]},{"name":"val amountReturned: Long","description":"com.stripe.android.model.Source.Receiver.amountReturned","location":"payments-core/com.stripe.android.model/-source/-receiver/amount-returned.html","searchKeys":["amountReturned","val amountReturned: Long","com.stripe.android.model.Source.Receiver.amountReturned"]},{"name":"val apiParameterMap: Map","description":"com.stripe.android.model.SourceParams.apiParameterMap","location":"payments-core/com.stripe.android.model/-source-params/api-parameter-map.html","searchKeys":["apiParameterMap","val apiParameterMap: Map","com.stripe.android.model.SourceParams.apiParameterMap"]},{"name":"val appId: String?","description":"com.stripe.android.model.WeChat.appId","location":"payments-core/com.stripe.android.model/-we-chat/app-id.html","searchKeys":["appId","val appId: String?","com.stripe.android.model.WeChat.appId"]},{"name":"val attemptsRemaining: Int","description":"com.stripe.android.model.Source.CodeVerification.attemptsRemaining","location":"payments-core/com.stripe.android.model/-source/-code-verification/attempts-remaining.html","searchKeys":["attemptsRemaining","val attemptsRemaining: Int","com.stripe.android.model.Source.CodeVerification.attemptsRemaining"]},{"name":"val auBecsDebit: PaymentMethod.AuBecsDebit? = null","description":"com.stripe.android.model.PaymentMethod.auBecsDebit","location":"payments-core/com.stripe.android.model/-payment-method/au-becs-debit.html","searchKeys":["auBecsDebit","val auBecsDebit: PaymentMethod.AuBecsDebit? = null","com.stripe.android.model.PaymentMethod.auBecsDebit"]},{"name":"val available: Set","description":"com.stripe.android.model.PaymentMethod.Card.Networks.available","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/available.html","searchKeys":["available","val available: Set","com.stripe.android.model.PaymentMethod.Card.Networks.available"]},{"name":"val back: String? = null","description":"com.stripe.android.model.PersonTokenParams.Document.back","location":"payments-core/com.stripe.android.model/-person-token-params/-document/back.html","searchKeys":["back","val back: String? = null","com.stripe.android.model.PersonTokenParams.Document.back"]},{"name":"val backgroundImageUrl: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.backgroundImageUrl","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/background-image-url.html","searchKeys":["backgroundImageUrl","val backgroundImageUrl: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.backgroundImageUrl"]},{"name":"val bacsDebit: PaymentMethod.BacsDebit? = null","description":"com.stripe.android.model.PaymentMethod.bacsDebit","location":"payments-core/com.stripe.android.model/-payment-method/bacs-debit.html","searchKeys":["bacsDebit","val bacsDebit: PaymentMethod.BacsDebit? = null","com.stripe.android.model.PaymentMethod.bacsDebit"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Fpx.bank","location":"payments-core/com.stripe.android.model/-payment-method/-fpx/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Fpx.bank"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Ideal.bank","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Ideal.bank"]},{"name":"val bank: String?","description":"com.stripe.android.model.PaymentMethod.Netbanking.bank","location":"payments-core/com.stripe.android.model/-payment-method/-netbanking/bank.html","searchKeys":["bank","val bank: String?","com.stripe.android.model.PaymentMethod.Netbanking.bank"]},{"name":"val bankAccount: BankAccount","description":"com.stripe.android.model.CustomerBankAccount.bankAccount","location":"payments-core/com.stripe.android.model/-customer-bank-account/bank-account.html","searchKeys":["bankAccount","val bankAccount: BankAccount","com.stripe.android.model.CustomerBankAccount.bankAccount"]},{"name":"val bankAccount: BankAccount? = null","description":"com.stripe.android.model.Token.bankAccount","location":"payments-core/com.stripe.android.model/-token/bank-account.html","searchKeys":["bankAccount","val bankAccount: BankAccount? = null","com.stripe.android.model.Token.bankAccount"]},{"name":"val bankCode: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.bankCode","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/bank-code.html","searchKeys":["bankCode","val bankCode: String?","com.stripe.android.model.PaymentMethod.SepaDebit.bankCode"]},{"name":"val bankCode: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.bankCode","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/bank-code.html","searchKeys":["bankCode","val bankCode: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.bankCode"]},{"name":"val bankIdentifierCode: String?","description":"com.stripe.android.model.PaymentMethod.Ideal.bankIdentifierCode","location":"payments-core/com.stripe.android.model/-payment-method/-ideal/bank-identifier-code.html","searchKeys":["bankIdentifierCode","val bankIdentifierCode: String?","com.stripe.android.model.PaymentMethod.Ideal.bankIdentifierCode"]},{"name":"val bankName: String? = null","description":"com.stripe.android.model.BankAccount.bankName","location":"payments-core/com.stripe.android.model/-bank-account/bank-name.html","searchKeys":["bankName","val bankName: String? = null","com.stripe.android.model.BankAccount.bankName"]},{"name":"val billingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.billingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.billingAddress"]},{"name":"val billingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.billingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.billingAddress"]},{"name":"val billingAddress: Address? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingAddress","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-address.html","searchKeys":["billingAddress","val billingAddress: Address? = null","com.stripe.android.model.KlarnaSourceParams.billingAddress"]},{"name":"val billingAddressFields: BillingAddressFields","description":"com.stripe.android.PaymentSessionConfig.billingAddressFields","location":"payments-core/com.stripe.android/-payment-session-config/billing-address-fields.html","searchKeys":["billingAddressFields","val billingAddressFields: BillingAddressFields","com.stripe.android.PaymentSessionConfig.billingAddressFields"]},{"name":"val billingDetails: PaymentMethod.BillingDetails? = null","description":"com.stripe.android.model.PaymentMethod.billingDetails","location":"payments-core/com.stripe.android.model/-payment-method/billing-details.html","searchKeys":["billingDetails","val billingDetails: PaymentMethod.BillingDetails? = null","com.stripe.android.model.PaymentMethod.billingDetails"]},{"name":"val billingDob: DateOfBirth? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingDob","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-dob.html","searchKeys":["billingDob","val billingDob: DateOfBirth? = null","com.stripe.android.model.KlarnaSourceParams.billingDob"]},{"name":"val billingEmail: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingEmail","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-email.html","searchKeys":["billingEmail","val billingEmail: String? = null","com.stripe.android.model.KlarnaSourceParams.billingEmail"]},{"name":"val billingFirstName: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingFirstName","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-first-name.html","searchKeys":["billingFirstName","val billingFirstName: String? = null","com.stripe.android.model.KlarnaSourceParams.billingFirstName"]},{"name":"val billingLastName: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingLastName","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-last-name.html","searchKeys":["billingLastName","val billingLastName: String? = null","com.stripe.android.model.KlarnaSourceParams.billingLastName"]},{"name":"val billingPhone: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.billingPhone","location":"payments-core/com.stripe.android.model/-klarna-source-params/billing-phone.html","searchKeys":["billingPhone","val billingPhone: String? = null","com.stripe.android.model.KlarnaSourceParams.billingPhone"]},{"name":"val branchCode: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.branchCode","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/branch-code.html","searchKeys":["branchCode","val branchCode: String?","com.stripe.android.model.PaymentMethod.SepaDebit.branchCode"]},{"name":"val branchCode: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.branchCode","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/branch-code.html","searchKeys":["branchCode","val branchCode: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.branchCode"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.Card.brand","location":"payments-core/com.stripe.android.model/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.Card.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.CardParams.brand","location":"payments-core/com.stripe.android.model/-card-params/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.CardParams.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.PaymentMethod.Card.brand","location":"payments-core/com.stripe.android.model/-payment-method/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.PaymentMethod.Card.brand"]},{"name":"val brand: CardBrand","description":"com.stripe.android.model.SourceTypeModel.Card.brand","location":"payments-core/com.stripe.android.model/-source-type-model/-card/brand.html","searchKeys":["brand","val brand: CardBrand","com.stripe.android.model.SourceTypeModel.Card.brand"]},{"name":"val bsbNumber: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.bsbNumber","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/bsb-number.html","searchKeys":["bsbNumber","val bsbNumber: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.bsbNumber"]},{"name":"val cachedCustomer: Customer?","description":"com.stripe.android.CustomerSession.cachedCustomer","location":"payments-core/com.stripe.android/-customer-session/cached-customer.html","searchKeys":["cachedCustomer","val cachedCustomer: Customer?","com.stripe.android.CustomerSession.cachedCustomer"]},{"name":"val canDeletePaymentMethods: Boolean = true","description":"com.stripe.android.PaymentSessionConfig.canDeletePaymentMethods","location":"payments-core/com.stripe.android/-payment-session-config/can-delete-payment-methods.html","searchKeys":["canDeletePaymentMethods","val canDeletePaymentMethods: Boolean = true","com.stripe.android.PaymentSessionConfig.canDeletePaymentMethods"]},{"name":"val canceledAt: Long = 0L","description":"com.stripe.android.model.PaymentIntent.canceledAt","location":"payments-core/com.stripe.android.model/-payment-intent/canceled-at.html","searchKeys":["canceledAt","val canceledAt: Long = 0L","com.stripe.android.model.PaymentIntent.canceledAt"]},{"name":"val cancellationReason: PaymentIntent.CancellationReason? = null","description":"com.stripe.android.model.PaymentIntent.cancellationReason","location":"payments-core/com.stripe.android.model/-payment-intent/cancellation-reason.html","searchKeys":["cancellationReason","val cancellationReason: PaymentIntent.CancellationReason? = null","com.stripe.android.model.PaymentIntent.cancellationReason"]},{"name":"val cancellationReason: SetupIntent.CancellationReason?","description":"com.stripe.android.model.SetupIntent.cancellationReason","location":"payments-core/com.stripe.android.model/-setup-intent/cancellation-reason.html","searchKeys":["cancellationReason","val cancellationReason: SetupIntent.CancellationReason?","com.stripe.android.model.SetupIntent.cancellationReason"]},{"name":"val captureMethod: PaymentIntent.CaptureMethod","description":"com.stripe.android.model.PaymentIntent.captureMethod","location":"payments-core/com.stripe.android.model/-payment-intent/capture-method.html","searchKeys":["captureMethod","val captureMethod: PaymentIntent.CaptureMethod","com.stripe.android.model.PaymentIntent.captureMethod"]},{"name":"val card: Card","description":"com.stripe.android.model.CustomerCard.card","location":"payments-core/com.stripe.android.model/-customer-card/card.html","searchKeys":["card","val card: Card","com.stripe.android.model.CustomerCard.card"]},{"name":"val card: Card? = null","description":"com.stripe.android.model.Token.card","location":"payments-core/com.stripe.android.model/-token/card.html","searchKeys":["card","val card: Card? = null","com.stripe.android.model.Token.card"]},{"name":"val card: PaymentMethod.Card? = null","description":"com.stripe.android.model.PaymentMethod.card","location":"payments-core/com.stripe.android.model/-payment-method/card.html","searchKeys":["card","val card: PaymentMethod.Card? = null","com.stripe.android.model.PaymentMethod.card"]},{"name":"val cardParams: CardParams?","description":"com.stripe.android.view.CardFormView.cardParams","location":"payments-core/com.stripe.android.view/-card-form-view/card-params.html","searchKeys":["cardParams","val cardParams: CardParams?","com.stripe.android.view.CardFormView.cardParams"]},{"name":"val cardPresent: PaymentMethod.CardPresent? = null","description":"com.stripe.android.model.PaymentMethod.cardPresent","location":"payments-core/com.stripe.android.model/-payment-method/card-present.html","searchKeys":["cardPresent","val cardPresent: PaymentMethod.CardPresent? = null","com.stripe.android.model.PaymentMethod.cardPresent"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.carrier","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.PaymentIntent.Shipping.carrier"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.carrier","location":"payments-core/com.stripe.android.model/-source-order/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.SourceOrder.Shipping.carrier"]},{"name":"val carrier: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.carrier","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/carrier.html","searchKeys":["carrier","val carrier: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.carrier"]},{"name":"val cartTotal: Long = 0L","description":"com.stripe.android.PaymentSessionData.cartTotal","location":"payments-core/com.stripe.android/-payment-session-data/cart-total.html","searchKeys":["cartTotal","val cartTotal: Long = 0L","com.stripe.android.PaymentSessionData.cartTotal"]},{"name":"val charge: String?","description":"com.stripe.android.exception.CardException.charge","location":"payments-core/com.stripe.android.exception/-card-exception/charge.html","searchKeys":["charge","val charge: String?","com.stripe.android.exception.CardException.charge"]},{"name":"val charge: String?","description":"com.stripe.android.model.PaymentIntent.Error.charge","location":"payments-core/com.stripe.android.model/-payment-intent/-error/charge.html","searchKeys":["charge","val charge: String?","com.stripe.android.model.PaymentIntent.Error.charge"]},{"name":"val charge: String? = null","description":"com.stripe.android.StripeError.charge","location":"payments-core/com.stripe.android/-stripe-error/charge.html","searchKeys":["charge","val charge: String? = null","com.stripe.android.StripeError.charge"]},{"name":"val checks: PaymentMethod.Card.Checks? = null","description":"com.stripe.android.model.PaymentMethod.Card.checks","location":"payments-core/com.stripe.android.model/-payment-method/-card/checks.html","searchKeys":["checks","val checks: PaymentMethod.Card.Checks? = null","com.stripe.android.model.PaymentMethod.Card.checks"]},{"name":"val city: String? = null","description":"com.stripe.android.model.Address.city","location":"payments-core/com.stripe.android.model/-address/city.html","searchKeys":["city","val city: String? = null","com.stripe.android.model.Address.city"]},{"name":"val city: String? = null","description":"com.stripe.android.model.AddressJapanParams.city","location":"payments-core/com.stripe.android.model/-address-japan-params/city.html","searchKeys":["city","val city: String? = null","com.stripe.android.model.AddressJapanParams.city"]},{"name":"val clientSecret: String? = null","description":"com.stripe.android.model.Source.clientSecret","location":"payments-core/com.stripe.android.model/-source/client-secret.html","searchKeys":["clientSecret","val clientSecret: String? = null","com.stripe.android.model.Source.clientSecret"]},{"name":"val clientSecret: String? = null","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.clientSecret","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/client-secret.html","searchKeys":["clientSecret","val clientSecret: String? = null","com.stripe.android.payments.PaymentFlowResult.Unvalidated.clientSecret"]},{"name":"val clientToken: String?","description":"com.stripe.android.model.Source.Klarna.clientToken","location":"payments-core/com.stripe.android.model/-source/-klarna/client-token.html","searchKeys":["clientToken","val clientToken: String?","com.stripe.android.model.Source.Klarna.clientToken"]},{"name":"val code: String","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.code","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/code.html","searchKeys":["code","val code: String","com.stripe.android.StripeApiBeta.WeChatPayV1.code"]},{"name":"val code: String","description":"com.stripe.android.StripeApiBeta.code","location":"payments-core/com.stripe.android/-stripe-api-beta/code.html","searchKeys":["code","val code: String","com.stripe.android.StripeApiBeta.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.Company.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.Company.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.Individual.code"]},{"name":"val code: String","description":"com.stripe.android.model.AccountParams.BusinessType.code","location":"payments-core/com.stripe.android.model/-account-params/-business-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.AccountParams.BusinessType.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.code","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.AmericanExpress.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.DinersClub.code","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.DinersClub.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Discover.code","location":"payments-core/com.stripe.android.model/-card-brand/-discover/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Discover.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.JCB.code","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.JCB.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.MasterCard.code","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.MasterCard.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.UnionPay.code","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.UnionPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Unknown.code","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Unknown.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.Visa.code","location":"payments-core/com.stripe.android.model/-card-brand/-visa/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.Visa.code"]},{"name":"val code: String","description":"com.stripe.android.model.CardBrand.code","location":"payments-core/com.stripe.android.model/-card-brand/code.html","searchKeys":["code","val code: String","com.stripe.android.model.CardBrand.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.code"]},{"name":"val code: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.code","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.CardError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentIntent.Error.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Alipay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.BacsDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Bancontact.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Blik.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Blik.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Card.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Card.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.CardPresent.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Eps.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Eps.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Fpx.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Giropay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.GrabPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Ideal.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Netbanking.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Oxxo.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.P24.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.P24.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.PayPal.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.SepaDebit.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Sofort.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.Upi.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.Upi.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.WeChatPay.code"]},{"name":"val code: String","description":"com.stripe.android.model.PaymentMethod.Type.code","location":"payments-core/com.stripe.android.model/-payment-method/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.PaymentMethod.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.ApiError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.CardError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.code"]},{"name":"val code: String","description":"com.stripe.android.model.SetupIntent.Error.Type.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.SetupIntent.Error.Type.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.NextActionType.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.NextActionType.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Canceled.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Canceled.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Processing.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Processing.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresAction.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresCapture.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.Succeeded.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Status.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Status.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OffSession.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OnSession.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.OneTime.code"]},{"name":"val code: String","description":"com.stripe.android.model.StripeIntent.Usage.code","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/code.html","searchKeys":["code","val code: String","com.stripe.android.model.StripeIntent.Usage.code"]},{"name":"val code: String?","description":"com.stripe.android.exception.CardException.code","location":"payments-core/com.stripe.android.exception/-card-exception/code.html","searchKeys":["code","val code: String?","com.stripe.android.exception.CardException.code"]},{"name":"val code: String?","description":"com.stripe.android.model.PaymentIntent.Error.code","location":"payments-core/com.stripe.android.model/-payment-intent/-error/code.html","searchKeys":["code","val code: String?","com.stripe.android.model.PaymentIntent.Error.code"]},{"name":"val code: String?","description":"com.stripe.android.model.SetupIntent.Error.code","location":"payments-core/com.stripe.android.model/-setup-intent/-error/code.html","searchKeys":["code","val code: String?","com.stripe.android.model.SetupIntent.Error.code"]},{"name":"val code: String? = null","description":"com.stripe.android.StripeError.code","location":"payments-core/com.stripe.android/-stripe-error/code.html","searchKeys":["code","val code: String? = null","com.stripe.android.StripeError.code"]},{"name":"val codeVerification: Source.CodeVerification? = null","description":"com.stripe.android.model.Source.codeVerification","location":"payments-core/com.stripe.android.model/-source/code-verification.html","searchKeys":["codeVerification","val codeVerification: Source.CodeVerification? = null","com.stripe.android.model.Source.codeVerification"]},{"name":"val confirmationMethod: PaymentIntent.ConfirmationMethod","description":"com.stripe.android.model.PaymentIntent.confirmationMethod","location":"payments-core/com.stripe.android.model/-payment-intent/confirmation-method.html","searchKeys":["confirmationMethod","val confirmationMethod: PaymentIntent.ConfirmationMethod","com.stripe.android.model.PaymentIntent.confirmationMethod"]},{"name":"val country: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.country","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.PaymentMethod.SepaDebit.country"]},{"name":"val country: String?","description":"com.stripe.android.model.PaymentMethod.Sofort.country","location":"payments-core/com.stripe.android.model/-payment-method/-sofort/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.PaymentMethod.Sofort.country"]},{"name":"val country: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.country","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/country.html","searchKeys":["country","val country: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.Address.country","location":"payments-core/com.stripe.android.model/-address/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.Address.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.AddressJapanParams.country","location":"payments-core/com.stripe.android.model/-address-japan-params/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.AddressJapanParams.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.Card.country","location":"payments-core/com.stripe.android.model/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.Card.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.country","location":"payments-core/com.stripe.android.model/-payment-method/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.PaymentMethod.Card.country"]},{"name":"val country: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.country","location":"payments-core/com.stripe.android.model/-source-type-model/-card/country.html","searchKeys":["country","val country: String? = null","com.stripe.android.model.SourceTypeModel.Card.country"]},{"name":"val countryCode: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.countryCode","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/country-code.html","searchKeys":["countryCode","val countryCode: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.countryCode"]},{"name":"val countryCode: String? = null","description":"com.stripe.android.model.BankAccount.countryCode","location":"payments-core/com.stripe.android.model/-bank-account/country-code.html","searchKeys":["countryCode","val countryCode: String? = null","com.stripe.android.model.BankAccount.countryCode"]},{"name":"val created: Date","description":"com.stripe.android.model.Token.created","location":"payments-core/com.stripe.android.model/-token/created.html","searchKeys":["created","val created: Date","com.stripe.android.model.Token.created"]},{"name":"val created: Long?","description":"com.stripe.android.model.PaymentMethod.created","location":"payments-core/com.stripe.android.model/-payment-method/created.html","searchKeys":["created","val created: Long?","com.stripe.android.model.PaymentMethod.created"]},{"name":"val created: Long? = null","description":"com.stripe.android.model.Source.created","location":"payments-core/com.stripe.android.model/-source/created.html","searchKeys":["created","val created: Long? = null","com.stripe.android.model.Source.created"]},{"name":"val created: Long? = null","description":"com.stripe.android.model.StripeFile.created","location":"payments-core/com.stripe.android.model/-stripe-file/created.html","searchKeys":["created","val created: Long? = null","com.stripe.android.model.StripeFile.created"]},{"name":"val currency: Currency","description":"com.stripe.android.model.ShippingMethod.currency","location":"payments-core/com.stripe.android.model/-shipping-method/currency.html","searchKeys":["currency","val currency: Currency","com.stripe.android.model.ShippingMethod.currency"]},{"name":"val currency: String?","description":"com.stripe.android.model.PaymentIntent.currency","location":"payments-core/com.stripe.android.model/-payment-intent/currency.html","searchKeys":["currency","val currency: String?","com.stripe.android.model.PaymentIntent.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.BankAccount.currency","location":"payments-core/com.stripe.android.model/-bank-account/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.BankAccount.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.Card.currency","location":"payments-core/com.stripe.android.model/-card/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.Card.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.Source.currency","location":"payments-core/com.stripe.android.model/-source/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.Source.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrder.Item.currency","location":"payments-core/com.stripe.android.model/-source-order/-item/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrder.Item.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrder.currency","location":"payments-core/com.stripe.android.model/-source-order/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrder.currency"]},{"name":"val currency: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.currency","location":"payments-core/com.stripe.android.model/-source-order-params/-item/currency.html","searchKeys":["currency","val currency: String? = null","com.stripe.android.model.SourceOrderParams.Item.currency"]},{"name":"val currencyCode: String? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.currencyCode","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/currency-code.html","searchKeys":["currencyCode","val currencyCode: String? = null","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.currencyCode"]},{"name":"val customPaymentMethods: Set","description":"com.stripe.android.model.KlarnaSourceParams.customPaymentMethods","location":"payments-core/com.stripe.android.model/-klarna-source-params/custom-payment-methods.html","searchKeys":["customPaymentMethods","val customPaymentMethods: Set","com.stripe.android.model.KlarnaSourceParams.customPaymentMethods"]},{"name":"val customPaymentMethods: Set","description":"com.stripe.android.model.Source.Klarna.customPaymentMethods","location":"payments-core/com.stripe.android.model/-source/-klarna/custom-payment-methods.html","searchKeys":["customPaymentMethods","val customPaymentMethods: Set","com.stripe.android.model.Source.Klarna.customPaymentMethods"]},{"name":"val customerId: String? = null","description":"com.stripe.android.model.Card.customerId","location":"payments-core/com.stripe.android.model/-card/customer-id.html","searchKeys":["customerId","val customerId: String? = null","com.stripe.android.model.Card.customerId"]},{"name":"val customerId: String? = null","description":"com.stripe.android.model.PaymentMethod.customerId","location":"payments-core/com.stripe.android.model/-payment-method/customer-id.html","searchKeys":["customerId","val customerId: String? = null","com.stripe.android.model.PaymentMethod.customerId"]},{"name":"val cvcCheck: String?","description":"com.stripe.android.model.PaymentMethod.Card.Checks.cvcCheck","location":"payments-core/com.stripe.android.model/-payment-method/-card/-checks/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String?","com.stripe.android.model.PaymentMethod.Card.Checks.cvcCheck"]},{"name":"val cvcCheck: String? = null","description":"com.stripe.android.model.Card.cvcCheck","location":"payments-core/com.stripe.android.model/-card/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String? = null","com.stripe.android.model.Card.cvcCheck"]},{"name":"val cvcCheck: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.cvcCheck","location":"payments-core/com.stripe.android.model/-source-type-model/-card/cvc-check.html","searchKeys":["cvcCheck","val cvcCheck: String? = null","com.stripe.android.model.SourceTypeModel.Card.cvcCheck"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.AmericanExpress.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.DinersClub.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Discover.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Discover.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.JCB.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.JCB.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.MasterCard.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.UnionPay.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Unknown.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Unknown.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.Visa.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.Visa.cvcIcon"]},{"name":"val cvcIcon: Int","description":"com.stripe.android.model.CardBrand.cvcIcon","location":"payments-core/com.stripe.android.model/-card-brand/cvc-icon.html","searchKeys":["cvcIcon","val cvcIcon: Int","com.stripe.android.model.CardBrand.cvcIcon"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.AmericanExpress.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.AmericanExpress.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.DinersClub.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.DinersClub.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Discover.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-discover/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Discover.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.JCB.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.JCB.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.MasterCard.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.MasterCard.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.UnionPay.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.UnionPay.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Unknown.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Unknown.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.Visa.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-visa/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.Visa.cvcLength"]},{"name":"val cvcLength: Set","description":"com.stripe.android.model.CardBrand.cvcLength","location":"payments-core/com.stripe.android.model/-card-brand/cvc-length.html","searchKeys":["cvcLength","val cvcLength: Set","com.stripe.android.model.CardBrand.cvcLength"]},{"name":"val dateOfBirth: DateOfBirth? = null","description":"com.stripe.android.model.PersonTokenParams.dateOfBirth","location":"payments-core/com.stripe.android.model/-person-token-params/date-of-birth.html","searchKeys":["dateOfBirth","val dateOfBirth: DateOfBirth? = null","com.stripe.android.model.PersonTokenParams.dateOfBirth"]},{"name":"val day: Int","description":"com.stripe.android.model.DateOfBirth.day","location":"payments-core/com.stripe.android.model/-date-of-birth/day.html","searchKeys":["day","val day: Int","com.stripe.android.model.DateOfBirth.day"]},{"name":"val declineCode: String?","description":"com.stripe.android.exception.CardException.declineCode","location":"payments-core/com.stripe.android.exception/-card-exception/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.exception.CardException.declineCode"]},{"name":"val declineCode: String?","description":"com.stripe.android.model.PaymentIntent.Error.declineCode","location":"payments-core/com.stripe.android.model/-payment-intent/-error/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.model.PaymentIntent.Error.declineCode"]},{"name":"val declineCode: String?","description":"com.stripe.android.model.SetupIntent.Error.declineCode","location":"payments-core/com.stripe.android.model/-setup-intent/-error/decline-code.html","searchKeys":["declineCode","val declineCode: String?","com.stripe.android.model.SetupIntent.Error.declineCode"]},{"name":"val declineCode: String? = null","description":"com.stripe.android.StripeError.declineCode","location":"payments-core/com.stripe.android/-stripe-error/decline-code.html","searchKeys":["declineCode","val declineCode: String? = null","com.stripe.android.StripeError.declineCode"]},{"name":"val defaultErrorColorInt: Int","description":"com.stripe.android.view.StripeEditText.defaultErrorColorInt","location":"payments-core/com.stripe.android.view/-stripe-edit-text/default-error-color-int.html","searchKeys":["defaultErrorColorInt","val defaultErrorColorInt: Int","com.stripe.android.view.StripeEditText.defaultErrorColorInt"]},{"name":"val defaultSource: String?","description":"com.stripe.android.model.Customer.defaultSource","location":"payments-core/com.stripe.android.model/-customer/default-source.html","searchKeys":["defaultSource","val defaultSource: String?","com.stripe.android.model.Customer.defaultSource"]},{"name":"val description: String?","description":"com.stripe.android.model.Customer.description","location":"payments-core/com.stripe.android.model/-customer/description.html","searchKeys":["description","val description: String?","com.stripe.android.model.Customer.description"]},{"name":"val description: String? = null","description":"com.stripe.android.model.SourceOrder.Item.description","location":"payments-core/com.stripe.android.model/-source-order/-item/description.html","searchKeys":["description","val description: String? = null","com.stripe.android.model.SourceOrder.Item.description"]},{"name":"val description: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.description","location":"payments-core/com.stripe.android.model/-source-order-params/-item/description.html","searchKeys":["description","val description: String? = null","com.stripe.android.model.SourceOrderParams.Item.description"]},{"name":"val detail: String? = null","description":"com.stripe.android.model.ShippingMethod.detail","location":"payments-core/com.stripe.android.model/-shipping-method/detail.html","searchKeys":["detail","val detail: String? = null","com.stripe.android.model.ShippingMethod.detail"]},{"name":"val director: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.director","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/director.html","searchKeys":["director","val director: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.director"]},{"name":"val directoryServerId: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.directoryServerId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/directory-server-id.html","searchKeys":["directoryServerId","val directoryServerId: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.directoryServerId"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.AmericanExpress.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.DinersClub.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.DinersClub.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Discover.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-discover/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Discover.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.JCB.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.JCB.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.MasterCard.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.MasterCard.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.UnionPay.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.UnionPay.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Unknown.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Unknown.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.Visa.displayName","location":"payments-core/com.stripe.android.model/-card-brand/-visa/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.Visa.displayName"]},{"name":"val displayName: String","description":"com.stripe.android.model.CardBrand.displayName","location":"payments-core/com.stripe.android.model/-card-brand/display-name.html","searchKeys":["displayName","val displayName: String","com.stripe.android.model.CardBrand.displayName"]},{"name":"val docUrl: String?","description":"com.stripe.android.model.PaymentIntent.Error.docUrl","location":"payments-core/com.stripe.android.model/-payment-intent/-error/doc-url.html","searchKeys":["docUrl","val docUrl: String?","com.stripe.android.model.PaymentIntent.Error.docUrl"]},{"name":"val docUrl: String?","description":"com.stripe.android.model.SetupIntent.Error.docUrl","location":"payments-core/com.stripe.android.model/-setup-intent/-error/doc-url.html","searchKeys":["docUrl","val docUrl: String?","com.stripe.android.model.SetupIntent.Error.docUrl"]},{"name":"val docUrl: String? = null","description":"com.stripe.android.StripeError.docUrl","location":"payments-core/com.stripe.android/-stripe-error/doc-url.html","searchKeys":["docUrl","val docUrl: String? = null","com.stripe.android.StripeError.docUrl"]},{"name":"val document: PersonTokenParams.Document? = null","description":"com.stripe.android.model.PersonTokenParams.Verification.document","location":"payments-core/com.stripe.android.model/-person-token-params/-verification/document.html","searchKeys":["document","val document: PersonTokenParams.Document? = null","com.stripe.android.model.PersonTokenParams.Verification.document"]},{"name":"val drawableResourceId: Int","description":"com.stripe.android.paymentsheet.model.PaymentOption.drawableResourceId","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/drawable-resource-id.html","searchKeys":["drawableResourceId","val drawableResourceId: Int","com.stripe.android.paymentsheet.model.PaymentOption.drawableResourceId"]},{"name":"val dsCertificateData: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.dsCertificateData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/ds-certificate-data.html","searchKeys":["dsCertificateData","val dsCertificateData: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.dsCertificateData"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-amex-express-checkout-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.AmexExpressCheckoutWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.ApplePayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-apple-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.ApplePayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.GooglePayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-google-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.GooglePayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.SamsungPayWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-samsung-pay-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.SamsungPayWallet.dynamicLast4"]},{"name":"val dynamicLast4: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.dynamicLast4","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.dynamicLast4"]},{"name":"val dynamicLast4: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.dynamicLast4","location":"payments-core/com.stripe.android.model/-source-type-model/-card/dynamic-last4.html","searchKeys":["dynamicLast4","val dynamicLast4: String? = null","com.stripe.android.model.SourceTypeModel.Card.dynamicLast4"]},{"name":"val email: String?","description":"com.stripe.android.model.Customer.email","location":"payments-core/com.stripe.android.model/-customer/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.Customer.email"]},{"name":"val email: String?","description":"com.stripe.android.model.Source.Owner.email","location":"payments-core/com.stripe.android.model/-source/-owner/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.Source.Owner.email"]},{"name":"val email: String?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.email","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.email"]},{"name":"val email: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.email","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/email.html","searchKeys":["email","val email: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.GooglePayResult.email","location":"payments-core/com.stripe.android.model/-google-pay-result/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.GooglePayResult.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.email","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.PersonTokenParams.email","location":"payments-core/com.stripe.android.model/-person-token-params/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.PersonTokenParams.email"]},{"name":"val email: String? = null","description":"com.stripe.android.model.SourceOrder.email","location":"payments-core/com.stripe.android.model/-source-order/email.html","searchKeys":["email","val email: String? = null","com.stripe.android.model.SourceOrder.email"]},{"name":"val environment: GooglePayEnvironment","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.environment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/environment.html","searchKeys":["environment","val environment: GooglePayEnvironment","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.environment"]},{"name":"val environment: GooglePayEnvironment","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.environment","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/environment.html","searchKeys":["environment","val environment: GooglePayEnvironment","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.environment"]},{"name":"val environment: PaymentSheet.GooglePayConfiguration.Environment","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.environment","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/environment.html","searchKeys":["environment","val environment: PaymentSheet.GooglePayConfiguration.Environment","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.environment"]},{"name":"val ephemeralKeySecret: String","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.ephemeralKeySecret","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/ephemeral-key-secret.html","searchKeys":["ephemeralKeySecret","val ephemeralKeySecret: String","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.ephemeralKeySecret"]},{"name":"val error: Throwable","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.error","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.googlepaylauncher.GooglePayLauncher.Result.Failed.error"]},{"name":"val error: Throwable","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.error","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.error"]},{"name":"val error: Throwable","description":"com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.error","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-flow-controller/-result/-failure/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.paymentsheet.PaymentSheet.FlowController.Result.Failure.error"]},{"name":"val error: Throwable","description":"com.stripe.android.paymentsheet.PaymentSheetResult.Failed.error","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-result/-failed/error.html","searchKeys":["error","val error: Throwable","com.stripe.android.paymentsheet.PaymentSheetResult.Failed.error"]},{"name":"val errorCode: Int","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.errorCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-failed/error-code.html","searchKeys":["errorCode","val errorCode: Int","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Failed.errorCode"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.AmericanExpress.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.DinersClub.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Discover.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Discover.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.JCB.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.JCB.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.MasterCard.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.UnionPay.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Unknown.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Unknown.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.Visa.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.Visa.errorIcon"]},{"name":"val errorIcon: Int","description":"com.stripe.android.model.CardBrand.errorIcon","location":"payments-core/com.stripe.android.model/-card-brand/error-icon.html","searchKeys":["errorIcon","val errorIcon: Int","com.stripe.android.model.CardBrand.errorIcon"]},{"name":"val exception: StripeException? = null","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.exception","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/exception.html","searchKeys":["exception","val exception: StripeException? = null","com.stripe.android.payments.PaymentFlowResult.Unvalidated.exception"]},{"name":"val exception: Throwable","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure.exception","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-failure/exception.html","searchKeys":["exception","val exception: Throwable","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Failure.exception"]},{"name":"val executive: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.executive","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/executive.html","searchKeys":["executive","val executive: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.executive"]},{"name":"val expMonth: Int?","description":"com.stripe.android.model.Card.expMonth","location":"payments-core/com.stripe.android.model/-card/exp-month.html","searchKeys":["expMonth","val expMonth: Int?","com.stripe.android.model.Card.expMonth"]},{"name":"val expYear: Int?","description":"com.stripe.android.model.Card.expYear","location":"payments-core/com.stripe.android.model/-card/exp-year.html","searchKeys":["expYear","val expYear: Int?","com.stripe.android.model.Card.expYear"]},{"name":"val expiresAfter: Int = 0","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.expiresAfter","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/expires-after.html","searchKeys":["expiresAfter","val expiresAfter: Int = 0","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.expiresAfter"]},{"name":"val expiryMonth: Int? = null","description":"com.stripe.android.model.PaymentMethod.Card.expiryMonth","location":"payments-core/com.stripe.android.model/-payment-method/-card/expiry-month.html","searchKeys":["expiryMonth","val expiryMonth: Int? = null","com.stripe.android.model.PaymentMethod.Card.expiryMonth"]},{"name":"val expiryMonth: Int? = null","description":"com.stripe.android.model.SourceTypeModel.Card.expiryMonth","location":"payments-core/com.stripe.android.model/-source-type-model/-card/expiry-month.html","searchKeys":["expiryMonth","val expiryMonth: Int? = null","com.stripe.android.model.SourceTypeModel.Card.expiryMonth"]},{"name":"val expiryYear: Int? = null","description":"com.stripe.android.model.PaymentMethod.Card.expiryYear","location":"payments-core/com.stripe.android.model/-payment-method/-card/expiry-year.html","searchKeys":["expiryYear","val expiryYear: Int? = null","com.stripe.android.model.PaymentMethod.Card.expiryYear"]},{"name":"val expiryYear: Int? = null","description":"com.stripe.android.model.SourceTypeModel.Card.expiryYear","location":"payments-core/com.stripe.android.model/-source-type-model/-card/expiry-year.html","searchKeys":["expiryYear","val expiryYear: Int? = null","com.stripe.android.model.SourceTypeModel.Card.expiryYear"]},{"name":"val filename: String? = null","description":"com.stripe.android.model.StripeFile.filename","location":"payments-core/com.stripe.android.model/-stripe-file/filename.html","searchKeys":["filename","val filename: String? = null","com.stripe.android.model.StripeFile.filename"]},{"name":"val fingerPrint: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.fingerPrint","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/finger-print.html","searchKeys":["fingerPrint","val fingerPrint: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.fingerPrint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.fingerprint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.BacsDebit.fingerprint"]},{"name":"val fingerprint: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String?","com.stripe.android.model.PaymentMethod.SepaDebit.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.BankAccount.fingerprint","location":"payments-core/com.stripe.android.model/-bank-account/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.BankAccount.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.Card.fingerprint","location":"payments-core/com.stripe.android.model/-card/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.Card.fingerprint"]},{"name":"val fingerprint: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.fingerprint","location":"payments-core/com.stripe.android.model/-payment-method/-card/fingerprint.html","searchKeys":["fingerprint","val fingerprint: String? = null","com.stripe.android.model.PaymentMethod.Card.fingerprint"]},{"name":"val firstName: String?","description":"com.stripe.android.model.Source.Klarna.firstName","location":"payments-core/com.stripe.android.model/-source/-klarna/first-name.html","searchKeys":["firstName","val firstName: String?","com.stripe.android.model.Source.Klarna.firstName"]},{"name":"val firstName: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstName","location":"payments-core/com.stripe.android.model/-person-token-params/first-name.html","searchKeys":["firstName","val firstName: String? = null","com.stripe.android.model.PersonTokenParams.firstName"]},{"name":"val firstNameKana: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/first-name-kana.html","searchKeys":["firstNameKana","val firstNameKana: String? = null","com.stripe.android.model.PersonTokenParams.firstNameKana"]},{"name":"val firstNameKanji: String? = null","description":"com.stripe.android.model.PersonTokenParams.firstNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/first-name-kanji.html","searchKeys":["firstNameKanji","val firstNameKanji: String? = null","com.stripe.android.model.PersonTokenParams.firstNameKanji"]},{"name":"val flow: Source.Flow? = null","description":"com.stripe.android.model.Source.flow","location":"payments-core/com.stripe.android.model/-source/flow.html","searchKeys":["flow","val flow: Source.Flow? = null","com.stripe.android.model.Source.flow"]},{"name":"val flowOutcome: Int","description":"com.stripe.android.payments.PaymentFlowResult.Unvalidated.flowOutcome","location":"payments-core/com.stripe.android.payments/-payment-flow-result/-unvalidated/flow-outcome.html","searchKeys":["flowOutcome","val flowOutcome: Int","com.stripe.android.payments.PaymentFlowResult.Unvalidated.flowOutcome"]},{"name":"val format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.format","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/format.html","searchKeys":["format","val format: GooglePayPaymentMethodLauncher.BillingAddressConfig.Format","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.format"]},{"name":"val fpx: PaymentMethod.Fpx? = null","description":"com.stripe.android.model.PaymentMethod.fpx","location":"payments-core/com.stripe.android.model/-payment-method/fpx.html","searchKeys":["fpx","val fpx: PaymentMethod.Fpx? = null","com.stripe.android.model.PaymentMethod.fpx"]},{"name":"val front: String? = null","description":"com.stripe.android.model.PersonTokenParams.Document.front","location":"payments-core/com.stripe.android.model/-person-token-params/-document/front.html","searchKeys":["front","val front: String? = null","com.stripe.android.model.PersonTokenParams.Document.front"]},{"name":"val funding: CardFunding? = null","description":"com.stripe.android.model.Card.funding","location":"payments-core/com.stripe.android.model/-card/funding.html","searchKeys":["funding","val funding: CardFunding? = null","com.stripe.android.model.Card.funding"]},{"name":"val funding: CardFunding? = null","description":"com.stripe.android.model.SourceTypeModel.Card.funding","location":"payments-core/com.stripe.android.model/-source-type-model/-card/funding.html","searchKeys":["funding","val funding: CardFunding? = null","com.stripe.android.model.SourceTypeModel.Card.funding"]},{"name":"val funding: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.funding","location":"payments-core/com.stripe.android.model/-payment-method/-card/funding.html","searchKeys":["funding","val funding: String? = null","com.stripe.android.model.PaymentMethod.Card.funding"]},{"name":"val gender: String? = null","description":"com.stripe.android.model.PersonTokenParams.gender","location":"payments-core/com.stripe.android.model/-person-token-params/gender.html","searchKeys":["gender","val gender: String? = null","com.stripe.android.model.PersonTokenParams.gender"]},{"name":"val googlePayConfig: PaymentSheet.GooglePayConfiguration?","description":"com.stripe.android.paymentsheet.PaymentSheetContract.Args.googlePayConfig","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet-contract/-args/google-pay-config.html","searchKeys":["googlePayConfig","val googlePayConfig: PaymentSheet.GooglePayConfiguration?","com.stripe.android.paymentsheet.PaymentSheetContract.Args.googlePayConfig"]},{"name":"val hasMore: Boolean","description":"com.stripe.android.model.Customer.hasMore","location":"payments-core/com.stripe.android.model/-customer/has-more.html","searchKeys":["hasMore","val hasMore: Boolean","com.stripe.android.model.Customer.hasMore"]},{"name":"val hiddenShippingInfoFields: List","description":"com.stripe.android.PaymentSessionConfig.hiddenShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/hidden-shipping-info-fields.html","searchKeys":["hiddenShippingInfoFields","val hiddenShippingInfoFields: List","com.stripe.android.PaymentSessionConfig.hiddenShippingInfoFields"]},{"name":"val hostedVoucherUrl: String? = null","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.hostedVoucherUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/hosted-voucher-url.html","searchKeys":["hostedVoucherUrl","val hostedVoucherUrl: String? = null","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.hostedVoucherUrl"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.icon","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.AmericanExpress.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.DinersClub.icon","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.DinersClub.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Discover.icon","location":"payments-core/com.stripe.android.model/-card-brand/-discover/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Discover.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.JCB.icon","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.JCB.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.MasterCard.icon","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.MasterCard.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.UnionPay.icon","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.UnionPay.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Unknown.icon","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Unknown.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.Visa.icon","location":"payments-core/com.stripe.android.model/-card-brand/-visa/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.Visa.icon"]},{"name":"val icon: Int","description":"com.stripe.android.model.CardBrand.icon","location":"payments-core/com.stripe.android.model/-card-brand/icon.html","searchKeys":["icon","val icon: Int","com.stripe.android.model.CardBrand.icon"]},{"name":"val id: String","description":"com.stripe.android.model.RadarSession.id","location":"payments-core/com.stripe.android.model/-radar-session/id.html","searchKeys":["id","val id: String","com.stripe.android.model.RadarSession.id"]},{"name":"val id: String","description":"com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.id","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-customer-configuration/id.html","searchKeys":["id","val id: String","com.stripe.android.paymentsheet.PaymentSheet.CustomerConfiguration.id"]},{"name":"val id: String?","description":"com.stripe.android.model.Customer.id","location":"payments-core/com.stripe.android.model/-customer/id.html","searchKeys":["id","val id: String?","com.stripe.android.model.Customer.id"]},{"name":"val id: String?","description":"com.stripe.android.model.PaymentMethod.id","location":"payments-core/com.stripe.android.model/-payment-method/id.html","searchKeys":["id","val id: String?","com.stripe.android.model.PaymentMethod.id"]},{"name":"val id: String? = null","description":"com.stripe.android.model.StripeFile.id","location":"payments-core/com.stripe.android.model/-stripe-file/id.html","searchKeys":["id","val id: String? = null","com.stripe.android.model.StripeFile.id"]},{"name":"val idNumber: String? = null","description":"com.stripe.android.model.PersonTokenParams.idNumber","location":"payments-core/com.stripe.android.model/-person-token-params/id-number.html","searchKeys":["idNumber","val idNumber: String? = null","com.stripe.android.model.PersonTokenParams.idNumber"]},{"name":"val ideal: PaymentMethod.Ideal? = null","description":"com.stripe.android.model.PaymentMethod.ideal","location":"payments-core/com.stripe.android.model/-payment-method/ideal.html","searchKeys":["ideal","val ideal: PaymentMethod.Ideal? = null","com.stripe.android.model.PaymentMethod.ideal"]},{"name":"val identifier: String","description":"com.stripe.android.model.ShippingMethod.identifier","location":"payments-core/com.stripe.android.model/-shipping-method/identifier.html","searchKeys":["identifier","val identifier: String","com.stripe.android.model.ShippingMethod.identifier"]},{"name":"val isLiveMode: Boolean? = null","description":"com.stripe.android.model.Source.isLiveMode","location":"payments-core/com.stripe.android.model/-source/is-live-mode.html","searchKeys":["isLiveMode","val isLiveMode: Boolean? = null","com.stripe.android.model.Source.isLiveMode"]},{"name":"val isPaymentReadyToCharge: Boolean","description":"com.stripe.android.PaymentSessionData.isPaymentReadyToCharge","location":"payments-core/com.stripe.android/-payment-session-data/is-payment-ready-to-charge.html","searchKeys":["isPaymentReadyToCharge","val isPaymentReadyToCharge: Boolean","com.stripe.android.PaymentSessionData.isPaymentReadyToCharge"]},{"name":"val isPhoneNumberRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isPhoneNumberRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/is-phone-number-required.html","searchKeys":["isPhoneNumberRequired","val isPhoneNumberRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isPhoneNumberRequired"]},{"name":"val isRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/is-required.html","searchKeys":["isRequired","val isRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.isRequired"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.isReusable"]},{"name":"val isReusable: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.isReusable","location":"payments-core/com.stripe.android.model/-payment-method/-type/is-reusable.html","searchKeys":["isReusable","val isReusable: Boolean","com.stripe.android.model.PaymentMethod.Type.isReusable"]},{"name":"val isShippingInfoRequired: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.isShippingInfoRequired","location":"payments-core/com.stripe.android/-payment-session-config/is-shipping-info-required.html","searchKeys":["isShippingInfoRequired","val isShippingInfoRequired: Boolean = false","com.stripe.android.PaymentSessionConfig.isShippingInfoRequired"]},{"name":"val isShippingMethodRequired: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.isShippingMethodRequired","location":"payments-core/com.stripe.android/-payment-session-config/is-shipping-method-required.html","searchKeys":["isShippingMethodRequired","val isShippingMethodRequired: Boolean = false","com.stripe.android.PaymentSessionConfig.isShippingMethodRequired"]},{"name":"val isSupported: Boolean","description":"com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage.isSupported","location":"payments-core/com.stripe.android.model/-payment-method/-card/-three-d-secure-usage/is-supported.html","searchKeys":["isSupported","val isSupported: Boolean","com.stripe.android.model.PaymentMethod.Card.ThreeDSecureUsage.isSupported"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.isVoucher"]},{"name":"val isVoucher: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.isVoucher","location":"payments-core/com.stripe.android.model/-payment-method/-type/is-voucher.html","searchKeys":["isVoucher","val isVoucher: Boolean","com.stripe.android.model.PaymentMethod.Type.isVoucher"]},{"name":"val itemDescription: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.itemDescription","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/item-description.html","searchKeys":["itemDescription","val itemDescription: String","com.stripe.android.model.KlarnaSourceParams.LineItem.itemDescription"]},{"name":"val itemType: KlarnaSourceParams.LineItem.Type","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.itemType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/item-type.html","searchKeys":["itemType","val itemType: KlarnaSourceParams.LineItem.Type","com.stripe.android.model.KlarnaSourceParams.LineItem.itemType"]},{"name":"val items: List","description":"com.stripe.android.model.SourceOrder.items","location":"payments-core/com.stripe.android.model/-source-order/items.html","searchKeys":["items","val items: List","com.stripe.android.model.SourceOrder.items"]},{"name":"val items: List? = null","description":"com.stripe.android.model.SourceOrderParams.items","location":"payments-core/com.stripe.android.model/-source-order-params/items.html","searchKeys":["items","val items: List? = null","com.stripe.android.model.SourceOrderParams.items"]},{"name":"val keyId: String?","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.keyId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/key-id.html","searchKeys":["keyId","val keyId: String?","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.keyId"]},{"name":"val klarna: Source.Klarna","description":"com.stripe.android.model.Source.klarna","location":"payments-core/com.stripe.android.model/-source/klarna.html","searchKeys":["klarna","val klarna: Source.Klarna","com.stripe.android.model.Source.klarna"]},{"name":"val label: String","description":"com.stripe.android.model.ShippingMethod.label","location":"payments-core/com.stripe.android.model/-shipping-method/label.html","searchKeys":["label","val label: String","com.stripe.android.model.ShippingMethod.label"]},{"name":"val label: String","description":"com.stripe.android.paymentsheet.model.PaymentOption.label","location":"payments-core/com.stripe.android.paymentsheet.model/-payment-option/label.html","searchKeys":["label","val label: String","com.stripe.android.paymentsheet.model.PaymentOption.label"]},{"name":"val last4: String","description":"com.stripe.android.model.CardParams.last4","location":"payments-core/com.stripe.android.model/-card-params/last4.html","searchKeys":["last4","val last4: String","com.stripe.android.model.CardParams.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.AuBecsDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-au-becs-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.AuBecsDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.BacsDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.PaymentMethod.SepaDebit.last4","location":"payments-core/com.stripe.android.model/-payment-method/-sepa-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.PaymentMethod.SepaDebit.last4"]},{"name":"val last4: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.last4","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/last4.html","searchKeys":["last4","val last4: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.BankAccount.last4","location":"payments-core/com.stripe.android.model/-bank-account/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.BankAccount.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.Card.last4","location":"payments-core/com.stripe.android.model/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.Card.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.last4","location":"payments-core/com.stripe.android.model/-payment-method/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.PaymentMethod.Card.last4"]},{"name":"val last4: String? = null","description":"com.stripe.android.model.SourceTypeModel.Card.last4","location":"payments-core/com.stripe.android.model/-source-type-model/-card/last4.html","searchKeys":["last4","val last4: String? = null","com.stripe.android.model.SourceTypeModel.Card.last4"]},{"name":"val lastName: String?","description":"com.stripe.android.model.Source.Klarna.lastName","location":"payments-core/com.stripe.android.model/-source/-klarna/last-name.html","searchKeys":["lastName","val lastName: String?","com.stripe.android.model.Source.Klarna.lastName"]},{"name":"val lastName: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastName","location":"payments-core/com.stripe.android.model/-person-token-params/last-name.html","searchKeys":["lastName","val lastName: String? = null","com.stripe.android.model.PersonTokenParams.lastName"]},{"name":"val lastNameKana: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastNameKana","location":"payments-core/com.stripe.android.model/-person-token-params/last-name-kana.html","searchKeys":["lastNameKana","val lastNameKana: String? = null","com.stripe.android.model.PersonTokenParams.lastNameKana"]},{"name":"val lastNameKanji: String? = null","description":"com.stripe.android.model.PersonTokenParams.lastNameKanji","location":"payments-core/com.stripe.android.model/-person-token-params/last-name-kanji.html","searchKeys":["lastNameKanji","val lastNameKanji: String? = null","com.stripe.android.model.PersonTokenParams.lastNameKanji"]},{"name":"val lastPaymentError: PaymentIntent.Error? = null","description":"com.stripe.android.model.PaymentIntent.lastPaymentError","location":"payments-core/com.stripe.android.model/-payment-intent/last-payment-error.html","searchKeys":["lastPaymentError","val lastPaymentError: PaymentIntent.Error? = null","com.stripe.android.model.PaymentIntent.lastPaymentError"]},{"name":"val lastSetupError: SetupIntent.Error? = null","description":"com.stripe.android.model.SetupIntent.lastSetupError","location":"payments-core/com.stripe.android.model/-setup-intent/last-setup-error.html","searchKeys":["lastSetupError","val lastSetupError: SetupIntent.Error? = null","com.stripe.android.model.SetupIntent.lastSetupError"]},{"name":"val line1: String? = null","description":"com.stripe.android.model.Address.line1","location":"payments-core/com.stripe.android.model/-address/line1.html","searchKeys":["line1","val line1: String? = null","com.stripe.android.model.Address.line1"]},{"name":"val line1: String? = null","description":"com.stripe.android.model.AddressJapanParams.line1","location":"payments-core/com.stripe.android.model/-address-japan-params/line1.html","searchKeys":["line1","val line1: String? = null","com.stripe.android.model.AddressJapanParams.line1"]},{"name":"val line2: String? = null","description":"com.stripe.android.model.Address.line2","location":"payments-core/com.stripe.android.model/-address/line2.html","searchKeys":["line2","val line2: String? = null","com.stripe.android.model.Address.line2"]},{"name":"val line2: String? = null","description":"com.stripe.android.model.AddressJapanParams.line2","location":"payments-core/com.stripe.android.model/-address-japan-params/line2.html","searchKeys":["line2","val line2: String? = null","com.stripe.android.model.AddressJapanParams.line2"]},{"name":"val lineItems: List","description":"com.stripe.android.model.KlarnaSourceParams.lineItems","location":"payments-core/com.stripe.android.model/-klarna-source-params/line-items.html","searchKeys":["lineItems","val lineItems: List","com.stripe.android.model.KlarnaSourceParams.lineItems"]},{"name":"val liveMode: Boolean","description":"com.stripe.android.model.Customer.liveMode","location":"payments-core/com.stripe.android.model/-customer/live-mode.html","searchKeys":["liveMode","val liveMode: Boolean","com.stripe.android.model.Customer.liveMode"]},{"name":"val liveMode: Boolean","description":"com.stripe.android.model.PaymentMethod.liveMode","location":"payments-core/com.stripe.android.model/-payment-method/live-mode.html","searchKeys":["liveMode","val liveMode: Boolean","com.stripe.android.model.PaymentMethod.liveMode"]},{"name":"val livemode: Boolean","description":"com.stripe.android.model.Token.livemode","location":"payments-core/com.stripe.android.model/-token/livemode.html","searchKeys":["livemode","val livemode: Boolean","com.stripe.android.model.Token.livemode"]},{"name":"val logoUrl: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.logoUrl","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/logo-url.html","searchKeys":["logoUrl","val logoUrl: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.logoUrl"]},{"name":"val maidenName: String? = null","description":"com.stripe.android.model.PersonTokenParams.maidenName","location":"payments-core/com.stripe.android.model/-person-token-params/maiden-name.html","searchKeys":["maidenName","val maidenName: String? = null","com.stripe.android.model.PersonTokenParams.maidenName"]},{"name":"val mandateReference: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.mandateReference","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/mandate-reference.html","searchKeys":["mandateReference","val mandateReference: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.mandateReference"]},{"name":"val mandateUrl: String?","description":"com.stripe.android.model.SourceTypeModel.SepaDebit.mandateUrl","location":"payments-core/com.stripe.android.model/-source-type-model/-sepa-debit/mandate-url.html","searchKeys":["mandateUrl","val mandateUrl: String?","com.stripe.android.model.SourceTypeModel.SepaDebit.mandateUrl"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.AmericanExpress.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.DinersClub.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.DinersClub.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Discover.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-discover/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Discover.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.JCB.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.JCB.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.MasterCard.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.MasterCard.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.UnionPay.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.UnionPay.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Unknown.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Unknown.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.Visa.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/-visa/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.Visa.maxCvcLength"]},{"name":"val maxCvcLength: Int","description":"com.stripe.android.model.CardBrand.maxCvcLength","location":"payments-core/com.stripe.android.model/-card-brand/max-cvc-length.html","searchKeys":["maxCvcLength","val maxCvcLength: Int","com.stripe.android.model.CardBrand.maxCvcLength"]},{"name":"val merchantCountryCode: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantCountryCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/merchant-country-code.html","searchKeys":["merchantCountryCode","val merchantCountryCode: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantCountryCode"]},{"name":"val merchantCountryCode: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantCountryCode","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/merchant-country-code.html","searchKeys":["merchantCountryCode","val merchantCountryCode: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantCountryCode"]},{"name":"val merchantName: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantName","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/merchant-name.html","searchKeys":["merchantName","val merchantName: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.merchantName"]},{"name":"val merchantName: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantName","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/merchant-name.html","searchKeys":["merchantName","val merchantName: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.merchantName"]},{"name":"val message: String?","description":"com.stripe.android.model.PaymentIntent.Error.message","location":"payments-core/com.stripe.android.model/-payment-intent/-error/message.html","searchKeys":["message","val message: String?","com.stripe.android.model.PaymentIntent.Error.message"]},{"name":"val message: String?","description":"com.stripe.android.model.SetupIntent.Error.message","location":"payments-core/com.stripe.android.model/-setup-intent/-error/message.html","searchKeys":["message","val message: String?","com.stripe.android.model.SetupIntent.Error.message"]},{"name":"val message: String? = null","description":"com.stripe.android.StripeError.message","location":"payments-core/com.stripe.android/-stripe-error/message.html","searchKeys":["message","val message: String? = null","com.stripe.android.StripeError.message"]},{"name":"val metadata: Map? = null","description":"com.stripe.android.model.PersonTokenParams.metadata","location":"payments-core/com.stripe.android.model/-person-token-params/metadata.html","searchKeys":["metadata","val metadata: Map? = null","com.stripe.android.model.PersonTokenParams.metadata"]},{"name":"val month: Int","description":"com.stripe.android.model.DateOfBirth.month","location":"payments-core/com.stripe.android.model/-date-of-birth/month.html","searchKeys":["month","val month: Int","com.stripe.android.model.DateOfBirth.month"]},{"name":"val month: Int","description":"com.stripe.android.model.ExpirationDate.Validated.month","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/month.html","searchKeys":["month","val month: Int","com.stripe.android.model.ExpirationDate.Validated.month"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.name"]},{"name":"val name: String","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.name","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/name.html","searchKeys":["name","val name: String","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.name"]},{"name":"val name: String","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.name","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/name.html","searchKeys":["name","val name: String","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.name"]},{"name":"val name: String","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.name","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/name.html","searchKeys":["name","val name: String","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.name"]},{"name":"val name: String","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.name","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/name.html","searchKeys":["name","val name: String","com.stripe.android.StripeApiBeta.WeChatPayV1.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.name"]},{"name":"val name: String","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.name","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/name.html","searchKeys":["name","val name: String","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.name"]},{"name":"val name: String","description":"com.stripe.android.model.AccountParams.BusinessType.Company.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.AccountParams.BusinessType.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.AccountParams.BusinessType.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Errored.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Errored.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.New.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.New.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Validated.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Validated.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.VerificationFailed.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Status.Verified.name","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Status.Verified.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Type.Company.name","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Type.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccount.Type.Individual.name","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccount.Type.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company.name","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccountTokenParams.Type.Company.name"]},{"name":"val name: String","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual.name","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.BankAccountTokenParams.Type.Individual.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.AmericanExpress.name","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.AmericanExpress.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.DinersClub.name","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.DinersClub.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Discover.name","location":"payments-core/com.stripe.android.model/-card-brand/-discover/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Discover.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.JCB.name","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.JCB.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.MasterCard.name","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.MasterCard.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.UnionPay.name","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.UnionPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Unknown.name","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardBrand.Visa.name","location":"payments-core/com.stripe.android.model/-card-brand/-visa/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardBrand.Visa.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Credit.name","location":"payments-core/com.stripe.android.model/-card-funding/-credit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Credit.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Debit.name","location":"payments-core/com.stripe.android.model/-card-funding/-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Debit.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Prepaid.name","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Prepaid.name"]},{"name":"val name: String","description":"com.stripe.android.model.CardFunding.Unknown.name","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.CardFunding.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.name","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.name","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.name"]},{"name":"val name: String","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.name","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/name.html","searchKeys":["name","val name: String","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.name","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.name","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.name","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.name","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.CardError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.name","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Alipay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.BacsDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Bancontact.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Blik.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Blik.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Card.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Card.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.CardPresent.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Eps.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Eps.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Fpx.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Giropay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.GrabPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Ideal.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Netbanking.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Oxxo.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.P24.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.P24.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.PayPal.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.SepaDebit.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Sofort.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.Upi.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.Upi.name"]},{"name":"val name: String","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.name","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.PaymentMethod.Type.WeChatPay.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.name","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.ApiError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.CardError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.name"]},{"name":"val name: String","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.name","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.CodeVerification.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.CodeVerification.name","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.CodeVerification.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.None.name","location":"payments-core/com.stripe.android.model/-source/-flow/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.None.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.Receiver.name","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.Receiver.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Flow.Redirect.name","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Flow.Redirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.NotRequired.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Redirect.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Canceled.name","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Canceled.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Chargeable.name","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Chargeable.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Consumed.name","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Consumed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Failed.name","location":"payments-core/com.stripe.android.model/-source/-status/-failed/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Failed.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Status.Pending.name","location":"payments-core/com.stripe.android.model/-source/-status/-pending/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Status.Pending.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Usage.Reusable.name","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Usage.Reusable.name"]},{"name":"val name: String","description":"com.stripe.android.model.Source.Usage.SingleUse.name","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Source.Usage.SingleUse.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax.name","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrder.Item.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Sku.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax.name","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceOrderParams.Item.Type.Tax.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.CodeVerification.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.None.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.None.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.Receiver.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.Receiver.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceParams.Flow.Redirect.name","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceParams.Flow.Redirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.name"]},{"name":"val name: String","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.name","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/name.html","searchKeys":["name","val name: String","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.BusinessIcon.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.BusinessLogo.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.CustomerSignature.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.DisputeEvidence.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.IdentityDocument.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.PciDocument.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.PciDocument.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.name","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Canceled.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Canceled.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Processing.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Processing.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresAction.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresCapture.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Status.Succeeded.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OffSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OnSession.name"]},{"name":"val name: String","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.name","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/name.html","searchKeys":["name","val name: String","com.stripe.android.model.StripeIntent.Usage.OneTime.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Account.name","location":"payments-core/com.stripe.android.model/-token/-type/-account/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Account.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.BankAccount.name","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.BankAccount.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Card.name","location":"payments-core/com.stripe.android.model/-token/-type/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Card.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.CvcUpdate.name","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.CvcUpdate.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Person.name","location":"payments-core/com.stripe.android.model/-token/-type/-person/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Person.name"]},{"name":"val name: String","description":"com.stripe.android.model.Token.Type.Pii.name","location":"payments-core/com.stripe.android.model/-token/-type/-pii/name.html","searchKeys":["name","val name: String","com.stripe.android.model.Token.Type.Pii.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.ApplePay.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.ApplePay.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.GooglePay.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.GooglePay.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.Masterpass.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.Masterpass.name"]},{"name":"val name: String","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout.name","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/name.html","searchKeys":["name","val name: String","com.stripe.android.model.TokenizationMethod.VisaCheckout.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.name","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.name","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.Full.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.Full.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.None.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.None.name"]},{"name":"val name: String","description":"com.stripe.android.view.BillingAddressFields.PostalCode.name","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.BillingAddressFields.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.CardNumber.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.Cvc.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode.name","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardInputListener.FocusField.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Cvc.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Expiry.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Number.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Number.name"]},{"name":"val name: String","description":"com.stripe.android.view.CardValidCallback.Fields.Postal.name","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/name.html","searchKeys":["name","val name: String","com.stripe.android.view.CardValidCallback.Fields.Postal.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.name"]},{"name":"val name: String","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.name","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/name.html","searchKeys":["name","val name: String","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.name"]},{"name":"val name: String?","description":"com.stripe.android.model.Source.Owner.name","location":"payments-core/com.stripe.android.model/-source/-owner/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.Source.Owner.name"]},{"name":"val name: String?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.name","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.name"]},{"name":"val name: String?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.name","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/name.html","searchKeys":["name","val name: String?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.Card.name","location":"payments-core/com.stripe.android.model/-card/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.Card.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.GooglePayResult.name","location":"payments-core/com.stripe.android.model/-google-pay-result/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.GooglePayResult.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.name","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.PaymentIntent.Shipping.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.name","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.ShippingInformation.name","location":"payments-core/com.stripe.android.model/-shipping-information/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.ShippingInformation.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.SourceOrder.Shipping.name"]},{"name":"val name: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.name","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/name.html","searchKeys":["name","val name: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.name"]},{"name":"val netbanking: PaymentMethod.Netbanking? = null","description":"com.stripe.android.model.PaymentMethod.netbanking","location":"payments-core/com.stripe.android.model/-payment-method/netbanking.html","searchKeys":["netbanking","val netbanking: PaymentMethod.Netbanking? = null","com.stripe.android.model.PaymentMethod.netbanking"]},{"name":"val nonce: String?","description":"com.stripe.android.model.WeChat.nonce","location":"payments-core/com.stripe.android.model/-we-chat/nonce.html","searchKeys":["nonce","val nonce: String?","com.stripe.android.model.WeChat.nonce"]},{"name":"val number: String? = null","description":"com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.number","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-display-oxxo-details/number.html","searchKeys":["number","val number: String? = null","com.stripe.android.model.StripeIntent.NextActionData.DisplayOxxoDetails.number"]},{"name":"val optionalShippingInfoFields: List","description":"com.stripe.android.PaymentSessionConfig.optionalShippingInfoFields","location":"payments-core/com.stripe.android/-payment-session-config/optional-shipping-info-fields.html","searchKeys":["optionalShippingInfoFields","val optionalShippingInfoFields: List","com.stripe.android.PaymentSessionConfig.optionalShippingInfoFields"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-billing-address-parameters/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.BillingAddressParameters.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-complete-immediate-purchase/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.CompleteImmediatePurchase.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-checkout-option/-default/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.CheckoutOption.Default.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-estimated/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Estimated.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-final/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.Final.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.ordinal","location":"payments-core/com.stripe.android/-google-pay-json-factory/-transaction-info/-total-price-status/-not-currently-known/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.GooglePayJsonFactory.TransactionInfo.TotalPriceStatus.NotCurrentlyKnown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-e-p-h-e-m-e-r-a-l_-k-e-y_-e-r-r-o-r/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.EPHEMERAL_KEY_ERROR.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-a-l-r-e-a-d-y_-r-e-d-e-e-m-e-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_ALREADY_REDEEMED.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-e-x-p-i-r-e-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_EXPIRED.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-i-n-c-o-r-r-e-c-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_INCORRECT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-o-n-e_-t-i-m-e_-c-o-d-e_-t-o-o_-m-a-n-y_-a-t-t-e-m-p-t-s/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.ONE_TIME_CODE_TOO_MANY_ATTEMPTS.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.ordinal","location":"payments-core/com.stripe.android/-issuing-card-pin-service/-card-pin-action-error/-u-n-k-n-o-w-n_-e-r-r-o-r/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.IssuingCardPinService.CardPinActionError.UNKNOWN_ERROR.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-a-n-c-e-l/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CANCEL.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-c-o-n-t-i-n-u-e/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.CONTINUE.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-n-e-x-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.NEXT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-r-e-s-e-n-d/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.RESEND.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-e-l-e-c-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SELECT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.ordinal","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/-button-type/-s-u-b-m-i-t/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.ButtonType.SUBMIT.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.StripeApiBeta.WeChatPayV1.ordinal","location":"payments-core/com.stripe.android/-stripe-api-beta/-we-chat-pay-v1/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.StripeApiBeta.WeChatPayV1.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-production/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Production.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-environment/-test/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayEnvironment.Test.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-billing-address-config/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayLauncher.BillingAddressConfig.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.ordinal","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-billing-address-config/-format/-min/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.BillingAddressConfig.Format.Min.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.AccountParams.BusinessType.Company.ordinal","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.AccountParams.BusinessType.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.AccountParams.BusinessType.Individual.ordinal","location":"payments-core/com.stripe.android.model/-account-params/-business-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.AccountParams.BusinessType.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Errored.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-errored/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Errored.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.New.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-new/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.New.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Validated.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-validated/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Validated.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.VerificationFailed.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verification-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.VerificationFailed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Status.Verified.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-status/-verified/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Status.Verified.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Type.Company.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Type.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccount.Type.Individual.ordinal","location":"payments-core/com.stripe.android.model/-bank-account/-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccount.Type.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccountTokenParams.Type.Company.ordinal","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-company/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccountTokenParams.Type.Company.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.BankAccountTokenParams.Type.Individual.ordinal","location":"payments-core/com.stripe.android.model/-bank-account-token-params/-type/-individual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.BankAccountTokenParams.Type.Individual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.AmericanExpress.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-american-express/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.AmericanExpress.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.DinersClub.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-diners-club/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.DinersClub.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Discover.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-discover/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Discover.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.JCB.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-j-c-b/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.JCB.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.MasterCard.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-master-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.MasterCard.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.UnionPay.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-union-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.UnionPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardBrand.Visa.ordinal","location":"payments-core/com.stripe.android.model/-card-brand/-visa/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardBrand.Visa.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Credit.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-credit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Credit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Debit.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Debit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Prepaid.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-prepaid/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Prepaid.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.CardFunding.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-card-funding/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.CardFunding.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.ordinal","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-off-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OffSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.ordinal","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/-setup-future-usage/-on-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.ConfirmPaymentIntentParams.SetupFutureUsage.OnSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-installments/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.Installments.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-custom-payment-methods/-pay-in4/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.CustomPaymentMethods.PayIn4.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-book/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Book.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-buy/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Buy.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-continue/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Continue.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-download/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Download.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-order/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Order.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-rent/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Rent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.ordinal","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/-purchase-type/-subscribe/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.PurchaseType.Subscribe.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-abandoned/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Abandoned.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-duplicate/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Duplicate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-failed-invoice/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.FailedInvoice.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-fraudulent/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.Fraudulent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-requested-by-customer/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.RequestedByCustomer.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-cancellation-reason/-void-invoice/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CancellationReason.VoidInvoice.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CaptureMethod.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-capture-method/-manual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.CaptureMethod.Manual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-automatic/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Automatic.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-confirmation-method/-manual/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.ConfirmationMethod.Manual.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-connection-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.ApiConnectionError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.ApiError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-api-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.ApiError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-authentication-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.AuthenticationError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.CardError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-card-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.CardError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-idempotency-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.IdempotencyError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-invalid-request-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.InvalidRequestError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.ordinal","location":"payments-core/com.stripe.android.model/-payment-intent/-error/-type/-rate-limit-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentIntent.Error.Type.RateLimitError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Alipay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.BacsDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Bancontact.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Blik.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Blik.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Card.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.CardPresent.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Eps.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Eps.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Fpx.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Giropay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.GrabPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Ideal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Netbanking.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Oxxo.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.P24.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.P24.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.PayPal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.SepaDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Sofort.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.Upi.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.Upi.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.ordinal","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.PaymentMethod.Type.WeChatPay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-abandoned/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.Abandoned.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-duplicate/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.Duplicate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-cancellation-reason/-requested-by-customer/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.CancellationReason.RequestedByCustomer.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-connection-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.ApiConnectionError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.ApiError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-api-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.ApiError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-authentication-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.AuthenticationError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.CardError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-card-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.CardError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-idempotency-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.IdempotencyError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-invalid-request-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.InvalidRequestError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.ordinal","location":"payments-core/com.stripe.android.model/-setup-intent/-error/-type/-rate-limit-error/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SetupIntent.Error.Type.RateLimitError.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.CodeVerification.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-source/-code-verification/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.CodeVerification.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.CodeVerification.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-code-verification/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.CodeVerification.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.None.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.Receiver.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-receiver/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.Receiver.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Flow.Redirect.ordinal","location":"payments-core/com.stripe.android.model/-source/-flow/-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Flow.Redirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.NotRequired.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-not-required/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.NotRequired.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Redirect.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-source/-redirect/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Redirect.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Canceled.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-canceled/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Canceled.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Chargeable.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-chargeable/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Chargeable.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Consumed.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-consumed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Consumed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Failed.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-failed/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Failed.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Status.Pending.ordinal","location":"payments-core/com.stripe.android.model/-source/-status/-pending/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Status.Pending.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Usage.Reusable.ordinal","location":"payments-core/com.stripe.android.model/-source/-usage/-reusable/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Usage.Reusable.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Source.Usage.SingleUse.ordinal","location":"payments-core/com.stripe.android.model/-source/-usage/-single-use/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Source.Usage.SingleUse.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrder.Item.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-source-order/-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrder.Item.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-shipping/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Shipping.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Sku.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-sku/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Sku.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceOrderParams.Item.Type.Tax.ordinal","location":"payments-core/com.stripe.android.model/-source-order-params/-item/-type/-tax/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceOrderParams.Item.Type.Tax.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.CodeVerification.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-code-verification/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.CodeVerification.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.None.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.Receiver.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-receiver/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.Receiver.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceParams.Flow.Redirect.ordinal","location":"payments-core/com.stripe.android.model/-source-params/-flow/-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceParams.Flow.Redirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-not-supported/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.NotSupported.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-optional/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Optional.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-recommended/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Recommended.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-required/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Required.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.ordinal","location":"payments-core/com.stripe.android.model/-source-type-model/-card/-three-d-secure-status/-unknown/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.SourceTypeModel.Card.ThreeDSecureStatus.Unknown.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.BusinessIcon.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-icon/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.BusinessIcon.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.BusinessLogo.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-business-logo/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.BusinessLogo.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.CustomerSignature.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-customer-signature/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.CustomerSignature.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.DisputeEvidence.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-dispute-evidence/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.DisputeEvidence.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.IdentityDocument.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-identity-document/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.IdentityDocument.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.PciDocument.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-pci-document/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.PciDocument.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.ordinal","location":"payments-core/com.stripe.android.model/-stripe-file-purpose/-tax-document-user-upload/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeFilePurpose.TaxDocumentUserUpload.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-alipay-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.AlipayRedirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-blik-authorize/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.BlikAuthorize.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-display-oxxo-details/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.DisplayOxxoDetails.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-redirect-to-url/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.RedirectToUrl.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-use-stripe-sdk/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.UseStripeSdk.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-type/-we-chat-pay-redirect/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.NextActionType.WeChatPayRedirect.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Canceled.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-canceled/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Canceled.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Processing.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-processing/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Processing.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresAction.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-action/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresAction.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresCapture.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-capture/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresCapture.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-confirmation/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresConfirmation.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-requires-payment-method/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.RequiresPaymentMethod.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Status.Succeeded.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-status/-succeeded/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Status.Succeeded.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OffSession.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-off-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OffSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OnSession.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-on-session/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OnSession.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.StripeIntent.Usage.OneTime.ordinal","location":"payments-core/com.stripe.android.model/-stripe-intent/-usage/-one-time/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.StripeIntent.Usage.OneTime.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Account.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-account/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Account.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.BankAccount.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-bank-account/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.BankAccount.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Card.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.CvcUpdate.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-cvc-update/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.CvcUpdate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Person.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-person/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Person.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.Token.Type.Pii.ordinal","location":"payments-core/com.stripe.android.model/-token/-type/-pii/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.Token.Type.Pii.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.ApplePay.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-apple-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.ApplePay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.GooglePay.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-google-pay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.GooglePay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.Masterpass.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-masterpass/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.Masterpass.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.model.TokenizationMethod.VisaCheckout.ordinal","location":"payments-core/com.stripe.android.model/-tokenization-method/-visa-checkout/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.model.TokenizationMethod.VisaCheckout.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.ordinal","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-production/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Production.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.ordinal","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-google-pay-configuration/-environment/-test/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.PaymentSheet.GooglePayConfiguration.Environment.Test.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.Full.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-full/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.Full.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.None.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-none/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.None.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.BillingAddressFields.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-billing-address-fields/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.BillingAddressFields.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.CardNumber.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-card-number/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.CardNumber.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.Cvc.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-cvc/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.Cvc.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-expiry-date/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.ExpiryDate.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardInputListener.FocusField.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-card-input-listener/-focus-field/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardInputListener.FocusField.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Cvc.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-cvc/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Cvc.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Expiry.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-expiry/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Expiry.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Number.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-number/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Number.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.CardValidCallback.Fields.Postal.ordinal","location":"payments-core/com.stripe.android.view/-card-valid-callback/-fields/-postal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.CardValidCallback.Fields.Postal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-city/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.City.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line1/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line1.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-line2/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Line2.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-phone/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.Phone.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-postal-code/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.PostalCode.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.ordinal","location":"payments-core/com.stripe.android.view/-shipping-info-widget/-customizable-shipping-field/-state/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.view.ShippingInfoWidget.CustomizableShippingField.State.ordinal"]},{"name":"val outcome: Int","description":"com.stripe.android.StripeIntentResult.outcome","location":"payments-core/com.stripe.android/-stripe-intent-result/outcome.html","searchKeys":["outcome","val outcome: Int","com.stripe.android.StripeIntentResult.outcome"]},{"name":"val owner: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.owner","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/owner.html","searchKeys":["owner","val owner: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.owner"]},{"name":"val owner: Source.Owner? = null","description":"com.stripe.android.model.Source.owner","location":"payments-core/com.stripe.android.model/-source/owner.html","searchKeys":["owner","val owner: Source.Owner? = null","com.stripe.android.model.Source.owner"]},{"name":"val packageValue: String?","description":"com.stripe.android.model.WeChat.packageValue","location":"payments-core/com.stripe.android.model/-we-chat/package-value.html","searchKeys":["packageValue","val packageValue: String?","com.stripe.android.model.WeChat.packageValue"]},{"name":"val pageOptions: KlarnaSourceParams.PaymentPageOptions? = null","description":"com.stripe.android.model.KlarnaSourceParams.pageOptions","location":"payments-core/com.stripe.android.model/-klarna-source-params/page-options.html","searchKeys":["pageOptions","val pageOptions: KlarnaSourceParams.PaymentPageOptions? = null","com.stripe.android.model.KlarnaSourceParams.pageOptions"]},{"name":"val pageTitle: String? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.pageTitle","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/page-title.html","searchKeys":["pageTitle","val pageTitle: String? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.pageTitle"]},{"name":"val param: String?","description":"com.stripe.android.exception.CardException.param","location":"payments-core/com.stripe.android.exception/-card-exception/param.html","searchKeys":["param","val param: String?","com.stripe.android.exception.CardException.param"]},{"name":"val param: String?","description":"com.stripe.android.model.PaymentIntent.Error.param","location":"payments-core/com.stripe.android.model/-payment-intent/-error/param.html","searchKeys":["param","val param: String?","com.stripe.android.model.PaymentIntent.Error.param"]},{"name":"val param: String?","description":"com.stripe.android.model.SetupIntent.Error.param","location":"payments-core/com.stripe.android.model/-setup-intent/-error/param.html","searchKeys":["param","val param: String?","com.stripe.android.model.SetupIntent.Error.param"]},{"name":"val param: String? = null","description":"com.stripe.android.StripeError.param","location":"payments-core/com.stripe.android/-stripe-error/param.html","searchKeys":["param","val param: String? = null","com.stripe.android.StripeError.param"]},{"name":"val params: PaymentMethodCreateParams?","description":"com.stripe.android.view.BecsDebitWidget.params","location":"payments-core/com.stripe.android.view/-becs-debit-widget/params.html","searchKeys":["params","val params: PaymentMethodCreateParams?","com.stripe.android.view.BecsDebitWidget.params"]},{"name":"val parent: String? = null","description":"com.stripe.android.model.SourceOrderParams.Item.parent","location":"payments-core/com.stripe.android.model/-source-order-params/-item/parent.html","searchKeys":["parent","val parent: String? = null","com.stripe.android.model.SourceOrderParams.Item.parent"]},{"name":"val partnerId: String?","description":"com.stripe.android.model.WeChat.partnerId","location":"payments-core/com.stripe.android.model/-we-chat/partner-id.html","searchKeys":["partnerId","val partnerId: String?","com.stripe.android.model.WeChat.partnerId"]},{"name":"val payLaterAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payLaterAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-asset-urls-descriptive.html","searchKeys":["payLaterAssetUrlsDescriptive","val payLaterAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payLaterAssetUrlsDescriptive"]},{"name":"val payLaterAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payLaterAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-asset-urls-standard.html","searchKeys":["payLaterAssetUrlsStandard","val payLaterAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payLaterAssetUrlsStandard"]},{"name":"val payLaterName: String?","description":"com.stripe.android.model.Source.Klarna.payLaterName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-name.html","searchKeys":["payLaterName","val payLaterName: String?","com.stripe.android.model.Source.Klarna.payLaterName"]},{"name":"val payLaterRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payLaterRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-later-redirect-url.html","searchKeys":["payLaterRedirectUrl","val payLaterRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payLaterRedirectUrl"]},{"name":"val payNowAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payNowAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-asset-urls-descriptive.html","searchKeys":["payNowAssetUrlsDescriptive","val payNowAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payNowAssetUrlsDescriptive"]},{"name":"val payNowAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payNowAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-asset-urls-standard.html","searchKeys":["payNowAssetUrlsStandard","val payNowAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payNowAssetUrlsStandard"]},{"name":"val payNowName: String?","description":"com.stripe.android.model.Source.Klarna.payNowName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-name.html","searchKeys":["payNowName","val payNowName: String?","com.stripe.android.model.Source.Klarna.payNowName"]},{"name":"val payNowRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payNowRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-now-redirect-url.html","searchKeys":["payNowRedirectUrl","val payNowRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payNowRedirectUrl"]},{"name":"val payOverTimeAssetUrlsDescriptive: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsDescriptive","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-asset-urls-descriptive.html","searchKeys":["payOverTimeAssetUrlsDescriptive","val payOverTimeAssetUrlsDescriptive: String?","com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsDescriptive"]},{"name":"val payOverTimeAssetUrlsStandard: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsStandard","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-asset-urls-standard.html","searchKeys":["payOverTimeAssetUrlsStandard","val payOverTimeAssetUrlsStandard: String?","com.stripe.android.model.Source.Klarna.payOverTimeAssetUrlsStandard"]},{"name":"val payOverTimeName: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeName","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-name.html","searchKeys":["payOverTimeName","val payOverTimeName: String?","com.stripe.android.model.Source.Klarna.payOverTimeName"]},{"name":"val payOverTimeRedirectUrl: String?","description":"com.stripe.android.model.Source.Klarna.payOverTimeRedirectUrl","location":"payments-core/com.stripe.android.model/-source/-klarna/pay-over-time-redirect-url.html","searchKeys":["payOverTimeRedirectUrl","val payOverTimeRedirectUrl: String?","com.stripe.android.model.Source.Klarna.payOverTimeRedirectUrl"]},{"name":"val paymentIntent: PaymentIntent","description":"com.stripe.android.model.WeChatPayNextAction.paymentIntent","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/payment-intent.html","searchKeys":["paymentIntent","val paymentIntent: PaymentIntent","com.stripe.android.model.WeChatPayNextAction.paymentIntent"]},{"name":"val paymentMethod: PaymentMethod","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.paymentMethod","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-result/-completed/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Result.Completed.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod","description":"com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success.paymentMethod","location":"payments-core/com.stripe.android.view/-add-payment-method-activity-starter/-result/-success/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod","com.stripe.android.view.AddPaymentMethodActivityStarter.Result.Success.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.PaymentIntent.Error.paymentMethod","location":"payments-core/com.stripe.android.model/-payment-intent/-error/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod?","com.stripe.android.model.PaymentIntent.Error.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod?","description":"com.stripe.android.model.SetupIntent.Error.paymentMethod","location":"payments-core/com.stripe.android.model/-setup-intent/-error/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod?","com.stripe.android.model.SetupIntent.Error.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.PaymentSessionData.paymentMethod","location":"payments-core/com.stripe.android/-payment-session-data/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod? = null","com.stripe.android.PaymentSessionData.paymentMethod"]},{"name":"val paymentMethod: PaymentMethod? = null","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.paymentMethod","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/payment-method.html","searchKeys":["paymentMethod","val paymentMethod: PaymentMethod? = null","com.stripe.android.view.PaymentMethodsActivityStarter.Result.paymentMethod"]},{"name":"val paymentMethodBillingDetails: PaymentMethod.BillingDetails?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetails","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-billing-details.html","searchKeys":["paymentMethodBillingDetails","val paymentMethodBillingDetails: PaymentMethod.BillingDetails?","com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetails"]},{"name":"val paymentMethodBillingDetailsBuilder: PaymentMethod.BillingDetails.Builder?","description":"com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetailsBuilder","location":"payments-core/com.stripe.android.view/-card-multiline-widget/payment-method-billing-details-builder.html","searchKeys":["paymentMethodBillingDetailsBuilder","val paymentMethodBillingDetailsBuilder: PaymentMethod.BillingDetails.Builder?","com.stripe.android.view.CardMultilineWidget.paymentMethodBillingDetailsBuilder"]},{"name":"val paymentMethodCategories: Set","description":"com.stripe.android.model.Source.Klarna.paymentMethodCategories","location":"payments-core/com.stripe.android.model/-source/-klarna/payment-method-categories.html","searchKeys":["paymentMethodCategories","val paymentMethodCategories: Set","com.stripe.android.model.Source.Klarna.paymentMethodCategories"]},{"name":"val paymentMethodCreateParams: PaymentMethodCreateParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodCreateParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-create-params.html","searchKeys":["paymentMethodCreateParams","val paymentMethodCreateParams: PaymentMethodCreateParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodCreateParams"]},{"name":"val paymentMethodId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-id.html","searchKeys":["paymentMethodId","val paymentMethodId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodId"]},{"name":"val paymentMethodTypes: List","description":"com.stripe.android.PaymentSessionConfig.paymentMethodTypes","location":"payments-core/com.stripe.android/-payment-session-config/payment-method-types.html","searchKeys":["paymentMethodTypes","val paymentMethodTypes: List","com.stripe.android.PaymentSessionConfig.paymentMethodTypes"]},{"name":"val paymentMethodsFooterLayoutId: Int","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Args.paymentMethodsFooterLayoutId","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-args/payment-methods-footer-layout-id.html","searchKeys":["paymentMethodsFooterLayoutId","val paymentMethodsFooterLayoutId: Int","com.stripe.android.view.PaymentMethodsActivityStarter.Args.paymentMethodsFooterLayoutId"]},{"name":"val paymentMethodsFooterLayoutId: Int = 0","description":"com.stripe.android.PaymentSessionConfig.paymentMethodsFooterLayoutId","location":"payments-core/com.stripe.android/-payment-session-config/payment-methods-footer-layout-id.html","searchKeys":["paymentMethodsFooterLayoutId","val paymentMethodsFooterLayoutId: Int = 0","com.stripe.android.PaymentSessionConfig.paymentMethodsFooterLayoutId"]},{"name":"val percentOwnership: Int? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.percentOwnership","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/percent-ownership.html","searchKeys":["percentOwnership","val percentOwnership: Int? = null","com.stripe.android.model.PersonTokenParams.Relationship.percentOwnership"]},{"name":"val phone: String?","description":"com.stripe.android.model.Source.Owner.phone","location":"payments-core/com.stripe.android.model/-source/-owner/phone.html","searchKeys":["phone","val phone: String?","com.stripe.android.model.Source.Owner.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.phone","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PaymentIntent.Shipping.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PaymentMethod.BillingDetails.phone","location":"payments-core/com.stripe.android.model/-payment-method/-billing-details/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PaymentMethod.BillingDetails.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.PersonTokenParams.phone","location":"payments-core/com.stripe.android.model/-person-token-params/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.PersonTokenParams.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.ShippingInformation.phone","location":"payments-core/com.stripe.android.model/-shipping-information/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.ShippingInformation.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.phone","location":"payments-core/com.stripe.android.model/-source-order/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.SourceOrder.Shipping.phone"]},{"name":"val phone: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.phone","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/phone.html","searchKeys":["phone","val phone: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.phone"]},{"name":"val phoneNumber: String? = null","description":"com.stripe.android.model.GooglePayResult.phoneNumber","location":"payments-core/com.stripe.android.model/-google-pay-result/phone-number.html","searchKeys":["phoneNumber","val phoneNumber: String? = null","com.stripe.android.model.GooglePayResult.phoneNumber"]},{"name":"val pin: String","description":"com.stripe.android.model.IssuingCardPin.pin","location":"payments-core/com.stripe.android.model/-issuing-card-pin/pin.html","searchKeys":["pin","val pin: String","com.stripe.android.model.IssuingCardPin.pin"]},{"name":"val postalCode: String? = null","description":"com.stripe.android.model.Address.postalCode","location":"payments-core/com.stripe.android.model/-address/postal-code.html","searchKeys":["postalCode","val postalCode: String? = null","com.stripe.android.model.Address.postalCode"]},{"name":"val postalCode: String? = null","description":"com.stripe.android.model.AddressJapanParams.postalCode","location":"payments-core/com.stripe.android.model/-address-japan-params/postal-code.html","searchKeys":["postalCode","val postalCode: String? = null","com.stripe.android.model.AddressJapanParams.postalCode"]},{"name":"val preferred: String? = null","description":"com.stripe.android.model.PaymentMethod.Card.Networks.preferred","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/preferred.html","searchKeys":["preferred","val preferred: String? = null","com.stripe.android.model.PaymentMethod.Card.Networks.preferred"]},{"name":"val prepayId: String?","description":"com.stripe.android.model.WeChat.prepayId","location":"payments-core/com.stripe.android.model/-we-chat/prepay-id.html","searchKeys":["prepayId","val prepayId: String?","com.stripe.android.model.WeChat.prepayId"]},{"name":"val prepopulatedShippingInfo: ShippingInformation? = null","description":"com.stripe.android.PaymentSessionConfig.prepopulatedShippingInfo","location":"payments-core/com.stripe.android/-payment-session-config/prepopulated-shipping-info.html","searchKeys":["prepopulatedShippingInfo","val prepopulatedShippingInfo: ShippingInformation? = null","com.stripe.android.PaymentSessionConfig.prepopulatedShippingInfo"]},{"name":"val publishableKey: String","description":"com.stripe.android.PaymentConfiguration.publishableKey","location":"payments-core/com.stripe.android/-payment-configuration/publishable-key.html","searchKeys":["publishableKey","val publishableKey: String","com.stripe.android.PaymentConfiguration.publishableKey"]},{"name":"val purchaseCountry: String","description":"com.stripe.android.model.KlarnaSourceParams.purchaseCountry","location":"payments-core/com.stripe.android.model/-klarna-source-params/purchase-country.html","searchKeys":["purchaseCountry","val purchaseCountry: String","com.stripe.android.model.KlarnaSourceParams.purchaseCountry"]},{"name":"val purchaseCountry: String?","description":"com.stripe.android.model.Source.Klarna.purchaseCountry","location":"payments-core/com.stripe.android.model/-source/-klarna/purchase-country.html","searchKeys":["purchaseCountry","val purchaseCountry: String?","com.stripe.android.model.Source.Klarna.purchaseCountry"]},{"name":"val purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null","description":"com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.purchaseType","location":"payments-core/com.stripe.android.model/-klarna-source-params/-payment-page-options/purchase-type.html","searchKeys":["purchaseType","val purchaseType: KlarnaSourceParams.PaymentPageOptions.PurchaseType? = null","com.stripe.android.model.KlarnaSourceParams.PaymentPageOptions.purchaseType"]},{"name":"val purpose: StripeFilePurpose? = null","description":"com.stripe.android.model.StripeFile.purpose","location":"payments-core/com.stripe.android.model/-stripe-file/purpose.html","searchKeys":["purpose","val purpose: StripeFilePurpose? = null","com.stripe.android.model.StripeFile.purpose"]},{"name":"val qrCodeUrl: String? = null","description":"com.stripe.android.model.WeChat.qrCodeUrl","location":"payments-core/com.stripe.android.model/-we-chat/qr-code-url.html","searchKeys":["qrCodeUrl","val qrCodeUrl: String? = null","com.stripe.android.model.WeChat.qrCodeUrl"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.quantity","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.KlarnaSourceParams.LineItem.quantity"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.SourceOrder.Item.quantity","location":"payments-core/com.stripe.android.model/-source-order/-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.SourceOrder.Item.quantity"]},{"name":"val quantity: Int? = null","description":"com.stripe.android.model.SourceOrderParams.Item.quantity","location":"payments-core/com.stripe.android.model/-source-order-params/-item/quantity.html","searchKeys":["quantity","val quantity: Int? = null","com.stripe.android.model.SourceOrderParams.Item.quantity"]},{"name":"val receiptEmail: String? = null","description":"com.stripe.android.model.PaymentIntent.receiptEmail","location":"payments-core/com.stripe.android.model/-payment-intent/receipt-email.html","searchKeys":["receiptEmail","val receiptEmail: String? = null","com.stripe.android.model.PaymentIntent.receiptEmail"]},{"name":"val receiver: Source.Receiver? = null","description":"com.stripe.android.model.Source.receiver","location":"payments-core/com.stripe.android.model/-source/receiver.html","searchKeys":["receiver","val receiver: Source.Receiver? = null","com.stripe.android.model.Source.receiver"]},{"name":"val redirect: Source.Redirect? = null","description":"com.stripe.android.model.Source.redirect","location":"payments-core/com.stripe.android.model/-source/redirect.html","searchKeys":["redirect","val redirect: Source.Redirect? = null","com.stripe.android.model.Source.redirect"]},{"name":"val relationship: PersonTokenParams.Relationship? = null","description":"com.stripe.android.model.PersonTokenParams.relationship","location":"payments-core/com.stripe.android.model/-person-token-params/relationship.html","searchKeys":["relationship","val relationship: PersonTokenParams.Relationship? = null","com.stripe.android.model.PersonTokenParams.relationship"]},{"name":"val representative: Boolean? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.representative","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/representative.html","searchKeys":["representative","val representative: Boolean? = null","com.stripe.android.model.PersonTokenParams.Relationship.representative"]},{"name":"val requestId: String? = null","description":"com.stripe.android.exception.StripeException.requestId","location":"payments-core/com.stripe.android.exception/-stripe-exception/request-id.html","searchKeys":["requestId","val requestId: String? = null","com.stripe.android.exception.StripeException.requestId"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-afterpay-clearpay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.AfterpayClearpay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Alipay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-alipay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Alipay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-au-becs-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.AuBecsDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.BacsDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bacs-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.BacsDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Bancontact.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-bancontact/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Bancontact.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Blik.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-blik/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Blik.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Card.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Card.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.CardPresent.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-card-present/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.CardPresent.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Eps.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-eps/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Eps.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Fpx.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-fpx/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Fpx.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Giropay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-giropay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Giropay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.GrabPay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-grab-pay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.GrabPay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Ideal.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-ideal/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Ideal.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Netbanking.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-netbanking/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Netbanking.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Oxxo.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-oxxo/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Oxxo.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.P24.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-p24/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.P24.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.PayPal.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-pay-pal/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.PayPal.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.SepaDebit.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sepa-debit/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.SepaDebit.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Sofort.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-sofort/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Sofort.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.Upi.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-upi/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.Upi.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.WeChatPay.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/-we-chat-pay/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.WeChatPay.requiresMandate"]},{"name":"val requiresMandate: Boolean","description":"com.stripe.android.model.PaymentMethod.Type.requiresMandate","location":"payments-core/com.stripe.android.model/-payment-method/-type/requires-mandate.html","searchKeys":["requiresMandate","val requiresMandate: Boolean","com.stripe.android.model.PaymentMethod.Type.requiresMandate"]},{"name":"val returnUrl: String?","description":"com.stripe.android.model.Source.Redirect.returnUrl","location":"payments-core/com.stripe.android.model/-source/-redirect/return-url.html","searchKeys":["returnUrl","val returnUrl: String?","com.stripe.android.model.Source.Redirect.returnUrl"]},{"name":"val returnUrl: String?","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.returnUrl","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/return-url.html","searchKeys":["returnUrl","val returnUrl: String?","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.returnUrl"]},{"name":"val rootCertsData: List","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.rootCertsData","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/-directory-server-encryption/root-certs-data.html","searchKeys":["rootCertsData","val rootCertsData: List","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption.rootCertsData"]},{"name":"val routingNumber: String? = null","description":"com.stripe.android.model.BankAccount.routingNumber","location":"payments-core/com.stripe.android.model/-bank-account/routing-number.html","searchKeys":["routingNumber","val routingNumber: String? = null","com.stripe.android.model.BankAccount.routingNumber"]},{"name":"val secret: String","description":"com.stripe.android.EphemeralKey.secret","location":"payments-core/com.stripe.android/-ephemeral-key/secret.html","searchKeys":["secret","val secret: String","com.stripe.android.EphemeralKey.secret"]},{"name":"val selectionMandatory: Boolean = false","description":"com.stripe.android.model.PaymentMethod.Card.Networks.selectionMandatory","location":"payments-core/com.stripe.android.model/-payment-method/-card/-networks/selection-mandatory.html","searchKeys":["selectionMandatory","val selectionMandatory: Boolean = false","com.stripe.android.model.PaymentMethod.Card.Networks.selectionMandatory"]},{"name":"val sepaDebit: PaymentMethod.SepaDebit? = null","description":"com.stripe.android.model.PaymentMethod.sepaDebit","location":"payments-core/com.stripe.android.model/-payment-method/sepa-debit.html","searchKeys":["sepaDebit","val sepaDebit: PaymentMethod.SepaDebit? = null","com.stripe.android.model.PaymentMethod.sepaDebit"]},{"name":"val serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverEncryption","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/server-encryption.html","searchKeys":["serverEncryption","val serverEncryption: StripeIntent.NextActionData.SdkData.Use3DS2.DirectoryServerEncryption","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverEncryption"]},{"name":"val serverName: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverName","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/server-name.html","searchKeys":["serverName","val serverName: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.serverName"]},{"name":"val shipping: PaymentIntent.Shipping? = null","description":"com.stripe.android.model.PaymentIntent.shipping","location":"payments-core/com.stripe.android.model/-payment-intent/shipping.html","searchKeys":["shipping","val shipping: PaymentIntent.Shipping? = null","com.stripe.android.model.PaymentIntent.shipping"]},{"name":"val shipping: SourceOrder.Shipping? = null","description":"com.stripe.android.model.SourceOrder.shipping","location":"payments-core/com.stripe.android.model/-source-order/shipping.html","searchKeys":["shipping","val shipping: SourceOrder.Shipping? = null","com.stripe.android.model.SourceOrder.shipping"]},{"name":"val shipping: SourceOrderParams.Shipping? = null","description":"com.stripe.android.model.SourceOrderParams.shipping","location":"payments-core/com.stripe.android.model/-source-order-params/shipping.html","searchKeys":["shipping","val shipping: SourceOrderParams.Shipping? = null","com.stripe.android.model.SourceOrderParams.shipping"]},{"name":"val shippingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.MasterpassWallet.shippingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-masterpass-wallet/shipping-address.html","searchKeys":["shippingAddress","val shippingAddress: Address?","com.stripe.android.model.wallets.Wallet.MasterpassWallet.shippingAddress"]},{"name":"val shippingAddress: Address?","description":"com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.shippingAddress","location":"payments-core/com.stripe.android.model.wallets/-wallet/-visa-checkout-wallet/shipping-address.html","searchKeys":["shippingAddress","val shippingAddress: Address?","com.stripe.android.model.wallets.Wallet.VisaCheckoutWallet.shippingAddress"]},{"name":"val shippingInformation: ShippingInformation?","description":"com.stripe.android.model.Customer.shippingInformation","location":"payments-core/com.stripe.android.model/-customer/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation?","com.stripe.android.model.Customer.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation?","description":"com.stripe.android.view.ShippingInfoWidget.shippingInformation","location":"payments-core/com.stripe.android.view/-shipping-info-widget/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation?","com.stripe.android.view.ShippingInfoWidget.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation? = null","description":"com.stripe.android.PaymentSessionData.shippingInformation","location":"payments-core/com.stripe.android/-payment-session-data/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation? = null","com.stripe.android.PaymentSessionData.shippingInformation"]},{"name":"val shippingInformation: ShippingInformation? = null","description":"com.stripe.android.model.GooglePayResult.shippingInformation","location":"payments-core/com.stripe.android.model/-google-pay-result/shipping-information.html","searchKeys":["shippingInformation","val shippingInformation: ShippingInformation? = null","com.stripe.android.model.GooglePayResult.shippingInformation"]},{"name":"val shippingMethod: ShippingMethod? = null","description":"com.stripe.android.PaymentSessionData.shippingMethod","location":"payments-core/com.stripe.android/-payment-session-data/shipping-method.html","searchKeys":["shippingMethod","val shippingMethod: ShippingMethod? = null","com.stripe.android.PaymentSessionData.shippingMethod"]},{"name":"val shippingTotal: Long = 0L","description":"com.stripe.android.PaymentSessionData.shippingTotal","location":"payments-core/com.stripe.android/-payment-session-data/shipping-total.html","searchKeys":["shippingTotal","val shippingTotal: Long = 0L","com.stripe.android.PaymentSessionData.shippingTotal"]},{"name":"val shouldShowGooglePay: Boolean = false","description":"com.stripe.android.PaymentSessionConfig.shouldShowGooglePay","location":"payments-core/com.stripe.android/-payment-session-config/should-show-google-pay.html","searchKeys":["shouldShowGooglePay","val shouldShowGooglePay: Boolean = false","com.stripe.android.PaymentSessionConfig.shouldShowGooglePay"]},{"name":"val sign: String?","description":"com.stripe.android.model.WeChat.sign","location":"payments-core/com.stripe.android.model/-we-chat/sign.html","searchKeys":["sign","val sign: String?","com.stripe.android.model.WeChat.sign"]},{"name":"val size: Int? = null","description":"com.stripe.android.model.StripeFile.size","location":"payments-core/com.stripe.android.model/-stripe-file/size.html","searchKeys":["size","val size: Int? = null","com.stripe.android.model.StripeFile.size"]},{"name":"val sofort: PaymentMethod.Sofort? = null","description":"com.stripe.android.model.PaymentMethod.sofort","location":"payments-core/com.stripe.android.model/-payment-method/sofort.html","searchKeys":["sofort","val sofort: PaymentMethod.Sofort? = null","com.stripe.android.model.PaymentMethod.sofort"]},{"name":"val sortCode: String?","description":"com.stripe.android.model.PaymentMethod.BacsDebit.sortCode","location":"payments-core/com.stripe.android.model/-payment-method/-bacs-debit/sort-code.html","searchKeys":["sortCode","val sortCode: String?","com.stripe.android.model.PaymentMethod.BacsDebit.sortCode"]},{"name":"val source: Source","description":"com.stripe.android.model.CustomerSource.source","location":"payments-core/com.stripe.android.model/-customer-source/source.html","searchKeys":["source","val source: Source","com.stripe.android.model.CustomerSource.source"]},{"name":"val source: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.source","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/source.html","searchKeys":["source","val source: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.source"]},{"name":"val sourceId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.sourceId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/source-id.html","searchKeys":["sourceId","val sourceId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.sourceId"]},{"name":"val sourceOrder: SourceOrder? = null","description":"com.stripe.android.model.Source.sourceOrder","location":"payments-core/com.stripe.android.model/-source/source-order.html","searchKeys":["sourceOrder","val sourceOrder: SourceOrder? = null","com.stripe.android.model.Source.sourceOrder"]},{"name":"val sourceParams: SourceParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.sourceParams","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/source-params.html","searchKeys":["sourceParams","val sourceParams: SourceParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.sourceParams"]},{"name":"val sourceTypeData: Map? = null","description":"com.stripe.android.model.Source.sourceTypeData","location":"payments-core/com.stripe.android.model/-source/source-type-data.html","searchKeys":["sourceTypeData","val sourceTypeData: Map? = null","com.stripe.android.model.Source.sourceTypeData"]},{"name":"val sourceTypeModel: SourceTypeModel? = null","description":"com.stripe.android.model.Source.sourceTypeModel","location":"payments-core/com.stripe.android.model/-source/source-type-model.html","searchKeys":["sourceTypeModel","val sourceTypeModel: SourceTypeModel? = null","com.stripe.android.model.Source.sourceTypeModel"]},{"name":"val sources: List","description":"com.stripe.android.model.Customer.sources","location":"payments-core/com.stripe.android.model/-customer/sources.html","searchKeys":["sources","val sources: List","com.stripe.android.model.Customer.sources"]},{"name":"val ssnLast4: String? = null","description":"com.stripe.android.model.PersonTokenParams.ssnLast4","location":"payments-core/com.stripe.android.model/-person-token-params/ssn-last4.html","searchKeys":["ssnLast4","val ssnLast4: String? = null","com.stripe.android.model.PersonTokenParams.ssnLast4"]},{"name":"val state: String? = null","description":"com.stripe.android.model.Address.state","location":"payments-core/com.stripe.android.model/-address/state.html","searchKeys":["state","val state: String? = null","com.stripe.android.model.Address.state"]},{"name":"val state: String? = null","description":"com.stripe.android.model.AddressJapanParams.state","location":"payments-core/com.stripe.android.model/-address-japan-params/state.html","searchKeys":["state","val state: String? = null","com.stripe.android.model.AddressJapanParams.state"]},{"name":"val statementDescriptor: String? = null","description":"com.stripe.android.model.Source.statementDescriptor","location":"payments-core/com.stripe.android.model/-source/statement-descriptor.html","searchKeys":["statementDescriptor","val statementDescriptor: String? = null","com.stripe.android.model.Source.statementDescriptor"]},{"name":"val statementDescriptor: String? = null","description":"com.stripe.android.model.WeChat.statementDescriptor","location":"payments-core/com.stripe.android.model/-we-chat/statement-descriptor.html","searchKeys":["statementDescriptor","val statementDescriptor: String? = null","com.stripe.android.model.WeChat.statementDescriptor"]},{"name":"val status: BankAccount.Status? = null","description":"com.stripe.android.model.BankAccount.status","location":"payments-core/com.stripe.android.model/-bank-account/status.html","searchKeys":["status","val status: BankAccount.Status? = null","com.stripe.android.model.BankAccount.status"]},{"name":"val status: Source.CodeVerification.Status?","description":"com.stripe.android.model.Source.CodeVerification.status","location":"payments-core/com.stripe.android.model/-source/-code-verification/status.html","searchKeys":["status","val status: Source.CodeVerification.Status?","com.stripe.android.model.Source.CodeVerification.status"]},{"name":"val status: Source.Redirect.Status?","description":"com.stripe.android.model.Source.Redirect.status","location":"payments-core/com.stripe.android.model/-source/-redirect/status.html","searchKeys":["status","val status: Source.Redirect.Status?","com.stripe.android.model.Source.Redirect.status"]},{"name":"val status: Source.Status? = null","description":"com.stripe.android.model.Source.status","location":"payments-core/com.stripe.android.model/-source/status.html","searchKeys":["status","val status: Source.Status? = null","com.stripe.android.model.Source.status"]},{"name":"val statusCode: Int = 0","description":"com.stripe.android.exception.StripeException.statusCode","location":"payments-core/com.stripe.android.exception/-stripe-exception/status-code.html","searchKeys":["statusCode","val statusCode: Int = 0","com.stripe.android.exception.StripeException.statusCode"]},{"name":"val stripeAccountId: String? = null","description":"com.stripe.android.PaymentConfiguration.stripeAccountId","location":"payments-core/com.stripe.android/-payment-configuration/stripe-account-id.html","searchKeys":["stripeAccountId","val stripeAccountId: String? = null","com.stripe.android.PaymentConfiguration.stripeAccountId"]},{"name":"val stripeError: StripeError? = null","description":"com.stripe.android.exception.StripeException.stripeError","location":"payments-core/com.stripe.android.exception/-stripe-exception/stripe-error.html","searchKeys":["stripeError","val stripeError: StripeError? = null","com.stripe.android.exception.StripeException.stripeError"]},{"name":"val threeDSecureStatus: SourceTypeModel.Card.ThreeDSecureStatus? = null","description":"com.stripe.android.model.SourceTypeModel.Card.threeDSecureStatus","location":"payments-core/com.stripe.android.model/-source-type-model/-card/three-d-secure-status.html","searchKeys":["threeDSecureStatus","val threeDSecureStatus: SourceTypeModel.Card.ThreeDSecureStatus? = null","com.stripe.android.model.SourceTypeModel.Card.threeDSecureStatus"]},{"name":"val threeDSecureUsage: PaymentMethod.Card.ThreeDSecureUsage? = null","description":"com.stripe.android.model.PaymentMethod.Card.threeDSecureUsage","location":"payments-core/com.stripe.android.model/-payment-method/-card/three-d-secure-usage.html","searchKeys":["threeDSecureUsage","val threeDSecureUsage: PaymentMethod.Card.ThreeDSecureUsage? = null","com.stripe.android.model.PaymentMethod.Card.threeDSecureUsage"]},{"name":"val timestamp: String?","description":"com.stripe.android.model.WeChat.timestamp","location":"payments-core/com.stripe.android.model/-we-chat/timestamp.html","searchKeys":["timestamp","val timestamp: String?","com.stripe.android.model.WeChat.timestamp"]},{"name":"val title: String? = null","description":"com.stripe.android.model.PersonTokenParams.Relationship.title","location":"payments-core/com.stripe.android.model/-person-token-params/-relationship/title.html","searchKeys":["title","val title: String? = null","com.stripe.android.model.PersonTokenParams.Relationship.title"]},{"name":"val title: String? = null","description":"com.stripe.android.model.StripeFile.title","location":"payments-core/com.stripe.android.model/-stripe-file/title.html","searchKeys":["title","val title: String? = null","com.stripe.android.model.StripeFile.title"]},{"name":"val token: Token? = null","description":"com.stripe.android.model.GooglePayResult.token","location":"payments-core/com.stripe.android.model/-google-pay-result/token.html","searchKeys":["token","val token: Token? = null","com.stripe.android.model.GooglePayResult.token"]},{"name":"val tokenizationMethod: TokenizationMethod? = null","description":"com.stripe.android.model.Card.tokenizationMethod","location":"payments-core/com.stripe.android.model/-card/tokenization-method.html","searchKeys":["tokenizationMethod","val tokenizationMethod: TokenizationMethod? = null","com.stripe.android.model.Card.tokenizationMethod"]},{"name":"val tokenizationMethod: TokenizationMethod? = null","description":"com.stripe.android.model.SourceTypeModel.Card.tokenizationMethod","location":"payments-core/com.stripe.android.model/-source-type-model/-card/tokenization-method.html","searchKeys":["tokenizationMethod","val tokenizationMethod: TokenizationMethod? = null","com.stripe.android.model.SourceTypeModel.Card.tokenizationMethod"]},{"name":"val tokenizationSpecification: JSONObject","description":"com.stripe.android.GooglePayConfig.tokenizationSpecification","location":"payments-core/com.stripe.android/-google-pay-config/tokenization-specification.html","searchKeys":["tokenizationSpecification","val tokenizationSpecification: JSONObject","com.stripe.android.GooglePayConfig.tokenizationSpecification"]},{"name":"val totalAmount: Int","description":"com.stripe.android.model.KlarnaSourceParams.LineItem.totalAmount","location":"payments-core/com.stripe.android.model/-klarna-source-params/-line-item/total-amount.html","searchKeys":["totalAmount","val totalAmount: Int","com.stripe.android.model.KlarnaSourceParams.LineItem.totalAmount"]},{"name":"val totalCount: Int?","description":"com.stripe.android.model.Customer.totalCount","location":"payments-core/com.stripe.android.model/-customer/total-count.html","searchKeys":["totalCount","val totalCount: Int?","com.stripe.android.model.Customer.totalCount"]},{"name":"val town: String? = null","description":"com.stripe.android.model.AddressJapanParams.town","location":"payments-core/com.stripe.android.model/-address-japan-params/town.html","searchKeys":["town","val town: String? = null","com.stripe.android.model.AddressJapanParams.town"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.PaymentIntent.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-payment-intent/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.PaymentIntent.Shipping.trackingNumber"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.SourceOrder.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-source-order/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.SourceOrder.Shipping.trackingNumber"]},{"name":"val trackingNumber: String? = null","description":"com.stripe.android.model.SourceOrderParams.Shipping.trackingNumber","location":"payments-core/com.stripe.android.model/-source-order-params/-shipping/tracking-number.html","searchKeys":["trackingNumber","val trackingNumber: String? = null","com.stripe.android.model.SourceOrderParams.Shipping.trackingNumber"]},{"name":"val transactionId: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.transactionId","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s2/transaction-id.html","searchKeys":["transactionId","val transactionId: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS2.transactionId"]},{"name":"val type: PaymentIntent.Error.Type?","description":"com.stripe.android.model.PaymentIntent.Error.type","location":"payments-core/com.stripe.android.model/-payment-intent/-error/type.html","searchKeys":["type","val type: PaymentIntent.Error.Type?","com.stripe.android.model.PaymentIntent.Error.type"]},{"name":"val type: PaymentMethod.Type","description":"com.stripe.android.model.PaymentMethodOptionsParams.type","location":"payments-core/com.stripe.android.model/-payment-method-options-params/type.html","searchKeys":["type","val type: PaymentMethod.Type","com.stripe.android.model.PaymentMethodOptionsParams.type"]},{"name":"val type: PaymentMethod.Type?","description":"com.stripe.android.model.PaymentMethod.type","location":"payments-core/com.stripe.android.model/-payment-method/type.html","searchKeys":["type","val type: PaymentMethod.Type?","com.stripe.android.model.PaymentMethod.type"]},{"name":"val type: SetupIntent.Error.Type?","description":"com.stripe.android.model.SetupIntent.Error.type","location":"payments-core/com.stripe.android.model/-setup-intent/-error/type.html","searchKeys":["type","val type: SetupIntent.Error.Type?","com.stripe.android.model.SetupIntent.Error.type"]},{"name":"val type: SourceOrder.Item.Type","description":"com.stripe.android.model.SourceOrder.Item.type","location":"payments-core/com.stripe.android.model/-source-order/-item/type.html","searchKeys":["type","val type: SourceOrder.Item.Type","com.stripe.android.model.SourceOrder.Item.type"]},{"name":"val type: SourceOrderParams.Item.Type? = null","description":"com.stripe.android.model.SourceOrderParams.Item.type","location":"payments-core/com.stripe.android.model/-source-order-params/-item/type.html","searchKeys":["type","val type: SourceOrderParams.Item.Type? = null","com.stripe.android.model.SourceOrderParams.Item.type"]},{"name":"val type: String","description":"com.stripe.android.model.Source.type","location":"payments-core/com.stripe.android.model/-source/type.html","searchKeys":["type","val type: String","com.stripe.android.model.Source.type"]},{"name":"val type: String","description":"com.stripe.android.model.SourceParams.type","location":"payments-core/com.stripe.android.model/-source-params/type.html","searchKeys":["type","val type: String","com.stripe.android.model.SourceParams.type"]},{"name":"val type: String? = null","description":"com.stripe.android.StripeError.type","location":"payments-core/com.stripe.android/-stripe-error/type.html","searchKeys":["type","val type: String? = null","com.stripe.android.StripeError.type"]},{"name":"val type: String? = null","description":"com.stripe.android.model.StripeFile.type","location":"payments-core/com.stripe.android.model/-stripe-file/type.html","searchKeys":["type","val type: String? = null","com.stripe.android.model.StripeFile.type"]},{"name":"val type: Token.Type","description":"com.stripe.android.model.Token.type","location":"payments-core/com.stripe.android.model/-token/type.html","searchKeys":["type","val type: Token.Type","com.stripe.android.model.Token.type"]},{"name":"val typeCode: String","description":"com.stripe.android.model.PaymentMethodCreateParams.typeCode","location":"payments-core/com.stripe.android.model/-payment-method-create-params/type-code.html","searchKeys":["typeCode","val typeCode: String","com.stripe.android.model.PaymentMethodCreateParams.typeCode"]},{"name":"val typeRaw: String","description":"com.stripe.android.model.Source.typeRaw","location":"payments-core/com.stripe.android.model/-source/type-raw.html","searchKeys":["typeRaw","val typeRaw: String","com.stripe.android.model.Source.typeRaw"]},{"name":"val typeRaw: String","description":"com.stripe.android.model.SourceParams.typeRaw","location":"payments-core/com.stripe.android.model/-source-params/type-raw.html","searchKeys":["typeRaw","val typeRaw: String","com.stripe.android.model.SourceParams.typeRaw"]},{"name":"val uiCustomization: StripeUiCustomization","description":"com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.uiCustomization","location":"payments-core/com.stripe.android/-payment-auth-config/-stripe3ds2-ui-customization/ui-customization.html","searchKeys":["uiCustomization","val uiCustomization: StripeUiCustomization","com.stripe.android.PaymentAuthConfig.Stripe3ds2UiCustomization.uiCustomization"]},{"name":"val upi: PaymentMethod.Upi? = null","description":"com.stripe.android.model.PaymentMethod.upi","location":"payments-core/com.stripe.android.model/-payment-method/upi.html","searchKeys":["upi","val upi: PaymentMethod.Upi? = null","com.stripe.android.model.PaymentMethod.upi"]},{"name":"val url: String","description":"com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.url","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-sdk-data/-use3-d-s1/url.html","searchKeys":["url","val url: String","com.stripe.android.model.StripeIntent.NextActionData.SdkData.Use3DS1.url"]},{"name":"val url: String?","description":"com.stripe.android.model.Customer.url","location":"payments-core/com.stripe.android.model/-customer/url.html","searchKeys":["url","val url: String?","com.stripe.android.model.Customer.url"]},{"name":"val url: String?","description":"com.stripe.android.model.Source.Redirect.url","location":"payments-core/com.stripe.android.model/-source/-redirect/url.html","searchKeys":["url","val url: String?","com.stripe.android.model.Source.Redirect.url"]},{"name":"val url: String? = null","description":"com.stripe.android.model.StripeFile.url","location":"payments-core/com.stripe.android.model/-stripe-file/url.html","searchKeys":["url","val url: String? = null","com.stripe.android.model.StripeFile.url"]},{"name":"val url: Uri","description":"com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.url","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-redirect-to-url/url.html","searchKeys":["url","val url: Uri","com.stripe.android.model.StripeIntent.NextActionData.RedirectToUrl.url"]},{"name":"val usage: Source.Usage? = null","description":"com.stripe.android.model.Source.usage","location":"payments-core/com.stripe.android.model/-source/usage.html","searchKeys":["usage","val usage: Source.Usage? = null","com.stripe.android.model.Source.usage"]},{"name":"val usage: StripeIntent.Usage?","description":"com.stripe.android.model.SetupIntent.usage","location":"payments-core/com.stripe.android.model/-setup-intent/usage.html","searchKeys":["usage","val usage: StripeIntent.Usage?","com.stripe.android.model.SetupIntent.usage"]},{"name":"val useGooglePay: Boolean = false","description":"com.stripe.android.PaymentSessionData.useGooglePay","location":"payments-core/com.stripe.android/-payment-session-data/use-google-pay.html","searchKeys":["useGooglePay","val useGooglePay: Boolean = false","com.stripe.android.PaymentSessionData.useGooglePay"]},{"name":"val useGooglePay: Boolean = false","description":"com.stripe.android.view.PaymentMethodsActivityStarter.Result.useGooglePay","location":"payments-core/com.stripe.android.view/-payment-methods-activity-starter/-result/use-google-pay.html","searchKeys":["useGooglePay","val useGooglePay: Boolean = false","com.stripe.android.view.PaymentMethodsActivityStarter.Result.useGooglePay"]},{"name":"val used: Boolean","description":"com.stripe.android.model.Token.used","location":"payments-core/com.stripe.android.model/-token/used.html","searchKeys":["used","val used: Boolean","com.stripe.android.model.Token.used"]},{"name":"val validatedDate: ExpirationDate.Validated?","description":"com.stripe.android.view.ExpiryDateEditText.validatedDate","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/validated-date.html","searchKeys":["validatedDate","val validatedDate: ExpirationDate.Validated?","com.stripe.android.view.ExpiryDateEditText.validatedDate"]},{"name":"val value: KClass","description":"com.stripe.android.payments.core.injection.IntentAuthenticatorKey.value","location":"payments-core/com.stripe.android.payments.core.injection/-intent-authenticator-key/value.html","searchKeys":["value","val value: KClass","com.stripe.android.payments.core.injection.IntentAuthenticatorKey.value"]},{"name":"val verification: PersonTokenParams.Verification? = null","description":"com.stripe.android.model.PersonTokenParams.verification","location":"payments-core/com.stripe.android.model/-person-token-params/verification.html","searchKeys":["verification","val verification: PersonTokenParams.Verification? = null","com.stripe.android.model.PersonTokenParams.verification"]},{"name":"val verifiedAddress: Address?","description":"com.stripe.android.model.Source.Owner.verifiedAddress","location":"payments-core/com.stripe.android.model/-source/-owner/verified-address.html","searchKeys":["verifiedAddress","val verifiedAddress: Address?","com.stripe.android.model.Source.Owner.verifiedAddress"]},{"name":"val verifiedEmail: String?","description":"com.stripe.android.model.Source.Owner.verifiedEmail","location":"payments-core/com.stripe.android.model/-source/-owner/verified-email.html","searchKeys":["verifiedEmail","val verifiedEmail: String?","com.stripe.android.model.Source.Owner.verifiedEmail"]},{"name":"val verifiedName: String?","description":"com.stripe.android.model.Source.Owner.verifiedName","location":"payments-core/com.stripe.android.model/-source/-owner/verified-name.html","searchKeys":["verifiedName","val verifiedName: String?","com.stripe.android.model.Source.Owner.verifiedName"]},{"name":"val verifiedPhone: String?","description":"com.stripe.android.model.Source.Owner.verifiedPhone","location":"payments-core/com.stripe.android.model/-source/-owner/verified-phone.html","searchKeys":["verifiedPhone","val verifiedPhone: String?","com.stripe.android.model.Source.Owner.verifiedPhone"]},{"name":"val vpa: String?","description":"com.stripe.android.model.PaymentMethod.Upi.vpa","location":"payments-core/com.stripe.android.model/-payment-method/-upi/vpa.html","searchKeys":["vpa","val vpa: String?","com.stripe.android.model.PaymentMethod.Upi.vpa"]},{"name":"val wallet: Wallet? = null","description":"com.stripe.android.model.PaymentMethod.Card.wallet","location":"payments-core/com.stripe.android.model/-payment-method/-card/wallet.html","searchKeys":["wallet","val wallet: Wallet? = null","com.stripe.android.model.PaymentMethod.Card.wallet"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.Source.weChat","location":"payments-core/com.stripe.android.model/-source/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.Source.weChat"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.weChat","location":"payments-core/com.stripe.android.model/-stripe-intent/-next-action-data/-we-chat-pay-redirect/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.StripeIntent.NextActionData.WeChatPayRedirect.weChat"]},{"name":"val weChat: WeChat","description":"com.stripe.android.model.WeChatPayNextAction.weChat","location":"payments-core/com.stripe.android.model/-we-chat-pay-next-action/we-chat.html","searchKeys":["weChat","val weChat: WeChat","com.stripe.android.model.WeChatPayNextAction.weChat"]},{"name":"val year: Int","description":"com.stripe.android.model.DateOfBirth.year","location":"payments-core/com.stripe.android.model/-date-of-birth/year.html","searchKeys":["year","val year: Int","com.stripe.android.model.DateOfBirth.year"]},{"name":"val year: Int","description":"com.stripe.android.model.ExpirationDate.Validated.year","location":"payments-core/com.stripe.android.model/-expiration-date/-validated/year.html","searchKeys":["year","val year: Int","com.stripe.android.model.ExpirationDate.Validated.year"]},{"name":"var accountNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.accountNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/account-number.html","searchKeys":["accountNumber","var accountNumber: String","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.accountNumber"]},{"name":"var accountNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.accountNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/account-number.html","searchKeys":["accountNumber","var accountNumber: String","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.accountNumber"]},{"name":"var additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.additionalDocument","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/additional-document.html","searchKeys":["additionalDocument","var additionalDocument: AccountParams.BusinessTypeParams.Individual.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.additionalDocument"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.address","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.address"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.address","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.address"]},{"name":"var address: Address? = null","description":"com.stripe.android.model.CardParams.address","location":"payments-core/com.stripe.android.model/-card-params/address.html","searchKeys":["address","var address: Address? = null","com.stripe.android.model.CardParams.address"]},{"name":"var addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address-kana.html","searchKeys":["addressKana","var addressKana: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKana"]},{"name":"var addressKana: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address-kana.html","searchKeys":["addressKana","var addressKana: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKana"]},{"name":"var addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/address-kanji.html","searchKeys":["addressKanji","var addressKanji: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.addressKanji"]},{"name":"var addressKanji: AddressJapanParams? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/address-kanji.html","searchKeys":["addressKanji","var addressKanji: AddressJapanParams? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.addressKanji"]},{"name":"var advancedFraudSignalsEnabled: Boolean = true","description":"com.stripe.android.Stripe.Companion.advancedFraudSignalsEnabled","location":"payments-core/com.stripe.android/-stripe/-companion/advanced-fraud-signals-enabled.html","searchKeys":["advancedFraudSignalsEnabled","var advancedFraudSignalsEnabled: Boolean = true","com.stripe.android.Stripe.Companion.advancedFraudSignalsEnabled"]},{"name":"var amount: Long? = null","description":"com.stripe.android.model.SourceParams.amount","location":"payments-core/com.stripe.android.model/-source-params/amount.html","searchKeys":["amount","var amount: Long? = null","com.stripe.android.model.SourceParams.amount"]},{"name":"var appId: String","description":"com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.appId","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-we-chat-pay/app-id.html","searchKeys":["appId","var appId: String","com.stripe.android.model.PaymentMethodOptionsParams.WeChatPay.appId"]},{"name":"var appInfo: AppInfo? = null","description":"com.stripe.android.Stripe.Companion.appInfo","location":"payments-core/com.stripe.android/-stripe/-companion/app-info.html","searchKeys":["appInfo","var appInfo: AppInfo? = null","com.stripe.android.Stripe.Companion.appInfo"]},{"name":"var bank: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.Fpx.bank","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-fpx/bank.html","searchKeys":["bank","var bank: String?","com.stripe.android.model.PaymentMethodCreateParams.Fpx.bank"]},{"name":"var bank: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.Ideal.bank","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-ideal/bank.html","searchKeys":["bank","var bank: String?","com.stripe.android.model.PaymentMethodCreateParams.Ideal.bank"]},{"name":"var billingAddressConfig: GooglePayLauncher.BillingAddressConfig","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.billingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/billing-address-config.html","searchKeys":["billingAddressConfig","var billingAddressConfig: GooglePayLauncher.BillingAddressConfig","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.billingAddressConfig"]},{"name":"var billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.billingAddressConfig","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/billing-address-config.html","searchKeys":["billingAddressConfig","var billingAddressConfig: GooglePayPaymentMethodLauncher.BillingAddressConfig","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.billingAddressConfig"]},{"name":"var bsbNumber: String","description":"com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.bsbNumber","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-au-becs-debit/bsb-number.html","searchKeys":["bsbNumber","var bsbNumber: String","com.stripe.android.model.PaymentMethodCreateParams.AuBecsDebit.bsbNumber"]},{"name":"var cardBrand: CardBrand","description":"com.stripe.android.view.CardNumberEditText.cardBrand","location":"payments-core/com.stripe.android.view/-card-number-edit-text/card-brand.html","searchKeys":["cardBrand","var cardBrand: CardBrand","com.stripe.android.view.CardNumberEditText.cardBrand"]},{"name":"var code: String","description":"com.stripe.android.model.PaymentMethodOptionsParams.Blik.code","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-blik/code.html","searchKeys":["code","var code: String","com.stripe.android.model.PaymentMethodOptionsParams.Blik.code"]},{"name":"var companyName: String","description":"com.stripe.android.view.BecsDebitMandateAcceptanceTextView.companyName","location":"payments-core/com.stripe.android.view/-becs-debit-mandate-acceptance-text-view/company-name.html","searchKeys":["companyName","var companyName: String","com.stripe.android.view.BecsDebitMandateAcceptanceTextView.companyName"]},{"name":"var currency: String? = null","description":"com.stripe.android.model.CardParams.currency","location":"payments-core/com.stripe.android.model/-card-params/currency.html","searchKeys":["currency","var currency: String? = null","com.stripe.android.model.CardParams.currency"]},{"name":"var currency: String? = null","description":"com.stripe.android.model.SourceParams.currency","location":"payments-core/com.stripe.android.model/-source-params/currency.html","searchKeys":["currency","var currency: String? = null","com.stripe.android.model.SourceParams.currency"]},{"name":"var customer: PaymentSheet.CustomerConfiguration? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.customer","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/customer.html","searchKeys":["customer","var customer: PaymentSheet.CustomerConfiguration? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.customer"]},{"name":"var cvc: String? = null","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.cvc","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/cvc.html","searchKeys":["cvc","var cvc: String? = null","com.stripe.android.model.PaymentMethodOptionsParams.Card.cvc"]},{"name":"var dateOfBirth: DateOfBirth? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.dateOfBirth","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/date-of-birth.html","searchKeys":["dateOfBirth","var dateOfBirth: DateOfBirth? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.dateOfBirth"]},{"name":"var directorsProvided: Boolean? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.directorsProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/directors-provided.html","searchKeys":["directorsProvided","var directorsProvided: Boolean? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.directorsProvided"]},{"name":"var document: AccountParams.BusinessTypeParams.Company.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/-verification/document.html","searchKeys":["document","var document: AccountParams.BusinessTypeParams.Company.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.Verification.document"]},{"name":"var document: AccountParams.BusinessTypeParams.Individual.Document? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.document","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/-verification/document.html","searchKeys":["document","var document: AccountParams.BusinessTypeParams.Individual.Document? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.Verification.document"]},{"name":"var email: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.email","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/email.html","searchKeys":["email","var email: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.email"]},{"name":"var executivesProvided: Boolean? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.executivesProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/executives-provided.html","searchKeys":["executivesProvided","var executivesProvided: Boolean? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.executivesProvided"]},{"name":"var existingPaymentMethodRequired: Boolean = true","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.existingPaymentMethodRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/existing-payment-method-required.html","searchKeys":["existingPaymentMethodRequired","var existingPaymentMethodRequired: Boolean = true","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.existingPaymentMethodRequired"]},{"name":"var existingPaymentMethodRequired: Boolean = true","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.existingPaymentMethodRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/existing-payment-method-required.html","searchKeys":["existingPaymentMethodRequired","var existingPaymentMethodRequired: Boolean = true","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.existingPaymentMethodRequired"]},{"name":"var firstName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name.html","searchKeys":["firstName","var firstName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstName"]},{"name":"var firstNameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name-kana.html","searchKeys":["firstNameKana","var firstNameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKana"]},{"name":"var firstNameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/first-name-kanji.html","searchKeys":["firstNameKanji","var firstNameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.firstNameKanji"]},{"name":"var flow: SourceParams.Flow? = null","description":"com.stripe.android.model.SourceParams.flow","location":"payments-core/com.stripe.android.model/-source-params/flow.html","searchKeys":["flow","var flow: SourceParams.Flow? = null","com.stripe.android.model.SourceParams.flow"]},{"name":"var gender: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.gender","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/gender.html","searchKeys":["gender","var gender: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.gender"]},{"name":"var googlePay: PaymentSheet.GooglePayConfiguration? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.googlePay","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/google-pay.html","searchKeys":["googlePay","var googlePay: PaymentSheet.GooglePayConfiguration? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.googlePay"]},{"name":"var hiddenFields: List","description":"com.stripe.android.view.ShippingInfoWidget.hiddenFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/hidden-fields.html","searchKeys":["hiddenFields","var hiddenFields: List","com.stripe.android.view.ShippingInfoWidget.hiddenFields"]},{"name":"var iban: String?","description":"com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.iban","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-sepa-debit/iban.html","searchKeys":["iban","var iban: String?","com.stripe.android.model.PaymentMethodCreateParams.SepaDebit.iban"]},{"name":"var idNumber: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.idNumber","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/id-number.html","searchKeys":["idNumber","var idNumber: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.idNumber"]},{"name":"var isCardNumberValid: Boolean = false","description":"com.stripe.android.view.CardNumberEditText.isCardNumberValid","location":"payments-core/com.stripe.android.view/-card-number-edit-text/is-card-number-valid.html","searchKeys":["isCardNumberValid","var isCardNumberValid: Boolean = false","com.stripe.android.view.CardNumberEditText.isCardNumberValid"]},{"name":"var isDateValid: Boolean = false","description":"com.stripe.android.view.ExpiryDateEditText.isDateValid","location":"payments-core/com.stripe.android.view/-expiry-date-edit-text/is-date-valid.html","searchKeys":["isDateValid","var isDateValid: Boolean = false","com.stripe.android.view.ExpiryDateEditText.isDateValid"]},{"name":"var isEmailRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.isEmailRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-launcher/-config/is-email-required.html","searchKeys":["isEmailRequired","var isEmailRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayLauncher.Config.isEmailRequired"]},{"name":"var isEmailRequired: Boolean = false","description":"com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.isEmailRequired","location":"payments-core/com.stripe.android.googlepaylauncher/-google-pay-payment-method-launcher/-config/is-email-required.html","searchKeys":["isEmailRequired","var isEmailRequired: Boolean = false","com.stripe.android.googlepaylauncher.GooglePayPaymentMethodLauncher.Config.isEmailRequired"]},{"name":"var lastName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name.html","searchKeys":["lastName","var lastName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastName"]},{"name":"var lastNameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name-kana.html","searchKeys":["lastNameKana","var lastNameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKana"]},{"name":"var lastNameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/last-name-kanji.html","searchKeys":["lastNameKanji","var lastNameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.lastNameKanji"]},{"name":"var maidenName: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.maidenName","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/maiden-name.html","searchKeys":["maidenName","var maidenName: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.maidenName"]},{"name":"var mandateData: MandateDataParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.mandateData","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/mandate-data.html","searchKeys":["mandateData","var mandateData: MandateDataParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.mandateData"]},{"name":"var mandateData: MandateDataParams? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.mandateData","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/mandate-data.html","searchKeys":["mandateData","var mandateData: MandateDataParams? = null","com.stripe.android.model.ConfirmSetupIntentParams.mandateData"]},{"name":"var mandateId: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.mandateId","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/mandate-id.html","searchKeys":["mandateId","var mandateId: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.mandateId"]},{"name":"var mandateId: String? = null","description":"com.stripe.android.model.ConfirmSetupIntentParams.mandateId","location":"payments-core/com.stripe.android.model/-confirm-setup-intent-params/mandate-id.html","searchKeys":["mandateId","var mandateId: String? = null","com.stripe.android.model.ConfirmSetupIntentParams.mandateId"]},{"name":"var merchantDisplayName: String","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.merchantDisplayName","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/merchant-display-name.html","searchKeys":["merchantDisplayName","var merchantDisplayName: String","com.stripe.android.paymentsheet.PaymentSheet.Configuration.merchantDisplayName"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.metadata","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.metadata"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.CardParams.metadata","location":"payments-core/com.stripe.android.model/-card-params/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.CardParams.metadata"]},{"name":"var metadata: Map? = null","description":"com.stripe.android.model.SourceParams.metadata","location":"payments-core/com.stripe.android.model/-source-params/metadata.html","searchKeys":["metadata","var metadata: Map? = null","com.stripe.android.model.SourceParams.metadata"]},{"name":"var name: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.name","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name.html","searchKeys":["name","var name: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.name"]},{"name":"var name: String? = null","description":"com.stripe.android.model.CardParams.name","location":"payments-core/com.stripe.android.model/-card-params/name.html","searchKeys":["name","var name: String? = null","com.stripe.android.model.CardParams.name"]},{"name":"var nameKana: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKana","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name-kana.html","searchKeys":["nameKana","var nameKana: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKana"]},{"name":"var nameKanji: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKanji","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/name-kanji.html","searchKeys":["nameKanji","var nameKanji: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.nameKanji"]},{"name":"var network: String? = null","description":"com.stripe.android.model.PaymentMethodOptionsParams.Card.network","location":"payments-core/com.stripe.android.model/-payment-method-options-params/-card/network.html","searchKeys":["network","var network: String? = null","com.stripe.android.model.PaymentMethodOptionsParams.Card.network"]},{"name":"var optionalFields: List","description":"com.stripe.android.view.ShippingInfoWidget.optionalFields","location":"payments-core/com.stripe.android.view/-shipping-info-widget/optional-fields.html","searchKeys":["optionalFields","var optionalFields: List","com.stripe.android.view.ShippingInfoWidget.optionalFields"]},{"name":"var owner: SourceParams.OwnerParams? = null","description":"com.stripe.android.model.SourceParams.owner","location":"payments-core/com.stripe.android.model/-source-params/owner.html","searchKeys":["owner","var owner: SourceParams.OwnerParams? = null","com.stripe.android.model.SourceParams.owner"]},{"name":"var ownersProvided: Boolean? = false","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.ownersProvided","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/owners-provided.html","searchKeys":["ownersProvided","var ownersProvided: Boolean? = false","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.ownersProvided"]},{"name":"var paymentMethodOptions: PaymentMethodOptionsParams? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodOptions","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/payment-method-options.html","searchKeys":["paymentMethodOptions","var paymentMethodOptions: PaymentMethodOptionsParams? = null","com.stripe.android.model.ConfirmPaymentIntentParams.paymentMethodOptions"]},{"name":"var phone: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.phone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/phone.html","searchKeys":["phone","var phone: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.phone"]},{"name":"var phone: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.phone","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/phone.html","searchKeys":["phone","var phone: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.phone"]},{"name":"var postalCodeEnabled: Boolean","description":"com.stripe.android.view.CardInputWidget.postalCodeEnabled","location":"payments-core/com.stripe.android.view/-card-input-widget/postal-code-enabled.html","searchKeys":["postalCodeEnabled","var postalCodeEnabled: Boolean","com.stripe.android.view.CardInputWidget.postalCodeEnabled"]},{"name":"var postalCodeRequired: Boolean","description":"com.stripe.android.view.CardInputWidget.postalCodeRequired","location":"payments-core/com.stripe.android.view/-card-input-widget/postal-code-required.html","searchKeys":["postalCodeRequired","var postalCodeRequired: Boolean","com.stripe.android.view.CardInputWidget.postalCodeRequired"]},{"name":"var postalCodeRequired: Boolean","description":"com.stripe.android.view.CardMultilineWidget.postalCodeRequired","location":"payments-core/com.stripe.android.view/-card-multiline-widget/postal-code-required.html","searchKeys":["postalCodeRequired","var postalCodeRequired: Boolean","com.stripe.android.view.CardMultilineWidget.postalCodeRequired"]},{"name":"var primaryButtonColor: ColorStateList? = null","description":"com.stripe.android.paymentsheet.PaymentSheet.Configuration.primaryButtonColor","location":"payments-core/com.stripe.android.paymentsheet/-payment-sheet/-configuration/primary-button-color.html","searchKeys":["primaryButtonColor","var primaryButtonColor: ColorStateList? = null","com.stripe.android.paymentsheet.PaymentSheet.Configuration.primaryButtonColor"]},{"name":"var receiptEmail: String? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.receiptEmail","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/receipt-email.html","searchKeys":["receiptEmail","var receiptEmail: String? = null","com.stripe.android.model.ConfirmPaymentIntentParams.receiptEmail"]},{"name":"var returnUrl: String? = null","description":"com.stripe.android.model.SourceParams.returnUrl","location":"payments-core/com.stripe.android.model/-source-params/return-url.html","searchKeys":["returnUrl","var returnUrl: String? = null","com.stripe.android.model.SourceParams.returnUrl"]},{"name":"var savePaymentMethod: Boolean? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.savePaymentMethod","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/save-payment-method.html","searchKeys":["savePaymentMethod","var savePaymentMethod: Boolean? = null","com.stripe.android.model.ConfirmPaymentIntentParams.savePaymentMethod"]},{"name":"var setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.setupFutureUsage","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/setup-future-usage.html","searchKeys":["setupFutureUsage","var setupFutureUsage: ConfirmPaymentIntentParams.SetupFutureUsage? = null","com.stripe.android.model.ConfirmPaymentIntentParams.setupFutureUsage"]},{"name":"var shipping: ConfirmPaymentIntentParams.Shipping? = null","description":"com.stripe.android.model.ConfirmPaymentIntentParams.shipping","location":"payments-core/com.stripe.android.model/-confirm-payment-intent-params/shipping.html","searchKeys":["shipping","var shipping: ConfirmPaymentIntentParams.Shipping? = null","com.stripe.android.model.ConfirmPaymentIntentParams.shipping"]},{"name":"var shouldShowError: Boolean = false","description":"com.stripe.android.view.StripeEditText.shouldShowError","location":"payments-core/com.stripe.android.view/-stripe-edit-text/should-show-error.html","searchKeys":["shouldShowError","var shouldShowError: Boolean = false","com.stripe.android.view.StripeEditText.shouldShowError"]},{"name":"var sortCode: String","description":"com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.sortCode","location":"payments-core/com.stripe.android.model/-payment-method-create-params/-bacs-debit/sort-code.html","searchKeys":["sortCode","var sortCode: String","com.stripe.android.model.PaymentMethodCreateParams.BacsDebit.sortCode"]},{"name":"var sourceOrder: SourceOrderParams? = null","description":"com.stripe.android.model.SourceParams.sourceOrder","location":"payments-core/com.stripe.android.model/-source-params/source-order.html","searchKeys":["sourceOrder","var sourceOrder: SourceOrderParams? = null","com.stripe.android.model.SourceParams.sourceOrder"]},{"name":"var ssnLast4: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.ssnLast4","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/ssn-last4.html","searchKeys":["ssnLast4","var ssnLast4: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.ssnLast4"]},{"name":"var taxId: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/tax-id.html","searchKeys":["taxId","var taxId: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxId"]},{"name":"var taxIdRegistrar: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxIdRegistrar","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/tax-id-registrar.html","searchKeys":["taxIdRegistrar","var taxIdRegistrar: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.taxIdRegistrar"]},{"name":"var token: String? = null","description":"com.stripe.android.model.SourceParams.token","location":"payments-core/com.stripe.android.model/-source-params/token.html","searchKeys":["token","var token: String? = null","com.stripe.android.model.SourceParams.token"]},{"name":"var usZipCodeRequired: Boolean","description":"com.stripe.android.view.CardInputWidget.usZipCodeRequired","location":"payments-core/com.stripe.android.view/-card-input-widget/us-zip-code-required.html","searchKeys":["usZipCodeRequired","var usZipCodeRequired: Boolean","com.stripe.android.view.CardInputWidget.usZipCodeRequired"]},{"name":"var usZipCodeRequired: Boolean","description":"com.stripe.android.view.CardMultilineWidget.usZipCodeRequired","location":"payments-core/com.stripe.android.view/-card-multiline-widget/us-zip-code-required.html","searchKeys":["usZipCodeRequired","var usZipCodeRequired: Boolean","com.stripe.android.view.CardMultilineWidget.usZipCodeRequired"]},{"name":"var usage: Source.Usage? = null","description":"com.stripe.android.model.SourceParams.usage","location":"payments-core/com.stripe.android.model/-source-params/usage.html","searchKeys":["usage","var usage: Source.Usage? = null","com.stripe.android.model.SourceParams.usage"]},{"name":"var validParamsCallback: BecsDebitWidget.ValidParamsCallback","description":"com.stripe.android.view.BecsDebitWidget.validParamsCallback","location":"payments-core/com.stripe.android.view/-becs-debit-widget/valid-params-callback.html","searchKeys":["validParamsCallback","var validParamsCallback: BecsDebitWidget.ValidParamsCallback","com.stripe.android.view.BecsDebitWidget.validParamsCallback"]},{"name":"var vatId: String? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.vatId","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/vat-id.html","searchKeys":["vatId","var vatId: String? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.vatId"]},{"name":"var verification: AccountParams.BusinessTypeParams.Company.Verification? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Company.verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-company/verification.html","searchKeys":["verification","var verification: AccountParams.BusinessTypeParams.Company.Verification? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Company.verification"]},{"name":"var verification: AccountParams.BusinessTypeParams.Individual.Verification? = null","description":"com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.verification","location":"payments-core/com.stripe.android.model/-account-params/-business-type-params/-individual/verification.html","searchKeys":["verification","var verification: AccountParams.BusinessTypeParams.Individual.Verification? = null","com.stripe.android.model.AccountParams.BusinessTypeParams.Individual.verification"]},{"name":"Bancontact(\"bancontact\", R.string.stripe_paymentsheet_payment_method_bancontact, R.drawable.stripe_ic_paymentsheet_pm_bancontact, bancontact)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/index.html","searchKeys":["Bancontact","Bancontact(\"bancontact\", R.string.stripe_paymentsheet_payment_method_bancontact, R.drawable.stripe_ic_paymentsheet_pm_bancontact, bancontact)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact"]},{"name":"Card(\"card\", R.string.stripe_paymentsheet_payment_method_card, R.drawable.stripe_ic_paymentsheet_pm_card, null)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/index.html","searchKeys":["Card","Card(\"card\", R.string.stripe_paymentsheet_payment_method_card, R.drawable.stripe_ic_paymentsheet_pm_card, null)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card"]},{"name":"Eps(\"eps\", R.string.stripe_paymentsheet_payment_method_eps, R.drawable.stripe_ic_paymentsheet_pm_eps, eps)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/index.html","searchKeys":["Eps","Eps(\"eps\", R.string.stripe_paymentsheet_payment_method_eps, R.drawable.stripe_ic_paymentsheet_pm_eps, eps)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps"]},{"name":"Eps(\"epsBanks.json\")","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-eps/index.html","searchKeys":["Eps","Eps(\"epsBanks.json\")","com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps"]},{"name":"Giropay(\"giropay\", R.string.stripe_paymentsheet_payment_method_giropay, R.drawable.stripe_ic_paymentsheet_pm_giropay, giropay)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/index.html","searchKeys":["Giropay","Giropay(\"giropay\", R.string.stripe_paymentsheet_payment_method_giropay, R.drawable.stripe_ic_paymentsheet_pm_giropay, giropay)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay"]},{"name":"Ideal(\"ideal\", R.string.stripe_paymentsheet_payment_method_ideal, R.drawable.stripe_ic_paymentsheet_pm_ideal, ideal)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/index.html","searchKeys":["Ideal","Ideal(\"ideal\", R.string.stripe_paymentsheet_payment_method_ideal, R.drawable.stripe_ic_paymentsheet_pm_ideal, ideal)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal"]},{"name":"Ideal(\"idealBanks.json\")","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-ideal/index.html","searchKeys":["Ideal","Ideal(\"idealBanks.json\")","com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal"]},{"name":"P24(\"p24\", R.string.stripe_paymentsheet_payment_method_p24, R.drawable.stripe_ic_paymentsheet_pm_p24, p24)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/index.html","searchKeys":["P24","P24(\"p24\", R.string.stripe_paymentsheet_payment_method_p24, R.drawable.stripe_ic_paymentsheet_pm_p24, p24)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24"]},{"name":"P24(\"p24Banks.json\")","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.P24","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-p24/index.html","searchKeys":["P24","P24(\"p24Banks.json\")","com.stripe.android.paymentsheet.specifications.SupportedBankType.P24"]},{"name":"SepaDebit(\"sepa_debit\", R.string.stripe_paymentsheet_payment_method_sepa_debit, R.drawable.stripe_ic_paymentsheet_pm_sepa_debit, sepaDebit)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/index.html","searchKeys":["SepaDebit","SepaDebit(\"sepa_debit\", R.string.stripe_paymentsheet_payment_method_sepa_debit, R.drawable.stripe_ic_paymentsheet_pm_sepa_debit, sepaDebit)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit"]},{"name":"Sofort(\"sofort\", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_klarna, sofort)","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/index.html","searchKeys":["Sofort","Sofort(\"sofort\", R.string.stripe_paymentsheet_payment_method_sofort, R.drawable.stripe_ic_paymentsheet_pm_klarna, sofort)","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort"]},{"name":"abstract val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.RequiredItemSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/identifier.html","searchKeys":["identifier","abstract val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.RequiredItemSpec.identifier"]},{"name":"class ComposeFormDataCollectionFragment : Fragment","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/index.html","searchKeys":["ComposeFormDataCollectionFragment","class ComposeFormDataCollectionFragment : Fragment","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment"]},{"name":"class FormFieldValues(fieldValuePairs: Map, saveForFutureUse: Boolean, showsMandate: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/index.html","searchKeys":["FormFieldValues","class FormFieldValues(fieldValuePairs: Map, saveForFutureUse: Boolean, showsMandate: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldValues"]},{"name":"class FormViewModel : ViewModel","description":"com.stripe.android.paymentsheet.forms.FormViewModel","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/index.html","searchKeys":["FormViewModel","class FormViewModel : ViewModel","com.stripe.android.paymentsheet.forms.FormViewModel"]},{"name":"const val EXTRA_MERCHANT_NAME: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_MERCHANT_NAME","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-m-e-r-c-h-a-n-t_-n-a-m-e.html","searchKeys":["EXTRA_MERCHANT_NAME","const val EXTRA_MERCHANT_NAME: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_MERCHANT_NAME"]},{"name":"const val EXTRA_PAYMENT_METHOD: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_PAYMENT_METHOD","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-p-a-y-m-e-n-t_-m-e-t-h-o-d.html","searchKeys":["EXTRA_PAYMENT_METHOD","const val EXTRA_PAYMENT_METHOD: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_PAYMENT_METHOD"]},{"name":"const val EXTRA_SAVE_FOR_FUTURE_USE_VALUE: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VALUE","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-s-a-v-e_-f-o-r_-f-u-t-u-r-e_-u-s-e_-v-a-l-u-e.html","searchKeys":["EXTRA_SAVE_FOR_FUTURE_USE_VALUE","const val EXTRA_SAVE_FOR_FUTURE_USE_VALUE: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VALUE"]},{"name":"const val EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY: String","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/-e-x-t-r-a_-s-a-v-e_-f-o-r_-f-u-t-u-r-e_-u-s-e_-v-i-s-i-b-i-l-i-t-y.html","searchKeys":["EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY","const val EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY: String","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion.EXTRA_SAVE_FOR_FUTURE_USE_VISIBILITY"]},{"name":"data class AddressSpec(identifier: IdentifierSpec) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-address-spec/index.html","searchKeys":["AddressSpec","data class AddressSpec(identifier: IdentifierSpec) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec"]},{"name":"data class BankDropdown(identifier: IdentifierSpec, label: Int, bankType: SupportedBankType) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-bank-dropdown/index.html","searchKeys":["BankDropdown","data class BankDropdown(identifier: IdentifierSpec, label: Int, bankType: SupportedBankType) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown"]},{"name":"data class Country(onlyShowCountryCodes: Set) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/index.html","searchKeys":["Country","data class Country(onlyShowCountryCodes: Set) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country"]},{"name":"data class DropdownItem(value: String, text: String)","description":"com.stripe.android.paymentsheet.specifications.DropdownItem","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-dropdown-item/index.html","searchKeys":["DropdownItem","data class DropdownItem(value: String, text: String)","com.stripe.android.paymentsheet.specifications.DropdownItem"]},{"name":"data class FormFieldEntry(value: String?, isComplete: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/index.html","searchKeys":["FormFieldEntry","data class FormFieldEntry(value: String?, isComplete: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldEntry"]},{"name":"data class FormSpec(layout: LayoutSpec, paramKey: MutableMap)","description":"com.stripe.android.paymentsheet.specifications.FormSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/index.html","searchKeys":["FormSpec","data class FormSpec(layout: LayoutSpec, paramKey: MutableMap)","com.stripe.android.paymentsheet.specifications.FormSpec"]},{"name":"data class IdentifierSpec(value: String)","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/index.html","searchKeys":["IdentifierSpec","data class IdentifierSpec(value: String)","com.stripe.android.paymentsheet.specifications.IdentifierSpec"]},{"name":"data class LayoutSpec(items: List)","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/index.html","searchKeys":["LayoutSpec","data class LayoutSpec(items: List)","com.stripe.android.paymentsheet.specifications.LayoutSpec"]},{"name":"data class MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/index.html","searchKeys":["MandateTextSpec","data class MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec"]},{"name":"data class SaveForFutureUseSpec(identifierRequiredForFutureUse: List) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/index.html","searchKeys":["SaveForFutureUseSpec","data class SaveForFutureUseSpec(identifierRequiredForFutureUse: List) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec"]},{"name":"data class SectionSpec(identifier: IdentifierSpec, fields: List, title: Int?) : FormItemSpec, RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/index.html","searchKeys":["SectionSpec","data class SectionSpec(identifier: IdentifierSpec, fields: List, title: Int?) : FormItemSpec, RequiredItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec"]},{"name":"data class SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean) : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/index.html","searchKeys":["SimpleText","data class SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean) : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText"]},{"name":"enum SupportedBankType : Enum ","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/index.html","searchKeys":["SupportedBankType","enum SupportedBankType : Enum ","com.stripe.android.paymentsheet.specifications.SupportedBankType"]},{"name":"enum SupportedPaymentMethod : Enum ","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/index.html","searchKeys":["SupportedPaymentMethod","enum SupportedPaymentMethod : Enum ","com.stripe.android.paymentsheet.model.SupportedPaymentMethod"]},{"name":"fun AddressSpec(identifier: IdentifierSpec)","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec.AddressSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-address-spec/-address-spec.html","searchKeys":["AddressSpec","fun AddressSpec(identifier: IdentifierSpec)","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec.AddressSpec"]},{"name":"fun BankDropdown(identifier: IdentifierSpec, label: Int, bankType: SupportedBankType)","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.BankDropdown","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-bank-dropdown/-bank-dropdown.html","searchKeys":["BankDropdown","fun BankDropdown(identifier: IdentifierSpec, label: Int, bankType: SupportedBankType)","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.BankDropdown"]},{"name":"fun ComposeFormDataCollectionFragment()","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.ComposeFormDataCollectionFragment","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-compose-form-data-collection-fragment.html","searchKeys":["ComposeFormDataCollectionFragment","fun ComposeFormDataCollectionFragment()","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.ComposeFormDataCollectionFragment"]},{"name":"fun Country(onlyShowCountryCodes: Set = emptySet())","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.Country","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/-country.html","searchKeys":["Country","fun Country(onlyShowCountryCodes: Set = emptySet())","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.Country"]},{"name":"fun DropdownItem(value: String, text: String)","description":"com.stripe.android.paymentsheet.specifications.DropdownItem.DropdownItem","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-dropdown-item/-dropdown-item.html","searchKeys":["DropdownItem","fun DropdownItem(value: String, text: String)","com.stripe.android.paymentsheet.specifications.DropdownItem.DropdownItem"]},{"name":"fun FormFieldEntry(value: String?, isComplete: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.FormFieldEntry","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/-form-field-entry.html","searchKeys":["FormFieldEntry","fun FormFieldEntry(value: String?, isComplete: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldEntry.FormFieldEntry"]},{"name":"fun FormFieldValues(fieldValuePairs: Map = mapOf(), saveForFutureUse: Boolean, showsMandate: Boolean)","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.FormFieldValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/-form-field-values.html","searchKeys":["FormFieldValues","fun FormFieldValues(fieldValuePairs: Map = mapOf(), saveForFutureUse: Boolean, showsMandate: Boolean)","com.stripe.android.paymentsheet.forms.FormFieldValues.FormFieldValues"]},{"name":"fun FormSpec(layout: LayoutSpec, paramKey: MutableMap)","description":"com.stripe.android.paymentsheet.specifications.FormSpec.FormSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/-form-spec.html","searchKeys":["FormSpec","fun FormSpec(layout: LayoutSpec, paramKey: MutableMap)","com.stripe.android.paymentsheet.specifications.FormSpec.FormSpec"]},{"name":"fun IdentifierSpec(value: String)","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec.IdentifierSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/-identifier-spec.html","searchKeys":["IdentifierSpec","fun IdentifierSpec(value: String)","com.stripe.android.paymentsheet.specifications.IdentifierSpec.IdentifierSpec"]},{"name":"fun LayoutSpec(items: List)","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec.LayoutSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/-layout-spec.html","searchKeys":["LayoutSpec","fun LayoutSpec(items: List)","com.stripe.android.paymentsheet.specifications.LayoutSpec.LayoutSpec"]},{"name":"fun MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.MandateTextSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/-mandate-text-spec.html","searchKeys":["MandateTextSpec","fun MandateTextSpec(identifier: IdentifierSpec, stringResId: Int, color: Color)","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.MandateTextSpec"]},{"name":"fun SaveForFutureUseSpec(identifierRequiredForFutureUse: List)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.SaveForFutureUseSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/-save-for-future-use-spec.html","searchKeys":["SaveForFutureUseSpec","fun SaveForFutureUseSpec(identifierRequiredForFutureUse: List)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.SaveForFutureUseSpec"]},{"name":"fun SectionSpec(identifier: IdentifierSpec, field: SectionFieldSpec, title: Int? = null)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/-section-spec.html","searchKeys":["SectionSpec","fun SectionSpec(identifier: IdentifierSpec, field: SectionFieldSpec, title: Int? = null)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec"]},{"name":"fun SectionSpec(identifier: IdentifierSpec, fields: List, title: Int? = null)","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/-section-spec.html","searchKeys":["SectionSpec","fun SectionSpec(identifier: IdentifierSpec, fields: List, title: Int? = null)","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.SectionSpec"]},{"name":"fun SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean = false)","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.SimpleText","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/-simple-text.html","searchKeys":["SimpleText","fun SimpleText(identifier: IdentifierSpec, label: Int, capitalization: KeyboardCapitalization, keyboardType: KeyboardType, showOptionalLabel: Boolean = false)","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.SimpleText"]},{"name":"fun fromCode(code: String?): SupportedPaymentMethod?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.fromCode","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/from-code.html","searchKeys":["fromCode","fun fromCode(code: String?): SupportedPaymentMethod?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.fromCode"]},{"name":"fun setProcessing(processing: Boolean)","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.setProcessing","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/set-processing.html","searchKeys":["setProcessing","fun setProcessing(processing: Boolean)","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.setProcessing"]},{"name":"interface RequiredItemSpec","description":"com.stripe.android.paymentsheet.specifications.RequiredItemSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-required-item-spec/index.html","searchKeys":["RequiredItemSpec","interface RequiredItemSpec","com.stripe.android.paymentsheet.specifications.RequiredItemSpec"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion"]},{"name":"object Companion","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/-companion/index.html","searchKeys":["Companion","object Companion","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.Companion"]},{"name":"object Email : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Email","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-email/index.html","searchKeys":["Email","object Email : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Email"]},{"name":"object Iban : SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Iban","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-iban/index.html","searchKeys":["Iban","object Iban : SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Iban"]},{"name":"open override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.onCreateView","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/on-create-view.html","searchKeys":["onCreateView","open override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.onCreateView"]},{"name":"open override fun toString(): String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.toString","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/to-string.html","searchKeys":["toString","open override fun toString(): String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.toString"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-address-spec/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.AddressSpec.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-bank-dropdown/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.identifier"]},{"name":"open override val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/identifier.html","searchKeys":["identifier","open override val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.identifier"]},{"name":"open val identifier: IdentifierSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.identifier","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/identifier.html","searchKeys":["identifier","open val identifier: IdentifierSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.identifier"]},{"name":"sealed class FormItemSpec","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/index.html","searchKeys":["FormItemSpec","sealed class FormItemSpec","com.stripe.android.paymentsheet.specifications.FormItemSpec"]},{"name":"sealed class SectionFieldSpec","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/index.html","searchKeys":["SectionFieldSpec","sealed class SectionFieldSpec","com.stripe.android.paymentsheet.specifications.SectionFieldSpec"]},{"name":"val assetFileName: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.assetFileName","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-eps/asset-file-name.html","searchKeys":["assetFileName","val assetFileName: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.assetFileName"]},{"name":"val assetFileName: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.assetFileName","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-ideal/asset-file-name.html","searchKeys":["assetFileName","val assetFileName: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.assetFileName"]},{"name":"val assetFileName: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.assetFileName","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-p24/asset-file-name.html","searchKeys":["assetFileName","val assetFileName: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.assetFileName"]},{"name":"val assetFileName: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.assetFileName","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/asset-file-name.html","searchKeys":["assetFileName","val assetFileName: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.assetFileName"]},{"name":"val bankType: SupportedBankType","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.bankType","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-bank-dropdown/bank-type.html","searchKeys":["bankType","val bankType: SupportedBankType","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.bankType"]},{"name":"val capitalization: KeyboardCapitalization","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.capitalization","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/capitalization.html","searchKeys":["capitalization","val capitalization: KeyboardCapitalization","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.capitalization"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.code"]},{"name":"val code: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.code","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/code.html","searchKeys":["code","val code: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.code"]},{"name":"val color: Color","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.color","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/color.html","searchKeys":["color","val color: Color","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.color"]},{"name":"val completeFormValues: Flow","description":"com.stripe.android.paymentsheet.forms.FormViewModel.completeFormValues","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-view-model/complete-form-values.html","searchKeys":["completeFormValues","val completeFormValues: Flow","com.stripe.android.paymentsheet.forms.FormViewModel.completeFormValues"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.displayNameResource"]},{"name":"val displayNameResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.displayNameResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/display-name-resource.html","searchKeys":["displayNameResource","val displayNameResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.displayNameResource"]},{"name":"val fieldValuePairs: Map","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.fieldValuePairs","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/field-value-pairs.html","searchKeys":["fieldValuePairs","val fieldValuePairs: Map","com.stripe.android.paymentsheet.forms.FormFieldValues.fieldValuePairs"]},{"name":"val fields: List","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.fields","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/fields.html","searchKeys":["fields","val fields: List","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.fields"]},{"name":"val formSpec: FormSpec","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.formSpec"]},{"name":"val formSpec: FormSpec?","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.formSpec","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/form-spec.html","searchKeys":["formSpec","val formSpec: FormSpec?","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.formSpec"]},{"name":"val formViewModel: FormViewModel","description":"com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formViewModel","location":"paymentsheet/com.stripe.android.paymentsheet.paymentdatacollection/-compose-form-data-collection-fragment/form-view-model.html","searchKeys":["formViewModel","val formViewModel: FormViewModel","com.stripe.android.paymentsheet.paymentdatacollection.ComposeFormDataCollectionFragment.formViewModel"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.iconResource"]},{"name":"val iconResource: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.iconResource","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/icon-resource.html","searchKeys":["iconResource","val iconResource: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.iconResource"]},{"name":"val identifierRequiredForFutureUse: List","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifierRequiredForFutureUse","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-save-for-future-use-spec/identifier-required-for-future-use.html","searchKeys":["identifierRequiredForFutureUse","val identifierRequiredForFutureUse: List","com.stripe.android.paymentsheet.specifications.FormItemSpec.SaveForFutureUseSpec.identifierRequiredForFutureUse"]},{"name":"val isComplete: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.isComplete","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/is-complete.html","searchKeys":["isComplete","val isComplete: Boolean","com.stripe.android.paymentsheet.forms.FormFieldEntry.isComplete"]},{"name":"val items: List","description":"com.stripe.android.paymentsheet.specifications.LayoutSpec.items","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-layout-spec/items.html","searchKeys":["items","val items: List","com.stripe.android.paymentsheet.specifications.LayoutSpec.items"]},{"name":"val keyboardType: KeyboardType","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.keyboardType","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/keyboard-type.html","searchKeys":["keyboardType","val keyboardType: KeyboardType","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.keyboardType"]},{"name":"val label: Int","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.label","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-bank-dropdown/label.html","searchKeys":["label","val label: Int","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.BankDropdown.label"]},{"name":"val label: Int","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.label","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/label.html","searchKeys":["label","val label: Int","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.label"]},{"name":"val layout: LayoutSpec","description":"com.stripe.android.paymentsheet.specifications.FormSpec.layout","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/layout.html","searchKeys":["layout","val layout: LayoutSpec","com.stripe.android.paymentsheet.specifications.FormSpec.layout"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.name","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.name","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-eps/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.name","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-ideal/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.name"]},{"name":"val name: String","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.name","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-p24/name.html","searchKeys":["name","val name: String","com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.name"]},{"name":"val onlyShowCountryCodes: Set","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.onlyShowCountryCodes","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-country/only-show-country-codes.html","searchKeys":["onlyShowCountryCodes","val onlyShowCountryCodes: Set","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.Country.onlyShowCountryCodes"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-bancontact/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Bancontact.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-card/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Card.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-eps/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Eps.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-giropay/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Giropay.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-ideal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Ideal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-p24/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.P24.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sepa-debit/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.SepaDebit.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-sofort/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Sofort.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-eps/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.specifications.SupportedBankType.Eps.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-ideal/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.specifications.SupportedBankType.Ideal.ordinal"]},{"name":"val ordinal: Int","description":"com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.ordinal","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-supported-bank-type/-p24/ordinal.html","searchKeys":["ordinal","val ordinal: Int","com.stripe.android.paymentsheet.specifications.SupportedBankType.P24.ordinal"]},{"name":"val paramKey: MutableMap","description":"com.stripe.android.paymentsheet.specifications.FormSpec.paramKey","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-spec/param-key.html","searchKeys":["paramKey","val paramKey: MutableMap","com.stripe.android.paymentsheet.specifications.FormSpec.paramKey"]},{"name":"val saveForFutureUse: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.saveForFutureUse","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/save-for-future-use.html","searchKeys":["saveForFutureUse","val saveForFutureUse: Boolean","com.stripe.android.paymentsheet.forms.FormFieldValues.saveForFutureUse"]},{"name":"val showOptionalLabel: Boolean = false","description":"com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.showOptionalLabel","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-section-field-spec/-simple-text/show-optional-label.html","searchKeys":["showOptionalLabel","val showOptionalLabel: Boolean = false","com.stripe.android.paymentsheet.specifications.SectionFieldSpec.SimpleText.showOptionalLabel"]},{"name":"val showsMandate: Boolean","description":"com.stripe.android.paymentsheet.forms.FormFieldValues.showsMandate","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-values/shows-mandate.html","searchKeys":["showsMandate","val showsMandate: Boolean","com.stripe.android.paymentsheet.forms.FormFieldValues.showsMandate"]},{"name":"val stringResId: Int","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.stringResId","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-mandate-text-spec/string-res-id.html","searchKeys":["stringResId","val stringResId: Int","com.stripe.android.paymentsheet.specifications.FormItemSpec.MandateTextSpec.stringResId"]},{"name":"val supportedSavedPaymentMethods: Set","description":"com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.supportedSavedPaymentMethods","location":"paymentsheet/com.stripe.android.paymentsheet.model/-supported-payment-method/-companion/supported-saved-payment-methods.html","searchKeys":["supportedSavedPaymentMethods","val supportedSavedPaymentMethods: Set","com.stripe.android.paymentsheet.model.SupportedPaymentMethod.Companion.supportedSavedPaymentMethods"]},{"name":"val text: String","description":"com.stripe.android.paymentsheet.specifications.DropdownItem.text","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-dropdown-item/text.html","searchKeys":["text","val text: String","com.stripe.android.paymentsheet.specifications.DropdownItem.text"]},{"name":"val title: Int? = null","description":"com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.title","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-form-item-spec/-section-spec/title.html","searchKeys":["title","val title: Int? = null","com.stripe.android.paymentsheet.specifications.FormItemSpec.SectionSpec.title"]},{"name":"val value: String","description":"com.stripe.android.paymentsheet.specifications.DropdownItem.value","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-dropdown-item/value.html","searchKeys":["value","val value: String","com.stripe.android.paymentsheet.specifications.DropdownItem.value"]},{"name":"val value: String","description":"com.stripe.android.paymentsheet.specifications.IdentifierSpec.value","location":"paymentsheet/com.stripe.android.paymentsheet.specifications/-identifier-spec/value.html","searchKeys":["value","val value: String","com.stripe.android.paymentsheet.specifications.IdentifierSpec.value"]},{"name":"val value: String?","description":"com.stripe.android.paymentsheet.forms.FormFieldEntry.value","location":"paymentsheet/com.stripe.android.paymentsheet.forms/-form-field-entry/value.html","searchKeys":["value","val value: String?","com.stripe.android.paymentsheet.forms.FormFieldEntry.value"]}] \ No newline at end of file