Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1003 Bytes

File metadata and controls

32 lines (23 loc) · 1003 Bytes

RFQResponseEntry

Properties

Name Type Description Notes
account_index int
status str
responded_at int
updated_at int

Example

from lighter.models.rfq_response_entry import RFQResponseEntry

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

# convert the object into a dict
rfq_response_entry_dict = rfq_response_entry_instance.to_dict()
# create an instance of RFQResponseEntry from a dict
rfq_response_entry_from_dict = RFQResponseEntry.from_dict(rfq_response_entry_dict)

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