Discover Packages
github.com/k0ntra/microservices/order
internal
application
core
domain
package
Version:
v0.0.0-...-0238175
Opens a new window with list of versions in this module.
Published: Nov 16, 2024
License: MIT
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
Documentation
¶
type Order struct {
ID int64 `json:"id"`
CustomerID int64 `json:"customer_id"`
Status string `json:"status"`
OrderItems []OrderItem `json:"order_items"`
CreatedAt int64 `json:"created_at"`
}
type OrderItem struct {
ProductCode string `json:"product_code"`
UnitPrice float32 `json:"unit_price"`
Quantity int32 `json:"quantity"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.