Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.23 KB

File metadata and controls

36 lines (27 loc) · 1.23 KB

SEPAAddress

Properties

Name Type Description Notes
account_holder AccountHolderDetails
iban str
bic str Bank Identifier Code (SWIFT/BIC) [optional]
bank_name str [optional]
bank_branch str [optional]
bank_address str [optional]
purpose_code str ISO purpose code for the transfer [optional]
tax_id str Beneficiary tax identification number [optional]

Example

from fireblocks.models.sepa_address import SEPAAddress

# TODO update the JSON string below
json = "{}"
# create an instance of SEPAAddress from a JSON string
sepa_address_instance = SEPAAddress.from_json(json)
# print the JSON string representation of the object
print(SEPAAddress.to_json())

# convert the object into a dict
sepa_address_dict = sepa_address_instance.to_dict()
# create an instance of SEPAAddress from a dict
sepa_address_from_dict = SEPAAddress.from_dict(sepa_address_dict)

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