Class Eip155PrepareOrderResponse.TransactionData.Builder
-
- All Implemented Interfaces:
public final class Eip155PrepareOrderResponse.TransactionData.BuilderA builder for TransactionData.
-
-
Method Summary
-
-
Method Detail
-
abi
final Eip155PrepareOrderResponse.TransactionData.Builder abi(JsonValue abi)
JSON ABI of the smart contract function encoded in the transaction. Provided for informational purposes.
-
args
final Eip155PrepareOrderResponse.TransactionData.Builder args(JsonValue args)
Arguments to the smart contract function encoded in the transaction. Provided for informational purposes.
-
contractAddress
final Eip155PrepareOrderResponse.TransactionData.Builder contractAddress(String contractAddress)
Smart contract address that the transaction should call.
-
contractAddress
final Eip155PrepareOrderResponse.TransactionData.Builder contractAddress(JsonField<String> contractAddress)
Sets Builder.contractAddress to an arbitrary JSON value.
You should usually call Builder.contractAddress with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
data
final Eip155PrepareOrderResponse.TransactionData.Builder data(String data)
Hex-encoded function call.
-
data
final Eip155PrepareOrderResponse.TransactionData.Builder data(JsonField<String> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data 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 Eip155PrepareOrderResponse.TransactionData.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Eip155PrepareOrderResponse.TransactionData.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Eip155PrepareOrderResponse.TransactionData.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Eip155PrepareOrderResponse.TransactionData.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Eip155PrepareOrderResponse.TransactionData.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final Eip155PrepareOrderResponse.TransactionData build()
Returns an immutable instance of TransactionData.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.abi() .args() .contractAddress() .data()
-
-
-
-