package
Version:
v0.0.0-...-506a045
Opens a new window with list of versions in this module.
Published: Nov 15, 2023
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type LineItem struct {
ItemID uuid.UUID `json:"item_id"`
Quantity uint `json:"quantity"`
Price uint `json:"price"`
}
type Order struct {
OrderID uint64 `json:"order_id"`
CustomerID uuid.UUID `json:"customer_id"`
LineItems []LineItem `json:"line_items"`
CreatedAt *time.Time `json:"created_at"`
ShippedAt *time.Time `json:"shipped_at"`
CompletedAt *time.Time `json:"completed_at"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.