Show / Hide Table of Contents

Class FractionalFeeData

Represents a fractional royalty fee.

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

Properties

| Edit this page View Source

Amount

Amount of fractional fee to collect.

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

Collector

The account receiving the fees.

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

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
| Edit this page View Source

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
| Edit this page View Source

Maximum

Maximum Charged Fee

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

Minimum

Minimum Charged Fee

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

NetOfTransfers

Flag indicating the sender pays fees instead of the receiver.

Declaration
[JsonPropertyName("net_of_transfers")]
[JsonConverter(typeof(BooleanMirrorConverter))]
public bool NetOfTransfers { get; set; }
Property Value
Type Description
bool
  • Edit this page
  • View Source
In this article
Back to top .NET Client Library for Hiero Network and Hedera Hashgraph