Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 984 Bytes

File metadata and controls

32 lines (23 loc) · 984 Bytes

RespListRFQs

Properties

Name Type Description Notes
code int
message str [optional]
rfqs List[RFQEntry]
next_cursor str [optional]

Example

from lighter.models.resp_list_rfqs import RespListRFQs

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

# convert the object into a dict
resp_list_rfqs_dict = resp_list_rfqs_instance.to_dict()
# create an instance of RespListRFQs from a dict
resp_list_rfqs_from_dict = RespListRFQs.from_dict(resp_list_rfqs_dict)

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