Class Wallet
-
- All Implemented Interfaces:
public final class WalletInformation about a blockchain
Wallet.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classWallet.BuilderA builder for Wallet.
-
Method Summary
Modifier and Type Method Description final Stringaddress()Address of the Wallet.final BooleanisAmlFlagged()Indicates whether the Walletis flagged for AML violation.final BooleanisManagedWallet()Indicates whether the Walletis a Dinari-managed wallet.final JsonField<String>_address()Returns the raw JSON value of address. final JsonField<Boolean>_isAmlFlagged()Returns the raw JSON value of isAmlFlagged. final JsonField<Boolean>_isManagedWallet()Returns the raw JSON value of isManagedWallet. final Map<String, JsonValue>_additionalProperties()final Wallet.BuildertoBuilder()final Walletvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Wallet.Builderbuilder()Returns a mutable builder for constructing an instance of Wallet. -
-
Method Detail
-
isAmlFlagged
final Boolean isAmlFlagged()
Indicates whether the
Walletis flagged for AML violation.
-
isManagedWallet
final Boolean isManagedWallet()
Indicates whether the
Walletis a Dinari-managed wallet.
-
_address
final JsonField<String> _address()
Returns the raw JSON value of address.
Unlike address, this method doesn't throw if the JSON field has an unexpected type.
-
_isAmlFlagged
final JsonField<Boolean> _isAmlFlagged()
Returns the raw JSON value of isAmlFlagged.
Unlike isAmlFlagged, this method doesn't throw if the JSON field has an unexpected type.
-
_isManagedWallet
final JsonField<Boolean> _isManagedWallet()
Returns the raw JSON value of isManagedWallet.
Unlike isManagedWallet, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Wallet.Builder toBuilder()
-
builder
final static Wallet.Builder builder()
Returns a mutable builder for constructing an instance of Wallet.
The following fields are required:
.address() .isAmlFlagged() .isManagedWallet()
-
-
-
-