Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 916 Bytes

File metadata and controls

33 lines (24 loc) · 916 Bytes

LiqTrade

Properties

Name Type Description Notes
price str
size str
taker_fee str
maker_fee str
transaction_time int

Example

from lighter.models.liq_trade import LiqTrade

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

# convert the object into a dict
liq_trade_dict = liq_trade_instance.to_dict()
# create an instance of LiqTrade from a dict
liq_trade_from_dict = LiqTrade.from_dict(liq_trade_dict)

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