Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

QuoteFailure

Properties

Name Type Description Notes
provider_id str Identifier of the provider for which the quote request failed.
account_id str Identifier of the account for which the quote request failed (optional). [optional]
error TradingErrorSchema

Example

from fireblocks.models.quote_failure import QuoteFailure

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

# convert the object into a dict
quote_failure_dict = quote_failure_instance.to_dict()
# create an instance of QuoteFailure from a dict
quote_failure_from_dict = QuoteFailure.from_dict(quote_failure_dict)

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