| Name | Type | Description | Notes |
|---|---|---|---|
| price | str | ||
| size | str | ||
| taker_fee | str | ||
| maker_fee | str | ||
| transaction_time | int |
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)