| Name | Type | Description | Notes |
|---|---|---|---|
| code | int | ||
| message | str | [optional] | |
| id | int | ||
| account_index | int | ||
| market_index | int | ||
| direction | int | ||
| base_amount | str | ||
| quote_amount | str | ||
| status | str | ||
| metadata | RFQMetadata | ||
| responses | List[RFQResponseEntry] | ||
| created_at | int | ||
| updated_at | int |
from lighter.models.resp_get_rfq import RespGetRFQ
# TODO update the JSON string below
json = "{}"
# create an instance of RespGetRFQ from a JSON string
resp_get_rfq_instance = RespGetRFQ.from_json(json)
# print the JSON string representation of the object
print(RespGetRFQ.to_json())
# convert the object into a dict
resp_get_rfq_dict = resp_get_rfq_instance.to_dict()
# create an instance of RespGetRFQ from a dict
resp_get_rfq_from_dict = RespGetRFQ.from_dict(resp_get_rfq_dict)