| 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_create_rfq import RespCreateRFQ
# TODO update the JSON string below
json = "{}"
# create an instance of RespCreateRFQ from a JSON string
resp_create_rfq_instance = RespCreateRFQ.from_json(json)
# print the JSON string representation of the object
print(RespCreateRFQ.to_json())
# convert the object into a dict
resp_create_rfq_dict = resp_create_rfq_instance.to_dict()
# create an instance of RespCreateRFQ from a dict
resp_create_rfq_from_dict = RespCreateRFQ.from_dict(resp_create_rfq_dict)