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
Indicates whether the funds were successfully redeemed to the linked DDA
Example
fromfireblocks.models.redeem_funds_to_linked_dda_responseimportRedeemFundsToLinkedDDAResponse# TODO update the JSON string belowjson="{}"# create an instance of RedeemFundsToLinkedDDAResponse from a JSON stringredeem_funds_to_linked_dda_response_instance=RedeemFundsToLinkedDDAResponse.from_json(json)
# print the JSON string representation of the objectprint(RedeemFundsToLinkedDDAResponse.to_json())
# convert the object into a dictredeem_funds_to_linked_dda_response_dict=redeem_funds_to_linked_dda_response_instance.to_dict()
# create an instance of RedeemFundsToLinkedDDAResponse from a dictredeem_funds_to_linked_dda_response_from_dict=RedeemFundsToLinkedDDAResponse.from_dict(redeem_funds_to_linked_dda_response_dict)