| Name | Type | Description | Notes |
|---|---|---|---|
| shipping_option | EcommerceV1ShippingShippingResourceShippingOption | [optional] | |
| admin_url | str | Admin UI deep-link to manage shipping settings. | [optional] |
from hostinger_api.models.ecommerce_v1_shipping_shipping_resource import EcommerceV1ShippingShippingResource
# TODO update the JSON string below
json = "{}"
# create an instance of EcommerceV1ShippingShippingResource from a JSON string
ecommerce_v1_shipping_shipping_resource_instance = EcommerceV1ShippingShippingResource.from_json(json)
# print the JSON string representation of the object
print(EcommerceV1ShippingShippingResource.to_json())
# convert the object into a dict
ecommerce_v1_shipping_shipping_resource_dict = ecommerce_v1_shipping_shipping_resource_instance.to_dict()
# create an instance of EcommerceV1ShippingShippingResource from a dict
ecommerce_v1_shipping_shipping_resource_from_dict = EcommerceV1ShippingShippingResource.from_dict(ecommerce_v1_shipping_shipping_resource_dict)