com.hedera.hashgraph.sdk.proto.ContractCallLocalResponseOrBuilder 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: contract_call_local.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractCallLocalResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractCallLocalResponse)
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.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.ResponseHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* the value returned by the function (if it completed and didn't fail)
*
*
* .proto.ContractFunctionResult functionResult = 2;
* @return Whether the functionResult field is set.
*/
boolean hasFunctionResult();
/**
*
**
* the value returned by the function (if it completed and didn't fail)
*
*
* .proto.ContractFunctionResult functionResult = 2;
* @return The functionResult.
*/
com.hedera.hashgraph.sdk.proto.ContractFunctionResult getFunctionResult();
/**
*
**
* the value returned by the function (if it completed and didn't fail)
*
*
* .proto.ContractFunctionResult functionResult = 2;
*/
com.hedera.hashgraph.sdk.proto.ContractFunctionResultOrBuilder getFunctionResultOrBuilder();
}