| Name |
Type |
Description |
Notes |
| country |
str |
The payer's country code in ISO-3166-1 format (e.g., HU or DE). Use `ZZ` if shipping address is not available. |
|
| city |
str |
Required if Region is specified. The complete name of the city of the recipient address. |
[optional] |
| region |
str |
Send `null` if not applicable. The country subdivision code (state or county) in ISO-3166-2 format. |
[optional] |
| zip |
str |
The zip code of the recipient address. |
[optional] |
| street |
str |
The shipping street address with house number and other details. |
[optional] |
| street2 |
str |
The address, continued. |
[optional] |
| street3 |
str |
The address, continued. |
[optional] |
| full_name |
str |
The name of the customer on the shipping address. |
[optional] |
from clientapi_barion.models.shipping_address import ShippingAddress
# TODO update the JSON string below
json = "{}"
# create an instance of ShippingAddress from a JSON string
shipping_address_instance = ShippingAddress.from_json(json)
# print the JSON string representation of the object
print(ShippingAddress.to_json())
# convert the object into a dict
shipping_address_dict = shipping_address_instance.to_dict()
# create an instance of ShippingAddress from a dict
shipping_address_from_dict = ShippingAddress.from_dict(shipping_address_dict)
[Back to Model list] [Back to API list] [Back to README]