SellQuote
Properties
Name
Type
Description
Notes
Example
from moonsdk.models.sell_quote import SellQuote
# TODO update the JSON string below
json = "{}"
# create an instance of SellQuote from a JSON string
sell_quote_instance = SellQuote.from_json(json)
# print the JSON string representation of the object
print(SellQuote.to_json())
# convert the object into a dict
sell_quote_dict = sell_quote_instance.to_dict()
# create an instance of SellQuote from a dict
sell_quote_form_dict = sell_quote.from_dict(sell_quote_dict)Last updated