Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 898 Bytes

File metadata and controls

32 lines (23 loc) · 898 Bytes

Candles

Properties

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

Example

from lighter.models.candles import Candles

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

# convert the object into a dict
candles_dict = candles_instance.to_dict()
# create an instance of Candles from a dict
candles_from_dict = Candles.from_dict(candles_dict)

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