Skip to content

CountryShippingCost

The CountryShippingCost object represents shipping costs in a country.

classDiagram
  direction LR
  CountryShippingCost --> Country
  CountryShippingCost --> ShippingCostsList
  CountryShippingCost --> Price
  CountryShippingCost --> ShippingCost
  ShippingCostsList "1" --o "*" ShippingCost
  class ShippingCost{
  }
  class CountryShippingCost{
    Country country
    ShippingCostsList shippingCosts
    ShippingCost shippingWithLowestCost
  }

Properties

Attribute name Type Description
country Country The Country object representing the country of the shipping methods.
shippingCosts ShippingCostsList The ShippingCostsList object is a list of shipping methods and their costs in the specified country. They are sorted in the order set in the admin panel.
shippingWithLowestCost ShippingCost The ShippingCost object representing the shipping with lowest cost for the specified country.

Examples

country property

{{ countryShippingCost.country.name }}
Poland

shippingCosts property

{% for shippingCost in countryShippingCost.shippingCosts %}
    {{ shippingCost.shipping.name }} - {{ shippingCost.price.formatGross }}
{% endfor %}
InPost - 12.99 zł
GLS - 14.99 zł

shippingWithLowestCost property

{{ countryShippingCost.shippingWithLowestCost.shipping.name }} - {{ countryShippingCost.shippingWithLowestCost.price.formatGross }}
InPost - 12.99 zł