Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

OrderBookDetails

Properties

Name Type Description Notes
code int
message str [optional]
order_book_details List[OrderBookDetail]

Example

from lighter.models.order_book_details import OrderBookDetails

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

# convert the object into a dict
order_book_details_dict = order_book_details_instance.to_dict()
# create an instance of OrderBookDetails from a dict
order_book_details_from_dict = OrderBookDetails.from_dict(order_book_details_dict)

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