package
Version:
v0.0.0-...-ce62dce
Opens a new window with list of versions in this module.
Published: Jan 25, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Detail struct {
ID uint64 `json:"id"`
Name string `json:"name"`
Price float32 `json:"price"`
CreatedTime time.Time `json:"created_time"`
}
type Product struct {
Detail *Detail `json:"detail"`
Rating *Rating `json:"rating"`
Reviews []*Review `json:"reviews"`
}
type Rating struct {
ID uint64 `json:"id"`
ProductID uint64 `json:"product_id"`
Score uint32 `json:"score"`
UpdatedTime time.Time `json:"updated_time"`
}
type Review struct {
ID uint64 `json:"id"`
ProductID uint64 `json:"product_id"`
Message string `json:"message"`
CreatedTime time.Time `json:"created_time"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.