From e96d3654dc63303a1c7b46cba265a6a9b41e630e Mon Sep 17 00:00:00 2001 From: Mendel E Date: Mon, 30 May 2022 02:41:56 -0400 Subject: [PATCH] Set quantity to int --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index dd7e14f..ed8d7ed 100644 --- a/types.go +++ b/types.go @@ -71,7 +71,7 @@ type OrderInfo struct { type ItemInfo struct { AsinIsbn string `csv:"ASIN/ISBN"` - Quantity string `csv:"Quantity"` + Quantity int `csv:"Quantity"` Title string `csv:"Title"` Category string `csv:"Category"` Seller string `csv:"Seller"` -- 2.45.2