Module com.hedera.hashgraph.sdk
Package com.hedera.hashgraph.sdk.proto
Interface TransactionReceiptEntryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
TransactionReceiptEntry,TransactionReceiptEntry.Builder
@Generated
public interface TransactionReceiptEntryOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong* A node identifier.<br/> This identifies the node that submitted the transaction to consensus.* A status result.<br/> This is the final status after handling the transaction.int* A status result.<br/> This is the final status after handling the transaction.* A transaction identifier.<br/> This identifies the submitted transaction for this receipt.boolean* A transaction identifier.<br/> This identifies the submitted transaction for this receipt.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
getNodeId
long getNodeId()* A node identifier.<br/> This identifies the node that submitted the transaction to consensus. The value is the identifier as known to the current address book. <p> Valid node identifiers SHALL be between 0 and <tt>2<sup>63-1</sup></tt>, inclusive.
uint64 node_id = 1;- Returns:
- The nodeId.
-
hasTransactionId
boolean hasTransactionId()* A transaction identifier.<br/> This identifies the submitted transaction for this receipt.
.proto.TransactionID transaction_id = 2;- Returns:
- Whether the transactionId field is set.
-
getTransactionId
TransactionID getTransactionId()* A transaction identifier.<br/> This identifies the submitted transaction for this receipt.
.proto.TransactionID transaction_id = 2;- Returns:
- The transactionId.
-
getStatusValue
int getStatusValue()* A status result.<br/> This is the final status after handling the transaction.
.proto.ResponseCodeEnum status = 3;- Returns:
- The enum numeric value on the wire for status.
-
getStatus
ResponseCodeEnum getStatus()* A status result.<br/> This is the final status after handling the transaction.
.proto.ResponseCodeEnum status = 3;- Returns:
- The status.
-