Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

QuotesResponse

Properties

Name Type Description Notes
quotes List[Quote]
quote_failures List[QuoteFailure] List of partial failures encountered while requesting quotes. Empty when all quote attempts succeed.

Example

from fireblocks.models.quotes_response import QuotesResponse

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

# convert the object into a dict
quotes_response_dict = quotes_response_instance.to_dict()
# create an instance of QuotesResponse from a dict
quotes_response_from_dict = QuotesResponse.from_dict(quotes_response_dict)

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