Interface TransactionOutputItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TransactionOutputItem.Builder,TransactionOutputItem>,SdkBuilder<TransactionOutputItem.Builder,TransactionOutputItem>,SdkPojo
- Enclosing class:
- TransactionOutputItem
public static interface TransactionOutputItem.Builder extends SdkPojo, CopyableBuilder<TransactionOutputItem.Builder,TransactionOutputItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransactionOutputItem.BuilderconfirmationStatus(String confirmationStatus)Specifies whether to list transactions that have not reached Finality.TransactionOutputItem.BuilderconfirmationStatus(ConfirmationStatus confirmationStatus)Specifies whether to list transactions that have not reached Finality.TransactionOutputItem.Buildernetwork(String network)The blockchain network where the transaction occurred.TransactionOutputItem.Buildernetwork(QueryNetwork network)The blockchain network where the transaction occurred.TransactionOutputItem.BuildertransactionHash(String transactionHash)The hash of a transaction.TransactionOutputItem.BuildertransactionId(String transactionId)The identifier of a Bitcoin transaction.TransactionOutputItem.BuildertransactionTimestamp(Instant transactionTimestamp)The time when the transaction occurred.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
transactionHash
TransactionOutputItem.Builder transactionHash(String transactionHash)
The hash of a transaction. It is generated when a transaction is created.
- Parameters:
transactionHash- The hash of a transaction. It is generated when a transaction is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transactionId
TransactionOutputItem.Builder transactionId(String transactionId)
The identifier of a Bitcoin transaction. It is generated when a transaction is created.
- Parameters:
transactionId- The identifier of a Bitcoin transaction. It is generated when a transaction is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
network
TransactionOutputItem.Builder network(String network)
The blockchain network where the transaction occurred.
- Parameters:
network- The blockchain network where the transaction occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryNetwork,QueryNetwork
-
network
TransactionOutputItem.Builder network(QueryNetwork network)
The blockchain network where the transaction occurred.
- Parameters:
network- The blockchain network where the transaction occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueryNetwork,QueryNetwork
-
transactionTimestamp
TransactionOutputItem.Builder transactionTimestamp(Instant transactionTimestamp)
The time when the transaction occurred.
- Parameters:
transactionTimestamp- The time when the transaction occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
confirmationStatus
TransactionOutputItem.Builder confirmationStatus(String confirmationStatus)
Specifies whether to list transactions that have not reached Finality.
- Parameters:
confirmationStatus- Specifies whether to list transactions that have not reached Finality.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfirmationStatus,ConfirmationStatus
-
confirmationStatus
TransactionOutputItem.Builder confirmationStatus(ConfirmationStatus confirmationStatus)
Specifies whether to list transactions that have not reached Finality.
- Parameters:
confirmationStatus- Specifies whether to list transactions that have not reached Finality.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfirmationStatus,ConfirmationStatus
-
-