com.hedera.hashgraph.sdk.proto.EntityIDPairOrBuilder 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: common.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface EntityIDPairOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.EntityIDPair)
com.google.protobuf.MessageOrBuilder {
/**
* .proto.AccountID account_id = 1;
* @return Whether the accountId field is set.
*/
boolean hasAccountId();
/**
* .proto.AccountID account_id = 1;
* @return The accountId.
*/
com.hedera.hashgraph.sdk.proto.AccountID getAccountId();
/**
* .proto.AccountID account_id = 1;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIdOrBuilder();
/**
* .proto.TokenID token_id = 2;
* @return Whether the tokenId field is set.
*/
boolean hasTokenId();
/**
* .proto.TokenID token_id = 2;
* @return The tokenId.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenId();
/**
* .proto.TokenID token_id = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIdOrBuilder();
}