Class Owners
public class Owners
- Inheritance
-
Owners
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Address
Owner wallet address
[JsonProperty("address", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Address { get; set; }
Property Value
Amount
Token amount owned as a string
[JsonProperty("amount", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
public string Amount { get; set; }
Property Value
TokenId
Token ID for NFTs
[JsonProperty("tokenId", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string TokenId { get; set; }