Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.24 KB

File metadata and controls

41 lines (32 loc) · 1.24 KB

RespGetRFQ

Properties

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

Example

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)

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