16 lines
562 B
Go
16 lines
562 B
Go
package models
|
|
|
|
type ProductAttributeOption struct {
|
|
ItemTypeCode int16 `json:"item_type_code"`
|
|
AttributeTypeCode int `json:"attribute_type_code"`
|
|
AttributeTypeDescription string `json:"attribute_type_description"`
|
|
AttributeCode string `json:"attribute_code"`
|
|
AttributeDescription string `json:"attribute_description"`
|
|
}
|
|
|
|
type ProductItemAttributeValue struct {
|
|
ItemTypeCode int16 `json:"item_type_code"`
|
|
AttributeTypeCode int `json:"attribute_type_code"`
|
|
AttributeCode string `json:"attribute_code"`
|
|
}
|