Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

MarketPriceCharts

Properties

Name Type Description Notes
code int
message str [optional]
resolution str
price_charts List[MarketPriceChart]

Example

from lighter.models.market_price_charts import MarketPriceCharts

# TODO update the JSON string below
json = "{}"
# create an instance of MarketPriceCharts from a JSON string
market_price_charts_instance = MarketPriceCharts.from_json(json)
# print the JSON string representation of the object
print(MarketPriceCharts.to_json())

# convert the object into a dict
market_price_charts_dict = market_price_charts_instance.to_dict()
# create an instance of MarketPriceCharts from a dict
market_price_charts_from_dict = MarketPriceCharts.from_dict(market_price_charts_dict)

[Back to Model list] [Back to API list] [Back to README]