Class RoyaltyTransfer
Represents a token or hBar transfer (Token, Payer, Amount, Receiver) fufilling a royalty payment for the transfer of a token or asset.
Implements
Inherited Members
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class RoyaltyTransfer : IEquatable<RoyaltyTransfer>
Properties
| Improve this Doc View SourceAmount
The (divisible) amount of tokens or crypto transferred.
Declaration
public long Amount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
Payers
The Address(s) that were charged the assessed fee.
Declaration
public IReadOnlyCollection<Address> Payers { get; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<Address> |
Receiver
The Address receiving the transferred token or crypto.
Declaration
public Address Receiver { get; }
Property Value
Type | Description |
---|---|
Address |
Token
The Address of the token who's coins (or crypto) have been transferred to pay the royalty.
Declaration
public Address Token { get; }
Property Value
Type | Description |
---|---|
Address |