com.hedera.hashgraph.sdk.proto.ContractGetInfoResponseOrBuilder 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: contract_get_info.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface ContractGetInfoResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ContractGetInfoResponse)
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 information about this contract instance (a state proof can be generated for this)
*
*
* .proto.ContractGetInfoResponse.ContractInfo contractInfo = 2;
* @return Whether the contractInfo field is set.
*/
boolean hasContractInfo();
/**
*
**
* the information about this contract instance (a state proof can be generated for this)
*
*
* .proto.ContractGetInfoResponse.ContractInfo contractInfo = 2;
* @return The contractInfo.
*/
com.hedera.hashgraph.sdk.proto.ContractGetInfoResponse.ContractInfo getContractInfo();
/**
*
**
* the information about this contract instance (a state proof can be generated for this)
*
*
* .proto.ContractGetInfoResponse.ContractInfo contractInfo = 2;
*/
com.hedera.hashgraph.sdk.proto.ContractGetInfoResponse.ContractInfoOrBuilder getContractInfoOrBuilder();
}