com.hedera.hashgraph.sdk.proto.EntityIDOrBuilder 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: get_by_key.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface EntityIDOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.EntityID)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 1;
* @return Whether the accountID field is set.
*/
boolean hasAccountID();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 1;
* @return The accountID.
*/
com.hedera.hashgraph.sdk.proto.AccountID getAccountID();
/**
*
**
* The Account ID for the cryptocurrency account
*
*
* .proto.AccountID accountID = 1;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder();
/**
*
**
* A uniquely identifying livehash of an acount
*
*
* .proto.LiveHash liveHash = 2;
* @return Whether the liveHash field is set.
*/
boolean hasLiveHash();
/**
*
**
* A uniquely identifying livehash of an acount
*
*
* .proto.LiveHash liveHash = 2;
* @return The liveHash.
*/
com.hedera.hashgraph.sdk.proto.LiveHash getLiveHash();
/**
*
**
* A uniquely identifying livehash of an acount
*
*
* .proto.LiveHash liveHash = 2;
*/
com.hedera.hashgraph.sdk.proto.LiveHashOrBuilder getLiveHashOrBuilder();
/**
*
**
* The file ID of the file
*
*
* .proto.FileID fileID = 3;
* @return Whether the fileID field is set.
*/
boolean hasFileID();
/**
*
**
* The file ID of the file
*
*
* .proto.FileID fileID = 3;
* @return The fileID.
*/
com.hedera.hashgraph.sdk.proto.FileID getFileID();
/**
*
**
* The file ID of the file
*
*
* .proto.FileID fileID = 3;
*/
com.hedera.hashgraph.sdk.proto.FileIDOrBuilder getFileIDOrBuilder();
/**
*
**
* The smart contract ID that identifies instance
*
*
* .proto.ContractID contractID = 4;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The smart contract ID that identifies instance
*
*
* .proto.ContractID contractID = 4;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The smart contract ID that identifies instance
*
*
* .proto.ContractID contractID = 4;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
com.hedera.hashgraph.sdk.proto.EntityID.EntityCase getEntityCase();
}