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 deposited from the linked DDA
Example
fromfireblocks.models.deposit_funds_from_linked_dda_responseimportDepositFundsFromLinkedDDAResponse# TODO update the JSON string belowjson="{}"# create an instance of DepositFundsFromLinkedDDAResponse from a JSON stringdeposit_funds_from_linked_dda_response_instance=DepositFundsFromLinkedDDAResponse.from_json(json)
# print the JSON string representation of the objectprint(DepositFundsFromLinkedDDAResponse.to_json())
# convert the object into a dictdeposit_funds_from_linked_dda_response_dict=deposit_funds_from_linked_dda_response_instance.to_dict()
# create an instance of DepositFundsFromLinkedDDAResponse from a dictdeposit_funds_from_linked_dda_response_from_dict=DepositFundsFromLinkedDDAResponse.from_dict(deposit_funds_from_linked_dda_response_dict)