Class ExternalConnectParams.Body
-
- All Implemented Interfaces:
public final class ExternalConnectParams.BodyInput parameters for connecting an
Accountto aWalletowned by theEntity.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classExternalConnectParams.Body.BuilderA builder for Body.
-
Method Summary
Modifier and Type Method Description final ChainchainId()CAIP-2 formatted chain ID of the blockchain the Walletto link is on.final Stringnonce()Nonce contained within the connection message. final Stringsignature()Signature payload from signing the connection message with the Wallet.final StringwalletAddress()Address of the Wallet.final JsonField<Chain>_chainId()Returns the raw JSON value of chainId. final JsonField<String>_nonce()Returns the raw JSON value of nonce. final JsonField<String>_signature()Returns the raw JSON value of signature. final JsonField<String>_walletAddress()Returns the raw JSON value of walletAddress. final Map<String, JsonValue>_additionalProperties()final ExternalConnectParams.Body.BuildertoBuilder()final ExternalConnectParams.Bodyvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ExternalConnectParams.Body.Builderbuilder()Returns a mutable builder for constructing an instance of Body. -
-
Method Detail
-
signature
final String signature()
Signature payload from signing the connection message with the
Wallet.
-
walletAddress
final String walletAddress()
Address of the
Wallet.
-
_chainId
final JsonField<Chain> _chainId()
Returns the raw JSON value of chainId.
Unlike chainId, this method doesn't throw if the JSON field has an unexpected type.
-
_nonce
final JsonField<String> _nonce()
Returns the raw JSON value of nonce.
Unlike nonce, this method doesn't throw if the JSON field has an unexpected type.
-
_signature
final JsonField<String> _signature()
Returns the raw JSON value of signature.
Unlike signature, this method doesn't throw if the JSON field has an unexpected type.
-
_walletAddress
final JsonField<String> _walletAddress()
Returns the raw JSON value of walletAddress.
Unlike walletAddress, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ExternalConnectParams.Body.Builder toBuilder()
-
validate
final ExternalConnectParams.Body validate()
-
builder
final static ExternalConnectParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
The following fields are required:
.chainId() .nonce() .signature() .walletAddress()
-
-
-
-