ConfigEshopCheckoutShippingPolicy Object
Description
Shipping policy configuration defining shipping costs for specific countries.
Declaration
type ConfigEshopCheckoutShippingPolicy {
_id: String!
createdAt: Date!
updatedAt: Date!
active: Boolean!
title: String!
freeShippingThreshold: Float
methods: [ConfigEshopCheckoutShippingPolicyMethods!]!
countries: [String!]!
}
Fields
| Name | Type | Description |
|---|---|---|
_id | String! | Internal identifier for the policy. |
createdAt | Date! | Date when the policy was created. |
updatedAt | Date! | Date when the policy was last updated. |
active | Boolean! | Whether the policy is currently active. |
title | String! | Display title for the shipping policy. |
freeShippingThreshold | Float | Threshold value above which shipping is free. |
methods | [ConfigEshopCheckoutShippingPolicyMethods!]! | Shipping methods available in this policy. |
countries | [String!]! | List of country codes this policy applies to. |