Interface TransactionGetReceiptQueryOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
TransactionGetReceiptQuery, TransactionGetReceiptQuery.Builder

@Generated public interface TransactionGetReceiptQueryOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    * 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" receipts.
    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 receipt within the receipt period 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 receipt for the first matching transaction to
       reach consensus SHALL be returned.
       
      bool includeDuplicates = 3;
      Returns:
      The includeDuplicates.
    • getIncludeChildReceipts

      boolean getIncludeChildReceipts()
       *
       A flag to request "child" receipts.
       <p>
       If set, the response SHALL include receipts for each child transaction
       executed as part of the requested parent transaction.<br/>
       If not set, the response SHALL NOT include any receipts for child
       transactions.
       
      bool include_child_receipts = 4;
      Returns:
      The includeChildReceipts.