com.hedera.hashgraph.sdk.proto.TokenGetNftInfosResponseOrBuilder 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: token_get_nft_infos.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TokenGetNftInfosResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenGetNftInfosResponse)
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 Token with type NON_FUNGIBLE that this record is for
*
*
* .proto.TokenID tokenID = 2;
* @return Whether the tokenID field is set.
*/
boolean hasTokenID();
/**
*
**
* The Token with type NON_FUNGIBLE that this record is for
*
*
* .proto.TokenID tokenID = 2;
* @return The tokenID.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenID();
/**
*
**
* The Token with type NON_FUNGIBLE that this record is for
*
*
* .proto.TokenID tokenID = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIDOrBuilder();
/**
*
**
* List of NFTs associated to the specified token
*
*
* repeated .proto.TokenNftInfo nfts = 3;
*/
java.util.List
getNftsList();
/**
*
**
* List of NFTs associated to the specified token
*
*
* repeated .proto.TokenNftInfo nfts = 3;
*/
com.hedera.hashgraph.sdk.proto.TokenNftInfo getNfts(int index);
/**
*
**
* List of NFTs associated to the specified token
*
*
* repeated .proto.TokenNftInfo nfts = 3;
*/
int getNftsCount();
/**
*
**
* List of NFTs associated to the specified token
*
*
* repeated .proto.TokenNftInfo nfts = 3;
*/
java.util.List extends com.hedera.hashgraph.sdk.proto.TokenNftInfoOrBuilder>
getNftsOrBuilderList();
/**
*
**
* List of NFTs associated to the specified token
*
*
* repeated .proto.TokenNftInfo nfts = 3;
*/
com.hedera.hashgraph.sdk.proto.TokenNftInfoOrBuilder getNftsOrBuilder(
int index);
}