Class AccountGetCashBalancesResponse.Builder
-
- All Implemented Interfaces:
public final class AccountGetCashBalancesResponse.BuilderA builder for AccountGetCashBalancesResponse.
-
-
Method Summary
-
-
Method Detail
-
amount
final AccountGetCashBalancesResponse.Builder amount(Double amount)
Total amount of the payment token in the
Account.
-
amount
final AccountGetCashBalancesResponse.Builder amount(JsonField<Double> amount)
Sets Builder.amount to an arbitrary JSON value.
You should usually call Builder.amount with a well-typed Double value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
chainId
final AccountGetCashBalancesResponse.Builder chainId(Chain chainId)
CAIP-2 chain ID of the payment token.
-
chainId
final AccountGetCashBalancesResponse.Builder chainId(JsonField<Chain> chainId)
Sets Builder.chainId to an arbitrary JSON value.
You should usually call Builder.chainId with a well-typed Chain value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
symbol
final AccountGetCashBalancesResponse.Builder symbol(String symbol)
Symbol of the payment token.
-
symbol
final AccountGetCashBalancesResponse.Builder symbol(JsonField<String> symbol)
Sets Builder.symbol to an arbitrary JSON value.
You should usually call Builder.symbol with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
tokenAddress
final AccountGetCashBalancesResponse.Builder tokenAddress(String tokenAddress)
Address of the payment token.
-
tokenAddress
final AccountGetCashBalancesResponse.Builder tokenAddress(JsonField<String> tokenAddress)
Sets Builder.tokenAddress to an arbitrary JSON value.
You should usually call Builder.tokenAddress with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AccountGetCashBalancesResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AccountGetCashBalancesResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AccountGetCashBalancesResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AccountGetCashBalancesResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AccountGetCashBalancesResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AccountGetCashBalancesResponse build()
Returns an immutable instance of AccountGetCashBalancesResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.amount() .chainId() .symbol() .tokenAddress()
-
-
-
-