Show / Hide Table of Contents

Class AssetTransferData

Represents an NFT transfer within a transaction.

Inheritance
object
AssetTransferData
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 AssetTransferData

Properties

| Edit this page View Source

IsAllowance

Flag indicating this transfer was performed as an allowed transfer by a third party account.

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

Receiver

The account receiving the asset.

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

Sender

The account sending the asset.

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

SerialNumber

The serial number of the NFT transferred.

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

Token

The identifier of the NFT token type transferred.

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