com.hedera.hashgraph.sdk.proto.TransactionGetReceiptQueryOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_receipt.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TransactionGetReceiptQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionGetReceiptQuery)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
com.hedera.hashgraph.sdk.proto.QueryHeader getHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* The ID of the transaction for which the receipt is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return Whether the transactionID field is set.
*/
boolean hasTransactionID();
/**
*
**
* The ID of the transaction for which the receipt is requested.
*
*
* .proto.TransactionID transactionID = 2;
* @return The transactionID.
*/
com.hedera.hashgraph.sdk.proto.TransactionID getTransactionID();
/**
*
**
* The ID of the transaction for which the receipt is requested.
*
*
* .proto.TransactionID transactionID = 2;
*/
com.hedera.hashgraph.sdk.proto.TransactionIDOrBuilder getTransactionIDOrBuilder();
/**
*
**
* Whether receipts of processing duplicate transactions should be returned along with the
* receipt of processing the first consensus transaction with the given id whose status was
* neither <tt>INVALID_NODE_ACCOUNT</tt> nor <tt>INVALID_PAYER_SIGNATURE</tt>; <b>or</b>, if no
* such receipt exists, the receipt of processing the first transaction to reach consensus with
* the given transaction id.
*
*
* bool includeDuplicates = 3;
* @return The includeDuplicates.
*/
boolean getIncludeDuplicates();
/**
*
**
* Whether the response should include the receipts of any child transactions spawned by the
* top-level transaction with the given transactionID.
*
*
* bool include_child_receipts = 4;
* @return The includeChildReceipts.
*/
boolean getIncludeChildReceipts();
}