Quote
Properties
Name
Type
Description
Notes
recommendations
List[str]
payment_method
str
quote_id
str
ramp
str
payout
float
transaction_fee
float
network_fee
float
rate
float
Example
from moonsdk.models.quote import Quote
# TODO update the JSON string below
json = "{}"
# create an instance of Quote from a JSON string
quote_instance = Quote.from_json(json)
# print the JSON string representation of the object
print(Quote.to_json())
# convert the object into a dict
quote_dict = quote_instance.to_dict()
# create an instance of Quote from a dict
quote_form_dict = quote.from_dict(quote_dict)
Last updated