You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flat shipping rate in the smallest currency unit (e.g. cents).
[optional]
currency_code
str
Currency code the rate is charged in (ISO 4217, lowercase).
[optional]
Example
fromhostinger_api.models.ecommerce_v1_shipping_shipping_resource_shipping_optionimportEcommerceV1ShippingShippingResourceShippingOption# TODO update the JSON string belowjson="{}"# create an instance of EcommerceV1ShippingShippingResourceShippingOption from a JSON stringecommerce_v1_shipping_shipping_resource_shipping_option_instance=EcommerceV1ShippingShippingResourceShippingOption.from_json(json)
# print the JSON string representation of the objectprint(EcommerceV1ShippingShippingResourceShippingOption.to_json())
# convert the object into a dictecommerce_v1_shipping_shipping_resource_shipping_option_dict=ecommerce_v1_shipping_shipping_resource_shipping_option_instance.to_dict()
# create an instance of EcommerceV1ShippingShippingResourceShippingOption from a dictecommerce_v1_shipping_shipping_resource_shipping_option_from_dict=EcommerceV1ShippingShippingResourceShippingOption.from_dict(ecommerce_v1_shipping_shipping_resource_shipping_option_dict)