Quote
public struct Quote : Codable, Equatable
Coin market data
-
Price
Declaration
Swift
public let price: Decimal -
Volume from last 24h
Declaration
Swift
public let volume24h: Decimal -
Volume change in last 24h
Declaration
Swift
public let volume24hChange24h: Decimal -
Market capitalization
Declaration
Swift
public let marketCap: Decimal -
Market capitalization change in last 24h
Declaration
Swift
public let marketCapChange24h: Decimal -
Percentage price change in last 1 hour
Declaration
Swift
public let percentChange1h: Decimal -
Percentage price change in last 12 hours
Declaration
Swift
public let percentChange12h: Decimal -
Percentage price change in last 24 hours
Declaration
Swift
public let percentChange24h: Decimal -
Percentage price change in last 7 days
Declaration
Swift
public let percentChange7d: Decimal -
Percentage price change in last 30 days
Declaration
Swift
public let percentChange30d: Decimal -
Percentage price change in last 1 yours
Declaration
Swift
public let percentChange1y: Decimal -
ATH (All Time High) price
Declaration
Swift
public let athPrice: Decimal? -
ATH (All Time High) date
Declaration
Swift
public let athDate: Date? -
Percentage price change from ATH
Declaration
Swift
public let percentFromPriceAth: Decimal? -
Volume / MarketCap rate
Declaration
Swift
public var volumeMarketCapRate: Decimal? { get }
Quote Structure Reference