You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If quote is expired, how many times to re-generate new quotes to try having the order executed as in the original quote.
slippage_bps
int
Slippage tolerance in basis points (bps) for quote orders - 1 is 0.01% and 10000 is 100%
[optional]
Example
fromfireblocks.models.retry_requote_request_detailsimportRetryRequoteRequestDetails# TODO update the JSON string belowjson="{}"# create an instance of RetryRequoteRequestDetails from a JSON stringretry_requote_request_details_instance=RetryRequoteRequestDetails.from_json(json)
# print the JSON string representation of the objectprint(RetryRequoteRequestDetails.to_json())
# convert the object into a dictretry_requote_request_details_dict=retry_requote_request_details_instance.to_dict()
# create an instance of RetryRequoteRequestDetails from a dictretry_requote_request_details_from_dict=RetryRequoteRequestDetails.from_dict(retry_requote_request_details_dict)