Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

MarkPriceCandles

Properties

Name Type Description Notes
code int
message str [optional]
r str resolution
c List[MarkPriceCandle] candles

Example

from lighter.models.mark_price_candles import MarkPriceCandles

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

# convert the object into a dict
mark_price_candles_dict = mark_price_candles_instance.to_dict()
# create an instance of MarkPriceCandles from a dict
mark_price_candles_from_dict = MarkPriceCandles.from_dict(mark_price_candles_dict)

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