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

View File

@@ -47,11 +47,18 @@ type ItemResponse struct {
Title string `xml:"Title"`
Description string `xml:"Description"`
ItemID string `xml:"ItemID"`
SKU string `xml:"SKU"`
ViewItemURLForNaturalSearch string `xml:"ViewItemURLForNaturalSearch"`
PictureDetails PictureDetails `xml:"PictureDetails"`
Quantity string `xml:"Quantity"`
Quantity int `xml:"Quantity"`
SellingStatus SellingStatus `xml:"SellingStatus"`
ProductListingDetails ProductListingDetails `xml:"ProductListingDetails"`
}
type PictureDetails struct {
}
type ProductListingDetails struct {
BrandMPN BrandMPN `xml:"BrandMPN"`
EAN string `xml:"EAN"`
}

View File

@@ -106,7 +106,7 @@ type ListingDetails struct {
type SellingStatus struct {
CurrentPrice float64
BidCount string
QuantitySold string
QuantitySold int
}
type GetOrdersRequestResponse struct {