Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

RatesResponse

Properties

Name Type Description Notes
rates List[Rate] List of indicative rates returned for the requested asset pair.
errors List[ScopeItemFailure] Partial failures encountered while requesting rates. Empty when all rate requests succeed.

Example

from fireblocks.models.rates_response import RatesResponse

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

# convert the object into a dict
rates_response_dict = rates_response_instance.to_dict()
# create an instance of RatesResponse from a dict
rates_response_from_dict = RatesResponse.from_dict(rates_response_dict)

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