com.hederahashgraph.api.proto.java.TransactionGetRecordResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_record.proto
package com.hederahashgraph.api.proto.java;
public interface TransactionGetRecordResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionGetRecordResponse)
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 record 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 record exists, the record of processing the first transaction to reach
* consensus with the given transaction id.
*
*
* .proto.TransactionRecord transactionRecord = 3;
* @return Whether the transactionRecord field is set.
*/
boolean hasTransactionRecord();
/**
*
**
* Either the record 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 record exists, the record of processing the first transaction to reach
* consensus with the given transaction id.
*
*
* .proto.TransactionRecord transactionRecord = 3;
* @return The transactionRecord.
*/
com.hederahashgraph.api.proto.java.TransactionRecord getTransactionRecord();
/**
*
**
* Either the record 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 record exists, the record of processing the first transaction to reach
* consensus with the given transaction id.
*
*
* .proto.TransactionRecord transactionRecord = 3;
*/
com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder getTransactionRecordOrBuilder();
/**
*
**
* The records of processing all consensus transaction with the same id as the distinguished
* record above, in chronological order.
*
*
* repeated .proto.TransactionRecord duplicateTransactionRecords = 4;
*/
java.util.List
getDuplicateTransactionRecordsList();
/**
*
**
* The records of processing all consensus transaction with the same id as the distinguished
* record above, in chronological order.
*
*
* repeated .proto.TransactionRecord duplicateTransactionRecords = 4;
*/
com.hederahashgraph.api.proto.java.TransactionRecord getDuplicateTransactionRecords(int index);
/**
*
**
* The records of processing all consensus transaction with the same id as the distinguished
* record above, in chronological order.
*
*
* repeated .proto.TransactionRecord duplicateTransactionRecords = 4;
*/
int getDuplicateTransactionRecordsCount();
/**
*
**
* The records of processing all consensus transaction with the same id as the distinguished
* record above, in chronological order.
*
*
* repeated .proto.TransactionRecord duplicateTransactionRecords = 4;
*/
java.util.List extends com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder>
getDuplicateTransactionRecordsOrBuilderList();
/**
*
**
* The records of processing all consensus transaction with the same id as the distinguished
* record above, in chronological order.
*
*
* repeated .proto.TransactionRecord duplicateTransactionRecords = 4;
*/
com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder getDuplicateTransactionRecordsOrBuilder(
int index);
/**
*
**
* The records of processing all child transaction spawned by the transaction with the given
* top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionRecord child_transaction_records = 5;
*/
java.util.List
getChildTransactionRecordsList();
/**
*
**
* The records of processing all child transaction spawned by the transaction with the given
* top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionRecord child_transaction_records = 5;
*/
com.hederahashgraph.api.proto.java.TransactionRecord getChildTransactionRecords(int index);
/**
*
**
* The records of processing all child transaction spawned by the transaction with the given
* top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionRecord child_transaction_records = 5;
*/
int getChildTransactionRecordsCount();
/**
*
**
* The records of processing all child transaction spawned by the transaction with the given
* top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionRecord child_transaction_records = 5;
*/
java.util.List extends com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder>
getChildTransactionRecordsOrBuilderList();
/**
*
**
* The records of processing all child transaction spawned by the transaction with the given
* top-level id, in consensus order. Always empty if the top-level status is UNKNOWN.
*
*
* repeated .proto.TransactionRecord child_transaction_records = 5;
*/
com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder getChildTransactionRecordsOrBuilder(
int index);
}