Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.53 KB

File metadata and controls

35 lines (26 loc) · 1.53 KB

InteracAddress

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

Properties

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]

Example

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)

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