ordercollect/internal/models/models.go

18 lines
370 B
Go
Raw Normal View History

2023-07-08 03:56:44 +00:00
package models
type Wk24order struct {
Orderid string `json:"orderid"`
Items []Item `json:"items"`
Name string `json:"name"`
Street string `json:"street"`
Zip string `json:"zip"`
City string `json:"city"`
Country string `json:"country"`
Phone string `json:"phone"`
}
type Item struct {
Sku string `json:"sku"`
Quantity int `json:"quantity"`
}