Class Price_data
public class Price_data
- Inheritance
-
Price_data
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
Circulating_supply
The circulating supply of the token
[JsonProperty("circulating_supply", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Circulating_supply { get; set; }
Property Value
Market_cap_usd
The market cap of the token in USD
[JsonProperty("market_cap_usd", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Market_cap_usd { get; set; }
Property Value
Percent_change_24h
The percentage change of the token in the last 24 hours
[JsonProperty("percent_change_24h", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Percent_change_24h { get; set; }
Property Value
Price_timestamp
The timestamp of the latest price update
[JsonProperty("price_timestamp", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Price_timestamp { get; set; }
Property Value
Price_usd
The price of the token in USD
[JsonProperty("price_usd", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Price_usd { get; set; }
Property Value
Total_supply
The total supply of the token
[JsonProperty("total_supply", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Total_supply { get; set; }
Property Value
Usd_value
The value of the token balance in USD
[JsonProperty("usd_value", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Usd_value { get; set; }
Property Value
Volume_24h_usd
The volume of the token in USD
[JsonProperty("volume_24h_usd", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public double Volume_24h_usd { get; set; }