Open RoughIndustries opened 5 years ago
import ( "github.com/andrew-waters/gomo/entities" )
// Cart is a Moltin Cart -
type Cart struct {
ID string json:"id,omitempty"
Meta struct {
DisplayPrice entities.DisplayPriceWrapper json:"display_price"
Timestamps entities.Timestamps json:"timestamps,omitempty"
Stock entities.ProductStock json:"stock"
} json:"meta,omitempty"
}
I started to develop these locally following your pattern. But I just wanted to check you haven't completed this elsewhere?