2025-04-08 19:24:11 +02:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
// ProductAttribute product attribute properties
|
|
|
|
|
type ProductAttribute struct {
|
2025-04-13 21:26:37 +00:00
|
|
|
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"`
|
2025-04-08 19:24:11 +02:00
|
|
|
}
|