Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.27 KB

File metadata and controls

41 lines (32 loc) · 1.27 KB

RespCreateRFQ

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_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)

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