Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 961 Bytes

File metadata and controls

32 lines (23 loc) · 961 Bytes

RFQMetadata

Properties

Name Type Description Notes
requested_est_price str
requested_max_slippage str
requested_slippage str
worst_price str

Example

from lighter.models.rfq_metadata import RFQMetadata

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

# convert the object into a dict
rfq_metadata_dict = rfq_metadata_instance.to_dict()
# create an instance of RFQMetadata from a dict
rfq_metadata_from_dict = RFQMetadata.from_dict(rfq_metadata_dict)

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