Class CryptoAllowanceData
Allowance information retrieved from a mirror node.
Inherited Members
Namespace: Hiero.Mirror
Assembly: Hiero.dll
Syntax
public class CryptoAllowanceData
Properties
| Edit this page View SourceAmount
The amount of hBar (in tinybars) the allowed spender may spend from the owner account (denominated in smallest denomination)
Declaration
[JsonPropertyName("amount_granted")]
[JsonConverter(typeof(LongMirrorConverter))]
public long Amount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Owner
ID of the allowance owner.
Declaration
[JsonPropertyName("owner")]
public EntityId Owner { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |
Spender
ID of the account allowed to spend the token.
Declaration
[JsonPropertyName("spender")]
public EntityId Spender { get; set; }
Property Value
| Type | Description |
|---|---|
| EntityId |