| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | ||
| message | str | [optional] | |
| r | str | resolution | |
| c | List[Candle] | candles |
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)