mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-24 22:34:47 +01:00
fixed duplicated struct
This commit is contained in:
@@ -38,7 +38,8 @@ type Storefront struct {
|
||||
|
||||
type ProductListingDetails struct {
|
||||
UPC string
|
||||
BrandMPN BrandMPN
|
||||
BrandMPN BrandMPN `xml:"BrandMPN"`
|
||||
EAN string `xml:"EAN"`
|
||||
}
|
||||
|
||||
type PrimaryCategory struct {
|
||||
@@ -55,7 +56,8 @@ type NameValueList struct {
|
||||
}
|
||||
|
||||
type BrandMPN struct {
|
||||
Brand, MPN string
|
||||
Brand string `xml:"Brand"`
|
||||
MPN string `xml:"MPN"`
|
||||
}
|
||||
|
||||
type BestOfferDetails struct {
|
||||
|
||||
@@ -57,8 +57,3 @@ type ItemResponse struct {
|
||||
|
||||
type PictureDetails struct {
|
||||
}
|
||||
|
||||
type ProductListingDetails struct {
|
||||
BrandMPN BrandMPN `xml:"BrandMPN"`
|
||||
EAN string `xml:"EAN"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user