com.hederahashgraph.api.proto.java.TokenNftInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_get_nft_info.proto
package com.hederahashgraph.api.proto.java;
public interface TokenNftInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenNftInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The ID of the NFT
*
*
* .proto.NftID nftID = 1;
* @return Whether the nftID field is set.
*/
boolean hasNftID();
/**
*
**
* The ID of the NFT
*
*
* .proto.NftID nftID = 1;
* @return The nftID.
*/
com.hederahashgraph.api.proto.java.NftID getNftID();
/**
*
**
* The ID of the NFT
*
*
* .proto.NftID nftID = 1;
*/
com.hederahashgraph.api.proto.java.NftIDOrBuilder getNftIDOrBuilder();
/**
*
**
* The current owner of the NFT
*
*
* .proto.AccountID accountID = 2;
* @return Whether the accountID field is set.
*/
boolean hasAccountID();
/**
*
**
* The current owner of the NFT
*
*
* .proto.AccountID accountID = 2;
* @return The accountID.
*/
com.hederahashgraph.api.proto.java.AccountID getAccountID();
/**
*
**
* The current owner of the NFT
*
*
* .proto.AccountID accountID = 2;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder();
/**
*
**
* The effective consensus timestamp at which the NFT was minted
*
*
* .proto.Timestamp creationTime = 3;
* @return Whether the creationTime field is set.
*/
boolean hasCreationTime();
/**
*
**
* The effective consensus timestamp at which the NFT was minted
*
*
* .proto.Timestamp creationTime = 3;
* @return The creationTime.
*/
com.hederahashgraph.api.proto.java.Timestamp getCreationTime();
/**
*
**
* The effective consensus timestamp at which the NFT was minted
*
*
* .proto.Timestamp creationTime = 3;
*/
com.hederahashgraph.api.proto.java.TimestampOrBuilder getCreationTimeOrBuilder();
/**
*
**
* Represents the unique metadata of the NFT
*
*
* bytes metadata = 4;
* @return The metadata.
*/
com.google.protobuf.ByteString getMetadata();
/**
*
**
* The ledger ID the response was returned from; please see <a href="https://github.com/hashgraph/hedera-improvement-proposal/blob/master/HIP/hip-198.md">HIP-198</a> for the network-specific IDs.
*
*
* bytes ledger_id = 5;
* @return The ledgerId.
*/
com.google.protobuf.ByteString getLedgerId();
/**
*
**
* If an allowance is granted for the NFT, its corresponding spender account
*
*
* .proto.AccountID spender_id = 6;
* @return Whether the spenderId field is set.
*/
boolean hasSpenderId();
/**
*
**
* If an allowance is granted for the NFT, its corresponding spender account
*
*
* .proto.AccountID spender_id = 6;
* @return The spenderId.
*/
com.hederahashgraph.api.proto.java.AccountID getSpenderId();
/**
*
**
* If an allowance is granted for the NFT, its corresponding spender account
*
*
* .proto.AccountID spender_id = 6;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getSpenderIdOrBuilder();
}