mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-30 18:08:41 +01:00
fixed duplicated struct
This commit is contained in:
+4
-2
@@ -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 {
|
||||||
|
|||||||
@@ -57,8 +57,3 @@ type ItemResponse struct {
|
|||||||
|
|
||||||
type PictureDetails struct {
|
type PictureDetails struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ProductListingDetails struct {
|
|
||||||
BrandMPN BrandMPN `xml:"BrandMPN"`
|
|
||||||
EAN string `xml:"EAN"`
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user