com.hedera.hashgraph.sdk.proto.TokenNftInfoOrBuilder 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_info.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.NftID getNftID();
/**
*
**
* The ID of the NFT
*
*
* .proto.NftID nftID = 1;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.AccountID getAccountID();
/**
*
**
* The current owner of the NFT
*
*
* .proto.AccountID accountID = 2;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.Timestamp getCreationTime();
/**
*
**
* The effective consensus timestamp at which the NFT was minted
*
*
* .proto.Timestamp creationTime = 3;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.AccountID getSpenderId();
/**
*
**
* If an allowance is granted for the NFT, its corresponding spender account
*
*
* .proto.AccountID spender_id = 6;
*/
com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getSpenderIdOrBuilder();
}