Class AssetHolding
Inheritance
object
AssetHolding
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Algorand.Indexer.Model
Assembly: Algorand.dll
Syntax
public class AssetHolding
Properties
| Improve this Doc View SourceAmount
Declaration
[JsonProperty("amount", Required = Required.Always)]
[Required]
public ulong Amount { get; set; }
Property Value
Type | Description |
---|---|
ulong |
AssetId
Declaration
[JsonProperty("asset-id", Required = Required.Always)]
[Required]
public ulong AssetId { get; set; }
Property Value
Type | Description |
---|---|
ulong |
Deleted
Declaration
[JsonProperty("deleted", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public bool? Deleted { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IsFrozen
Declaration
[JsonProperty("is-frozen", Required = Required.Always)]
[Required]
public bool IsFrozen { get; set; }
Property Value
Type | Description |
---|---|
bool |
OptedInAtRound
Declaration
[JsonProperty("opted-in-at-round", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ulong? OptedInAtRound { get; set; }
Property Value
Type | Description |
---|---|
ulong? |
OptedOutAtRound
Declaration
[JsonProperty("opted-out-at-round", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ulong? OptedOutAtRound { get; set; }
Property Value
Type | Description |
---|---|
ulong? |