The billing address, or null.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| company | str | [optional] | |
| address_1 | str | [optional] | |
| address_2 | str | [optional] | |
| city | str | [optional] | |
| province_code | str | [optional] | |
| postal_code | str | [optional] | |
| country_code | str | [optional] | |
| phone | str | [optional] |
from hostinger_api.models.ecommerce_v1_order_order_detail_resource_billing_address import EcommerceV1OrderOrderDetailResourceBillingAddress
# TODO update the JSON string below
json = "{}"
# create an instance of EcommerceV1OrderOrderDetailResourceBillingAddress from a JSON string
ecommerce_v1_order_order_detail_resource_billing_address_instance = EcommerceV1OrderOrderDetailResourceBillingAddress.from_json(json)
# print the JSON string representation of the object
print(EcommerceV1OrderOrderDetailResourceBillingAddress.to_json())
# convert the object into a dict
ecommerce_v1_order_order_detail_resource_billing_address_dict = ecommerce_v1_order_order_detail_resource_billing_address_instance.to_dict()
# create an instance of EcommerceV1OrderOrderDetailResourceBillingAddress from a dict
ecommerce_v1_order_order_detail_resource_billing_address_from_dict = EcommerceV1OrderOrderDetailResourceBillingAddress.from_dict(ecommerce_v1_order_order_detail_resource_billing_address_dict)