Module com.hedera.hashgraph.sdk
Package com.hedera.hashgraph.sdk.proto
Interface TransactionGetRecordQueryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
TransactionGetRecordQuery,TransactionGetRecordQuery.Builder
@Generated
public interface TransactionGetRecordQueryOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescription* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).boolean* A flag to request "child" records.boolean* A flag to request duplicates.* A transaction identifier.boolean* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).boolean* A transaction identifier.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
hasHeader
boolean hasHeader()* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).
.proto.QueryHeader header = 1;- Returns:
- Whether the header field is set.
-
getHeader
QueryHeader getHeader()* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).
.proto.QueryHeader header = 1;- Returns:
- The header.
-
hasTransactionID
boolean hasTransactionID()* A transaction identifier. <p> This MUST contain the full identifier, as submitted, for the transaction to query.
.proto.TransactionID transactionID = 2;- Returns:
- Whether the transactionID field is set.
-
getTransactionID
TransactionID getTransactionID()* A transaction identifier. <p> This MUST contain the full identifier, as submitted, for the transaction to query.
.proto.TransactionID transactionID = 2;- Returns:
- The transactionID.
-
getIncludeDuplicates
boolean getIncludeDuplicates()* A flag to request duplicates. <p> If set, every transaction record within the record cache duration that matches the requested transaction identifier SHALL be returned.<br/> If not set, duplicate transactions SHALL NOT be returned.<br/> If not set, only the record for the first matching transaction to reach consensus SHALL be returned.
bool includeDuplicates = 3;- Returns:
- The includeDuplicates.
-
getIncludeChildRecords
boolean getIncludeChildRecords()* A flag to request "child" records. <p> If set, the response SHALL include records for each child transaction executed as part of the requested parent transaction.<br/> If not set, the response SHALL NOT include any records for child transactions.
bool include_child_records = 4;- Returns:
- The includeChildRecords.
-