com.hederahashgraph.api.proto.java.TokenGetNftInfosQueryOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_get_nft_infos.proto
package com.hederahashgraph.api.proto.java;
public interface TokenGetNftInfosQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenGetNftInfosQuery)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
* @return The header.
*/
com.hederahashgraph.api.proto.java.QueryHeader getHeader();
/**
*
**
* Standard info sent from client to node, including the signed payment, and what kind of
* response is requested (cost, state proof, both, or neither).
*
*
* .proto.QueryHeader header = 1;
*/
com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder();
/**
*
**
* The ID of the token for which information is requested
*
*
* .proto.TokenID tokenID = 2;
* @return Whether the tokenID field is set.
*/
boolean hasTokenID();
/**
*
**
* The ID of the token for which information is requested
*
*
* .proto.TokenID tokenID = 2;
* @return The tokenID.
*/
com.hederahashgraph.api.proto.java.TokenID getTokenID();
/**
*
**
* The ID of the token for which information is requested
*
*
* .proto.TokenID tokenID = 2;
*/
com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenIDOrBuilder();
/**
*
**
* Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the
* range [0; ownedNFTs-1]
*
*
* int64 start = 3;
* @return The start.
*/
long getStart();
/**
*
**
* Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
* range (start; ownedNFTs]
*
*
* int64 end = 4;
* @return The end.
*/
long getEnd();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy