AI-generated Key Takeaways
-
Wallet.WalletOptions is a class providing options for using the Wallet API and can be created using the Wallet.WalletOptions.Builder.
-
This class includes fields for specifying the environment and theme for Wallet screens.
-
Wallet.WalletOptions provides methods for checking equality, retrieving the associated account, and calculating the hash code.
implements Api.ApiOptions.HasAccountOptions
Options for using the Wallet API. To create an instance, use the Wallet.WalletOptions.Builder
.
Nested Class Summary
Field Summary
| public final int | environment | The environment to use. |
| public final int | theme | The theme to use for Wallet screens. |
Inherited Field Summary
Public Method Summary
| boolean | |
|---|---|
| Account | getAccount
()
|
| int | hashCode
()
|
Inherited Method Summary
Fields
public final int environment
The environment to use. Specify WalletConstants.ENVIRONMENT_TEST
until you have applied for and been granted
access to the Production environment. Defaults to WalletConstants.ENVIRONMENT_TEST
.
public final int theme
The theme to use for Wallet screens. The only legitimate value is WalletConstants.THEME_LIGHT
as this is the only supported theme. User-created themes are not supported. Defaults to WalletConstants.THEME_LIGHT
.

