When true, funds are deposited directly into the recipient's bank account without a security question. When false, a security question and answer are required to complete the transfer
| Name | Type | Description | Notes |
|---|---|---|---|
| account_holder | AccountHolderDetails | ||
| recipient_handle | RecipientHandle | ||
| message | str | The message to be sent to the recipient | [optional] |
| auto_deposit | bool | Whether to automatically deposit the funds into the account | |
| security_question | str | The security question to be used for the security answer | [optional] |
| security_answer | str | The security answer to be used for the security question | [optional] |
from fireblocks.models.interac_address import InteracAddress
# TODO update the JSON string below
json = "{}"
# create an instance of InteracAddress from a JSON string
interac_address_instance = InteracAddress.from_json(json)
# print the JSON string representation of the object
print(InteracAddress.to_json())
# convert the object into a dict
interac_address_dict = interac_address_instance.to_dict()
# create an instance of InteracAddress from a dict
interac_address_from_dict = InteracAddress.from_dict(interac_address_dict)