com.hederahashgraph.api.proto.java.TransactionGetReceiptResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_receipt.proto
package com.hederahashgraph.api.proto.java;
public interface TransactionGetReceiptResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionGetReceiptResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
* @return The header.
*/
com.hederahashgraph.api.proto.java.ResponseHeader getHeader();
/**
*
**
* Standard response from node to client, including the requested fields: cost, or state proof,
* or both, or neither
*
*
* .proto.ResponseHeader header = 1;
*/
com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* Either 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.
*
*
* .proto.TransactionReceipt receipt = 2;
* @return Whether the receipt field is set.
*/
boolean hasReceipt();
/**
*
**
* Either 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.
*
*
* .proto.TransactionReceipt receipt = 2;
* @return The receipt.
*/
com.hederahashgraph.api.proto.java.TransactionReceipt getReceipt();
/**
*
**
* Either 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.
*
*
* .proto.TransactionReceipt receipt = 2;
*/
com.hederahashgraph.api.proto.java.TransactionReceiptOrBuilder getReceiptOrBuilder();
/**
*
**
* The receipts of processing all transactions with the given id, in consensus time order.
*
*
* repeated .proto.TransactionReceipt duplicateTransactionReceipts = 4;
*/
java.util.List
getDuplicateTransactionReceiptsList();
/**
*
**
* The receipts of processing all transactions with the given id, in consensus time order.
*
*
* repeated .proto.TransactionReceipt duplicateTransactionReceipts = 4;
*/
com.hederahashgraph.api.proto.java.TransactionReceipt getDuplicateTransactionReceipts(int index);
/**
*
**
* The receipts of processing all transactions with the given id, in consensus time order.
*
*
* repeated .proto.TransactionReceipt duplicateTransactionReceipts = 4;
*/
int getDuplicateTransactionReceiptsCount();
/**
*
**
* The receipts of processing all transactions with the given id, in consensus time order.
*
*
* repeated .proto.TransactionReceipt duplicateTransactionReceipts = 4;
*/
java.util.List extends com.hederahashgraph.api.proto.java.TransactionReceiptOrBuilder>
getDuplicateTransactionReceiptsOrBuilderList();
/**
*
**
* The receipts of processing all transactions with the given id, in consensus time order.
*
*
* repeated .proto.TransactionReceipt duplicateTransactionReceipts = 4;
*/
com.hederahashgraph.api.proto.java.TransactionReceiptOrBuilder getDuplicateTransactionReceiptsOrBuilder(
int index);
/**
*
**
* The receipts (if any) of all child transactions spawned by the transaction with the
* given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionReceipt child_transaction_receipts = 5;
*/
java.util.List
getChildTransactionReceiptsList();
/**
*
**
* The receipts (if any) of all child transactions spawned by the transaction with the
* given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionReceipt child_transaction_receipts = 5;
*/
com.hederahashgraph.api.proto.java.TransactionReceipt getChildTransactionReceipts(int index);
/**
*
**
* The receipts (if any) of all child transactions spawned by the transaction with the
* given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionReceipt child_transaction_receipts = 5;
*/
int getChildTransactionReceiptsCount();
/**
*
**
* The receipts (if any) of all child transactions spawned by the transaction with the
* given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionReceipt child_transaction_receipts = 5;
*/
java.util.List extends com.hederahashgraph.api.proto.java.TransactionReceiptOrBuilder>
getChildTransactionReceiptsOrBuilderList();
/**
*
**
* The receipts (if any) of all child transactions spawned by the transaction with the
* given top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionReceipt child_transaction_receipts = 5;
*/
com.hederahashgraph.api.proto.java.TransactionReceiptOrBuilder getChildTransactionReceiptsOrBuilder(
int index);
}