Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 890 Bytes

File metadata and controls

32 lines (23 loc) · 890 Bytes

Trades

Properties

Name Type Description Notes
code int
message str [optional]
next_cursor str [optional]
trades List[Trade]

Example

from lighter.models.trades import Trades

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

# convert the object into a dict
trades_dict = trades_instance.to_dict()
# create an instance of Trades from a dict
trades_from_dict = Trades.from_dict(trades_dict)

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