Class FixedFeeData
Represents the fixed fees for a token.
Inherited Members
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class FixedFeeData
Properties
| Edit this page View SourceAmount
Amount of fixed fee to collect.
Declaration
[JsonPropertyName("amount")]
[JsonConverter(typeof(LongMirrorConverter))]
public long Amount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Collector
The account receiving the fees.
Declaration
[JsonPropertyName("collector_account_id")]
public EntityId Collector { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |
CollectorsExempt
Are collector accounts exempt from paying fees.
Declaration
[JsonPropertyName("all_collectors_are_exempt")]
[JsonConverter(typeof(BooleanMirrorConverter))]
public bool CollectorsExempt { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
FeeToken
The token that the fee is denominated in, or NONE for hBar.
Declaration
[JsonPropertyName("denominating_token_id")]
public EntityId FeeToken { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |