Class AssessedFeeData
Represents custom assessed fees imposed as a result of a token transfer.
Inherited Members
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class AssessedFeeData
Properties
| Edit this page View SourceAmount
The amount of token or crypto assessed
Declaration
[JsonPropertyName("amount")]
[JsonConverter(typeof(LongMirrorConverter))]
public long Amount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Collector
The account receiving the token or crypto fee.
Declaration
[JsonPropertyName("collector_account_id")]
public EntityId Collector { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |
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[] |
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 |