fixed duplicated struct

This commit is contained in:
2017-11-30 20:16:11 +00:00
parent 0991369ace
commit 46fced4196
2 changed files with 4 additions and 7 deletions
+4 -2
View File
@@ -38,7 +38,8 @@ type Storefront struct {
type ProductListingDetails struct { type ProductListingDetails struct {
UPC string UPC string
BrandMPN BrandMPN BrandMPN BrandMPN `xml:"BrandMPN"`
EAN string `xml:"EAN"`
} }
type PrimaryCategory struct { type PrimaryCategory struct {
@@ -55,7 +56,8 @@ type NameValueList struct {
} }
type BrandMPN struct { type BrandMPN struct {
Brand, MPN string Brand string `xml:"Brand"`
MPN string `xml:"MPN"`
} }
type BestOfferDetails struct { type BestOfferDetails struct {
-5
View File
@@ -57,8 +57,3 @@ type ItemResponse struct {
type PictureDetails struct { type PictureDetails struct {
} }
type ProductListingDetails struct {
BrandMPN BrandMPN `xml:"BrandMPN"`
EAN string `xml:"EAN"`
}