com.hederahashgraph.api.proto.java.TransactionGetFastRecordResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_fast_record.proto
package com.hederahashgraph.api.proto.java;
public interface TransactionGetFastRecordResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionGetFastRecordResponse)
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();
/**
*
**
* The requested transaction records
*
*
* .proto.TransactionRecord transactionRecord = 2;
* @return Whether the transactionRecord field is set.
*/
boolean hasTransactionRecord();
/**
*
**
* The requested transaction records
*
*
* .proto.TransactionRecord transactionRecord = 2;
* @return The transactionRecord.
*/
com.hederahashgraph.api.proto.java.TransactionRecord getTransactionRecord();
/**
*
**
* The requested transaction records
*
*
* .proto.TransactionRecord transactionRecord = 2;
*/
com.hederahashgraph.api.proto.java.TransactionRecordOrBuilder getTransactionRecordOrBuilder();
}