Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.6 KB

File metadata and controls

35 lines (26 loc) · 1.6 KB

BillingAddress

Properties

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. [optional]
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]

Example

from clientapi_barion.models.billing_address import BillingAddress

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

# convert the object into a dict
billing_address_dict = billing_address_instance.to_dict()
# create an instance of BillingAddress from a dict
billing_address_from_dict = BillingAddress.from_dict(billing_address_dict)

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