minor updates

This commit is contained in:
2017-11-28 21:54:13 +00:00
parent 5d66ee8db7
commit 0991369ace
2 changed files with 15 additions and 8 deletions
+14 -7
View File
@@ -44,14 +44,21 @@ type GetItemResponse struct {
} }
type ItemResponse struct { type ItemResponse struct {
Title string `xml:"Title"` Title string `xml:"Title"`
Description string `xml:"Description"` Description string `xml:"Description"`
ItemID string `xml:"ItemID"` ItemID string `xml:"ItemID"`
ViewItemURLForNaturalSearch string `xml:"ViewItemURLForNaturalSearch"` SKU string `xml:"SKU"`
PictureDetails PictureDetails `xml:"PictureDetails"` ViewItemURLForNaturalSearch string `xml:"ViewItemURLForNaturalSearch"`
Quantity string `xml:"Quantity"` PictureDetails PictureDetails `xml:"PictureDetails"`
SellingStatus SellingStatus `xml:"SellingStatus"` Quantity int `xml:"Quantity"`
SellingStatus SellingStatus `xml:"SellingStatus"`
ProductListingDetails ProductListingDetails `xml:"ProductListingDetails"`
} }
type PictureDetails struct { type PictureDetails struct {
} }
type ProductListingDetails struct {
BrandMPN BrandMPN `xml:"BrandMPN"`
EAN string `xml:"EAN"`
}
+1 -1
View File
@@ -106,7 +106,7 @@ type ListingDetails struct {
type SellingStatus struct { type SellingStatus struct {
CurrentPrice float64 CurrentPrice float64
BidCount string BidCount string
QuantitySold string QuantitySold int
} }
type GetOrdersRequestResponse struct { type GetOrdersRequestResponse struct {