Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.69 KB

File metadata and controls

38 lines (29 loc) · 1.69 KB

EcommerceV1OrderOrderDetailResourceBillingAddress

The billing address, or null.

Properties

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]

Example

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)

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