Class NftData
Nft (NFT) information retrieved from a mirror node.
Inherited Members
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class NftData
Properties
| Edit this page View SourceCreated
The consensus timestamp of the asset's creation.
Declaration
[JsonPropertyName("created_timestamp")]
public ConsensusTimeStamp Created { get; set; }
Property Value
| Type | Description |
|---|---|
| ConsensusTimeStamp |
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 |
Deleted
Flag indicating the asset has been deleted.
Declaration
[JsonPropertyName("deleted")]
[JsonConverter(typeof(BooleanMirrorConverter))]
public bool Deleted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Metadata
The associated Nft metadata.
Declaration
[JsonPropertyName("metadata")]
public string Metadata { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Modified
The last time this asset was modified.
Declaration
[JsonPropertyName("modified_timestamp")]
public ConsensusTimeStamp Modified { get; set; }
Property Value
| Type | Description |
|---|---|
| ConsensusTimeStamp |
Owner
The Current Holder of the Nft (NFT)
Declaration
[JsonPropertyName("account_id")]
public EntityId Owner { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |
SerialNumber
The serial number of the asset.
Declaration
[JsonPropertyName("serial_number")]
[JsonConverter(typeof(LongMirrorConverter))]
public long SerialNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
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 |
Token
The Hedera token address of this asset class.
Declaration
[JsonPropertyName("token_id")]
public EntityId Token { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |