Show / Hide Table of Contents

Class NftData

Nft (NFT) information retrieved from a mirror node.

Inheritance
object
NftData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class NftData

Properties

| Edit this page View Source

Created

The consensus timestamp of the asset's creation.

Declaration
[JsonPropertyName("created_timestamp")]
public ConsensusTimeStamp Created { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

DelegatingSpender

An account that is permitted to create allowances for this Nft on the owner's behalf.

Declaration
[JsonPropertyName("delegating_spender")]
public EntityId DelegatingSpender { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

Deleted

Flag indicating the asset has been deleted.

Declaration
[JsonPropertyName("deleted")]
[JsonConverter(typeof(BooleanMirrorConverter))]
public bool Deleted { get; set; }
Property Value
Type Description
bool
| Edit this page View Source

Metadata

The associated Nft metadata.

Declaration
[JsonPropertyName("metadata")]
public string Metadata { get; set; }
Property Value
Type Description
string
| Edit this page View Source

Modified

The last time this asset was modified.

Declaration
[JsonPropertyName("modified_timestamp")]
public ConsensusTimeStamp Modified { get; set; }
Property Value
Type Description
ConsensusTimeStamp
| Edit this page View Source

Owner

The Current Holder of the Nft (NFT)

Declaration
[JsonPropertyName("account_id")]
public EntityId Owner { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

SerialNumber

The serial number of the asset.

Declaration
[JsonPropertyName("serial_number")]
[JsonConverter(typeof(LongMirrorConverter))]
public long SerialNumber { get; set; }
Property Value
Type Description
long
| Edit this page View Source

Spender

An account that is permitted to transfer this asset Nft on the owner's behalf.

Declaration
[JsonPropertyName("spender")]
public EntityId Spender { get; set; }
Property Value
Type Description
EntityId
| Edit this page View Source

Token

The Hedera token address of this asset class.

Declaration
[JsonPropertyName("token_id")]
public EntityId Token { get; set; }
Property Value
Type Description
EntityId
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph