com.hederahashgraph.api.proto.java.TransactionReceiptEntryOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: state/recordcache/recordcache.proto
package com.hederahashgraph.api.proto.java;
public interface TransactionReceiptEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionReceiptEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The ID of the node that submitted the transaction to consensus. The ID is the ID of the node as known by the
* address book. Valid node IDs are in the range 0..2^63-1, inclusive.
*
*
* uint64 node_id = 1;
* @return The nodeId.
*/
long getNodeId();
/**
*
**
* The id of the submitted transaction.
*
*
* .proto.TransactionID transaction_id = 2;
* @return Whether the transactionId field is set.
*/
boolean hasTransactionId();
/**
*
**
* The id of the submitted transaction.
*
*
* .proto.TransactionID transaction_id = 2;
* @return The transactionId.
*/
com.hederahashgraph.api.proto.java.TransactionID getTransactionId();
/**
*
**
* The id of the submitted transaction.
*
*
* .proto.TransactionID transaction_id = 2;
*/
com.hederahashgraph.api.proto.java.TransactionIDOrBuilder getTransactionIdOrBuilder();
/**
*
**
* The resulting status of handling the transaction.
*
*
* .proto.ResponseCodeEnum status = 3;
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
*
**
* The resulting status of handling the transaction.
*
*
* .proto.ResponseCodeEnum status = 3;
* @return The status.
*/
com.hederahashgraph.api.proto.java.ResponseCodeEnum getStatus();
}