Module com.hedera.hashgraph.sdk
Package com.hedera.hashgraph.sdk.proto
Interface TokenGetNftInfosQueryOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
TokenGetNftInfosQuery,TokenGetNftInfosQuery.Builder
@Generated
public interface TokenGetNftInfosQueryOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlonggetEnd()* Specifies the end index (exclusive) of the range of NFTs to query for.* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).longgetStart()* Specifies the start index (inclusive) of the range of NFTs to query for.* A token identifier.boolean* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).boolean* A token identifier.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
hasHeader
boolean hasHeader()* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).
.proto.QueryHeader header = 1;- Returns:
- Whether the header field is set.
-
getHeader
QueryHeader getHeader()* Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).
.proto.QueryHeader header = 1;- Returns:
- The header.
-
hasTokenID
boolean hasTokenID()* A token identifier. <p> This SHALL identify the token to query.<br/> The identified token MUST exist, MUST NOT be deleted, and MUST be a non-fungible/unique type.
.proto.TokenID tokenID = 2;- Returns:
- Whether the tokenID field is set.
-
getTokenID
TokenID getTokenID()* A token identifier. <p> This SHALL identify the token to query.<br/> The identified token MUST exist, MUST NOT be deleted, and MUST be a non-fungible/unique type.
.proto.TokenID tokenID = 2;- Returns:
- The tokenID.
-
getStart
long getStart()* Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the range [0; mintedNFTs-1]
int64 start = 3;- Returns:
- The start.
-
getEnd
long getEnd()* Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the range (start; mintedNFTs]
int64 end = 4;- Returns:
- The end.
-