com.hedera.hashgraph.sdk.proto.TransactionGetFastRecordResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: transaction_get_fast_record.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TransactionGetFastRecordResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionGetFastRecordResponse)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* 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.hedera.hashgraph.sdk.proto.ResponseHeader getHeader();
/**
*
**
* 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.hedera.hashgraph.sdk.proto.TransactionRecord getTransactionRecord();
}