| Name |
Type |
Description |
Notes |
| street_name |
str |
|
|
| building_number |
str |
|
|
| postal_code |
str |
|
|
| city |
str |
|
|
| subdivision |
str |
|
|
| district |
str |
|
|
| country |
str |
|
|
from fireblocks.models.postal_address import PostalAddress
# TODO update the JSON string below
json = "{}"
# create an instance of PostalAddress from a JSON string
postal_address_instance = PostalAddress.from_json(json)
# print the JSON string representation of the object
print(PostalAddress.to_json())
# convert the object into a dict
postal_address_dict = postal_address_instance.to_dict()
# create an instance of PostalAddress from a dict
postal_address_from_dict = PostalAddress.from_dict(postal_address_dict)
[Back to Model list] [Back to API list] [Back to README]