This commit is contained in:
scheibling
2025-04-08 19:24:11 +02:00
commit 30fb57f4f7
92 changed files with 6196 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package entity
// ShippingZoneMethod shipping zone method properties
type ShippingZoneMethod = ShippingMethod
// ShippingZoneMethodSetting shipping zone method setting properties
type ShippingZoneMethodSetting struct {
ID int `json:"id"`
Label string `json:"label"`
Description string `json:"description"`
Type string `json:"type"`
Value string `json:"value"`
Default string `json:"default"`
Tip string `json:"tip"`
PlaceHolder string `json:"place_holder"`
}