Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.14 KB

File metadata and controls

39 lines (30 loc) · 1.14 KB

RFQEntry

Properties

Name Type Description Notes
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.rfq_entry import RFQEntry

# TODO update the JSON string below
json = "{}"
# create an instance of RFQEntry from a JSON string
rfq_entry_instance = RFQEntry.from_json(json)
# print the JSON string representation of the object
print(RFQEntry.to_json())

# convert the object into a dict
rfq_entry_dict = rfq_entry_instance.to_dict()
# create an instance of RFQEntry from a dict
rfq_entry_from_dict = RFQEntry.from_dict(rfq_entry_dict)

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