Show / Hide Table of Contents

Class TokenHoldingData

Represents a detailed holding of a token by an account.

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

Properties

| Edit this page View Source

AutoAssociated

Was this token holding a result of an automatic association.

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

Balance

The balance of account’s holdings of token in tinytokens.

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

Created

The date when this holding was established.

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

FreezeStatus

Status of the token related to freezing (if applicable)

Declaration
[JsonPropertyName("freeze_status")]
[JsonConverter(typeof(FreezeStatusConverter))]
public TokenTradableStatus FreezeStatus { get; set; }
Property Value
Type Description
TokenTradableStatus
| Edit this page View Source

KycStatus

Status of the KYC status of the holding (if applicable)

Declaration
[JsonPropertyName("kyc_status")]
[JsonConverter(typeof(TokenKycStatusConverter))]
public TokenKycStatus KycStatus { get; set; }
Property Value
Type Description
TokenKycStatus
| Edit this page View Source

Token

The address of the token.

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