mirror of
https://github.com/foomo/sesamy-cli.git
synced 2025-10-16 12:35:36 +00:00
8 lines
174 B
Go
8 lines
174 B
Go
package server
|
|
|
|
type AddToCart struct {
|
|
Currency string `json:"currency,omitempty"`
|
|
Value float64 `json:"value,omitempty"`
|
|
Items []*Item `json:"items,omitempty"`
|
|
}
|