1 Commits

Author SHA1 Message Date
bb357b4b57 Update entity/product_attribute.go 2025-04-13 21:26:37 +00:00

View File

@@ -2,10 +2,12 @@ package entity
// ProductAttribute product attribute properties
type ProductAttribute struct {
ID int `json:"id"`
Name string `json:"name"`
Slug string `json:"slug"`
Type string `json:"type"`
OrderBy string `json:"order_by"`
HasArchives bool `json:"has_archives"`
ID int `json:"id"`
Name string `json:"name"`
Slug string `json:"slug"`
Type string `json:"type"`
OrderBy string `json:"order_by"`
HasArchives bool `json:"has_archives"`
Visible bool `json:"visible,omitempty"`
Options []string `json:"options,omitempty"`
}