mirror of
https://github.com/cubixle/go-ebay.git
synced 2026-04-24 23:04:44 +01:00
minor updates
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
|
||||
@@ -106,7 +106,7 @@ type ListingDetails struct {
|
||||
type SellingStatus struct {
|
||||
CurrentPrice float64
|
||||
BidCount string
|
||||
QuantitySold string
|
||||
QuantitySold int
|
||||
}
|
||||
|
||||
type GetOrdersRequestResponse struct {
|
||||
|
||||
Reference in New Issue
Block a user