com.hedera.hashgraph.sdk.proto.NftIDOrBuilder 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface NftIDOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.NftID)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The (non-fungible) token of which this NFT is an instance; uppercase for "ID"
* for backward compatibility with original definition of this field.
*
*
* .proto.TokenID token_ID = 1;
* @return Whether the tokenID field is set.
*/
boolean hasTokenID();
/**
*
**
* The (non-fungible) token of which this NFT is an instance; uppercase for "ID"
* for backward compatibility with original definition of this field.
*
*
* .proto.TokenID token_ID = 1;
* @return The tokenID.
*/
com.hedera.hashgraph.sdk.proto.TokenID getTokenID();
/**
*
**
* The (non-fungible) token of which this NFT is an instance; uppercase for "ID"
* for backward compatibility with original definition of this field.
*
*
* .proto.TokenID token_ID = 1;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenIDOrBuilder();
/**
*
**
* The serial number of this NFT within its token type
*
*
* int64 serial_number = 2;
* @return The serialNumber.
*/
long getSerialNumber();
}