Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 850 Bytes

File metadata and controls

31 lines (22 loc) · 850 Bytes

Ticker

Properties

Name Type Description Notes
s str
a PriceLevel
b PriceLevel

Example

from lighter.models.ticker import Ticker

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

# convert the object into a dict
ticker_dict = ticker_instance.to_dict()
# create an instance of Ticker from a dict
ticker_from_dict = Ticker.from_dict(ticker_dict)

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