com.hederahashgraph.api.proto.java.GetBySolidityIDResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: get_by_solidity_id.proto
package com.hederahashgraph.api.proto.java;
public interface GetBySolidityIDResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.GetBySolidityIDResponse)
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.hederahashgraph.api.proto.java.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.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 2;
* @return Whether the accountID field is set.
*/
boolean hasAccountID();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 2;
* @return The accountID.
*/
com.hederahashgraph.api.proto.java.AccountID getAccountID();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder();
/**
*
**
* The file Id for the file
*
*
* .proto.FileID fileID = 3;
* @return Whether the fileID field is set.
*/
boolean hasFileID();
/**
*
**
* The file Id for the file
*
*
* .proto.FileID fileID = 3;
* @return The fileID.
*/
com.hederahashgraph.api.proto.java.FileID getFileID();
/**
*
**
* The file Id for the file
*
*
* .proto.FileID fileID = 3;
*/
com.hederahashgraph.api.proto.java.FileIDOrBuilder getFileIDOrBuilder();
/**
*
**
* A smart contract ID for the instance (if this is included, then the associated accountID will
* also be included)
*
*
* .proto.ContractID contractID = 4;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* A smart contract ID for the instance (if this is included, then the associated accountID will
* also be included)
*
*
* .proto.ContractID contractID = 4;
* @return The contractID.
*/
com.hederahashgraph.api.proto.java.ContractID getContractID();
/**
*
**
* A smart contract ID for the instance (if this is included, then the associated accountID will
* also be included)
*
*
* .proto.ContractID contractID = 4;
*/
com.hederahashgraph.api.proto.java.ContractIDOrBuilder getContractIDOrBuilder();
}