Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.03 KB

File metadata and controls

35 lines (26 loc) · 1.03 KB

PostalAddress

Properties

Name Type Description Notes
street_name str
building_number str
postal_code str
city str
subdivision str
district str
country str

Example

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]