mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-30 17:28:39 +01:00
minor updates
This commit is contained in:
@@ -47,11 +47,18 @@ 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"`
|
||||||
|
SKU string `xml:"SKU"`
|
||||||
ViewItemURLForNaturalSearch string `xml:"ViewItemURLForNaturalSearch"`
|
ViewItemURLForNaturalSearch string `xml:"ViewItemURLForNaturalSearch"`
|
||||||
PictureDetails PictureDetails `xml:"PictureDetails"`
|
PictureDetails PictureDetails `xml:"PictureDetails"`
|
||||||
Quantity string `xml:"Quantity"`
|
Quantity int `xml:"Quantity"`
|
||||||
SellingStatus SellingStatus `xml:"SellingStatus"`
|
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"`
|
||||||
|
}
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user