Class RoyaltyFeeData
Represents royalty fees charged for transferring assets (nfts).
Inherited Members
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class RoyaltyFeeData
Properties
| Edit this page View SourceAmount
Amount of fractional fee to collect.
Declaration
[JsonPropertyName("amount")]
public FractionData Amount { get; set; }
Property Value
| Type | Description |
|---|---|
| FractionData |
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 |
FallbackFee
The fallback fee to pay if no value was exchanged for NFT
Declaration
[JsonPropertyName("fallback_fee")]
public FallbackFeeData FallbackFee { get; set; }
Property Value
| Type | Description |
|---|---|
| FallbackFeeData |