Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 845 Bytes

File metadata and controls

30 lines (21 loc) · 845 Bytes

PriceLevel

Properties

Name Type Description Notes
price str
size str

Example

from lighter.models.price_level import PriceLevel

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

# convert the object into a dict
price_level_dict = price_level_instance.to_dict()
# create an instance of PriceLevel from a dict
price_level_from_dict = PriceLevel.from_dict(price_level_dict)

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