| Name | Type | Description | Notes |
|---|---|---|---|
| account_holder | AccountHolderDetails | ||
| iban | str |
from fireblocks.models.iban_address import IbanAddress
# TODO update the JSON string below
json = "{}"
# create an instance of IbanAddress from a JSON string
iban_address_instance = IbanAddress.from_json(json)
# print the JSON string representation of the object
print(IbanAddress.to_json())
# convert the object into a dict
iban_address_dict = iban_address_instance.to_dict()
# create an instance of IbanAddress from a dict
iban_address_from_dict = IbanAddress.from_dict(iban_address_dict)