#71 Quantity field of Item struct type must change from string to uint32 type

This commit is contained in:
Alex Pliutau 2018-12-16 13:06:54 +01:00
parent f7201fdd87
commit 2eacad2d5d

View File

@ -288,7 +288,7 @@ type (
// Item struct // Item struct
Item struct { Item struct {
Quantity string `json:"quantity"` Quantity uint32 `json:"quantity"`
Name string `json:"name"` Name string `json:"name"`
Price string `json:"price"` Price string `json:"price"`
Currency string `json:"currency"` Currency string `json:"currency"`