com.hedera.hashgraph.sdk.proto.GetBySolidityIDResponseOrBuilder 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: get_by_solidity_id.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.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 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.hedera.hashgraph.sdk.proto.AccountID getAccountID();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 2;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.FileID getFileID();
/**
*
**
* The file Id for the file
*
*
* .proto.FileID fileID = 3;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
}