Show / Hide Table of Contents

Class AssessedFeeData

Represents custom assessed fees imposed as a result of a token transfer.

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

Properties

| Edit this page View Source

Amount

The amount of token or crypto assessed

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

Collector

The account receiving the token or crypto fee.

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

Payers

The accounts paying the token or crypto fee.

Declaration
[JsonPropertyName("effective_payer_account_ids")]
[JsonConverter(typeof(EntityIdArrayConverter))]
public EntityId[] Payers { get; set; }
Property Value
Type Description
EntityId[]
| Edit this page View Source

Token

The ID of the token transferred, or None for tinybars.

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