com.hedera.hashgraph.sdk.proto.TransactionReceiptEntryOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: recordcache.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.TransactionID getTransactionId();
/**
*
**
* The id of the submitted transaction.
*
*
* .proto.TransactionID transaction_id = 2;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.ResponseCodeEnum getStatus();
}