com.hedera.hashgraph.sdk.proto.TransactionResponseOrBuilder 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: transaction_response.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TransactionResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TransactionResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The response code that indicates the current status of the transaction.
*
*
* .proto.ResponseCodeEnum nodeTransactionPrecheckCode = 1;
* @return The enum numeric value on the wire for nodeTransactionPrecheckCode.
*/
int getNodeTransactionPrecheckCodeValue();
/**
*
**
* The response code that indicates the current status of the transaction.
*
*
* .proto.ResponseCodeEnum nodeTransactionPrecheckCode = 1;
* @return The nodeTransactionPrecheckCode.
*/
com.hedera.hashgraph.sdk.proto.ResponseCodeEnum getNodeTransactionPrecheckCode();
/**
*
**
* If the response code was INSUFFICIENT_TX_FEE, the actual transaction fee that would be
* required to execute the transaction.
*
*
* uint64 cost = 2;
* @return The cost.
*/
long getCost();
}