-
Notifications
You must be signed in to change notification settings - Fork 1
/
response_types.go
256 lines (250 loc) · 12.3 KB
/
response_types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
package go_stockx_client
import "time"
type SearchResultProductResponse struct {
Brand string `json:"brand"`
Colorway string `json:"colorway"`
Media struct {
Thumburl string `json:"thumbUrl"`
} `json:"media"`
Productcategory string `json:"productCategory"`
Shortdescription string `json:"shortDescription"`
Title string `json:"title"`
Urlkey string `json:"urlKey"`
Objectid string `json:"objectID"`
}
type ProductSearchResultResponse struct {
Pagination struct {
Query string `json:"query"`
Queryid string `json:"queryID"`
Index string `json:"index"`
Limit string `json:"limit"`
Page int `json:"page"`
Total int `json:"total"`
Lastpage string `json:"lastPage"`
Sort []string `json:"sort"`
Order []string `json:"order"`
Currentpage string `json:"currentPage"`
Nextpage interface{} `json:"nextPage"`
Previouspage interface{} `json:"previousPage"`
} `json:"Pagination"`
Facets struct {
Browseverticals struct {
Sneakers int `json:"sneakers"`
} `json:"browseVerticals"`
} `json:"Facets"`
Products []SearchResultProductResponse `json:"Products"`
}
type ProductResponse struct {
Product Product `json:"Product"`
}
type Product struct {
ID string `json:"id"`
UUID string `json:"uuid"`
Brand string `json:"brand"`
Colorway string `json:"colorway"`
Condition string `json:"condition"`
Countryofmanufacture string `json:"countryOfManufacture"`
Gender string `json:"gender"`
Contentgroup string `json:"contentGroup"`
Minimumbid int `json:"minimumBid"`
Name string `json:"name"`
Primarycategory string `json:"primaryCategory"`
Secondarycategory string `json:"secondaryCategory"`
Ushtscode string `json:"usHtsCode"`
Ushtsdescription string `json:"usHtsDescription"`
Productcategory string `json:"productCategory"`
Releasedate string `json:"releaseDate"`
Retailprice int `json:"retailPrice"`
Shoe string `json:"shoe"`
Shortdescription string `json:"shortDescription"`
Styleid string `json:"styleId"`
Tickersymbol string `json:"tickerSymbol"`
Title string `json:"title"`
Datatype string `json:"dataType"`
Urlkey string `json:"urlKey"`
Sizelocale string `json:"sizeLocale"`
Sizetitle string `json:"sizeTitle"`
Sizedescriptor string `json:"sizeDescriptor"`
Sizealldescriptor string `json:"sizeAllDescriptor"`
Description string `json:"description"`
Lithiumionbattery bool `json:"lithiumIonBattery"`
Hazardousmaterial interface{} `json:"hazardousMaterial"`
Type bool `json:"type"`
Alim int `json:"aLim"`
Year int `json:"year"`
Shippinggroup string `json:"shippingGroup"`
Portfolioitems []interface{} `json:"PortfolioItems"`
Shipping struct {
Totaldaystoship int `json:"totalDaysToShip"`
Hasadditionaldaystoship bool `json:"hasAdditionalDaysToShip"`
Deliverydayslowerbound int `json:"deliveryDaysLowerBound"`
Deliverydaysupperbound int `json:"deliveryDaysUpperBound"`
} `json:"shipping"`
Enhancedimage struct {
Productuuid string `json:"productUuid"`
Imagekey string `json:"imageKey"`
Imagecount int `json:"imageCount"`
} `json:"enhancedImage"`
Media struct {
Num360 []string `json:"360"`
Imageurl string `json:"imageUrl"`
Smallimageurl string `json:"smallImageUrl"`
Thumburl string `json:"thumbUrl"`
Has360 bool `json:"has360"`
Gallery []interface{} `json:"gallery"`
} `json:"media"`
Charitycondition int `json:"charityCondition"`
Breadcrumbs []struct {
Level int `json:"level"`
Name string `json:"name"`
URL string `json:"url"`
} `json:"breadcrumbs"`
Market struct {
Productid int `json:"productId"`
Skuuuid interface{} `json:"skuUuid"`
Productuuid string `json:"productUuid"`
Lowestask int `json:"lowestAsk"`
Lowestasksize interface{} `json:"lowestAskSize"`
Parentlowestask int `json:"parentLowestAsk"`
Numberofasks int `json:"numberOfAsks"`
Hasasks int `json:"hasAsks"`
Salesthisperiod int `json:"salesThisPeriod"`
Saleslastperiod int `json:"salesLastPeriod"`
Highestbid int `json:"highestBid"`
Highestbidsize interface{} `json:"highestBidSize"`
Numberofbids int `json:"numberOfBids"`
Hasbids int `json:"hasBids"`
Annualhigh int `json:"annualHigh"`
Annuallow int `json:"annualLow"`
Deadstockrangelow int `json:"deadstockRangeLow"`
Deadstockrangehigh int `json:"deadstockRangeHigh"`
Volatility float64 `json:"volatility"`
Deadstocksold int `json:"deadstockSold"`
Pricepremium float64 `json:"pricePremium"`
Averagedeadstockprice int `json:"averageDeadstockPrice"`
Lastsale int `json:"lastSale"`
Lastsalesize string `json:"lastSaleSize"`
Saleslast72Hours int `json:"salesLast72Hours"`
Changevalue int `json:"changeValue"`
Changepercentage float64 `json:"changePercentage"`
Abschangepercentage float64 `json:"absChangePercentage"`
Totaldollars int `json:"totalDollars"`
Updatedat int `json:"updatedAt"`
Lastlowestasktime int `json:"lastLowestAskTime"`
Lasthighestbidtime int `json:"lastHighestBidTime"`
Lastsaledate time.Time `json:"lastSaleDate"`
Createdat time.Time `json:"createdAt"`
Deadstocksoldrank int `json:"deadstockSoldRank"`
Pricepremiumrank int `json:"pricePremiumRank"`
Averagedeadstockpricerank int `json:"averageDeadstockPriceRank"`
Featured interface{} `json:"featured"`
Lowestaskfloat float64 `json:"lowestAskFloat"`
Highestbidfloat float64 `json:"highestBidFloat"`
} `json:"market"`
Children map[string]ProductWithoutChildren `json:"children"`
}
type ProductWithoutChildren struct {
ID string `json:"id"`
UUID string `json:"uuid"`
Brand string `json:"brand"`
Colorway string `json:"colorway"`
Condition string `json:"condition"`
Countryofmanufacture string `json:"countryOfManufacture"`
Gender string `json:"gender"`
Contentgroup string `json:"contentGroup"`
Minimumbid int `json:"minimumBid"`
Name string `json:"name"`
Primarycategory string `json:"primaryCategory"`
Secondarycategory string `json:"secondaryCategory"`
Ushtscode string `json:"usHtsCode"`
Ushtsdescription string `json:"usHtsDescription"`
Productcategory string `json:"productCategory"`
Releasedate string `json:"releaseDate"`
Retailprice int `json:"retailPrice"`
Shoe string `json:"shoe"`
Shortdescription string `json:"shortDescription"`
Styleid string `json:"styleId"`
Tickersymbol string `json:"tickerSymbol"`
Title string `json:"title"`
Datatype string `json:"dataType"`
Urlkey string `json:"urlKey"`
Sizelocale string `json:"sizeLocale"`
Sizetitle string `json:"sizeTitle"`
Sizedescriptor string `json:"sizeDescriptor"`
Sizealldescriptor string `json:"sizeAllDescriptor"`
Description string `json:"description"`
Lithiumionbattery bool `json:"lithiumIonBattery"`
Hazardousmaterial interface{} `json:"hazardousMaterial"`
Type bool `json:"type"`
Alim int `json:"aLim"`
Year int `json:"year"`
Shippinggroup string `json:"shippingGroup"`
Portfolioitems []interface{} `json:"PortfolioItems"`
Shipping struct {
Totaldaystoship int `json:"totalDaysToShip"`
Hasadditionaldaystoship bool `json:"hasAdditionalDaysToShip"`
Deliverydayslowerbound int `json:"deliveryDaysLowerBound"`
Deliverydaysupperbound int `json:"deliveryDaysUpperBound"`
} `json:"shipping"`
Enhancedimage struct {
Productuuid string `json:"productUuid"`
Imagekey string `json:"imageKey"`
Imagecount int `json:"imageCount"`
} `json:"enhancedImage"`
Media struct {
Num360 []string `json:"360"`
Imageurl string `json:"imageUrl"`
Smallimageurl string `json:"smallImageUrl"`
Thumburl string `json:"thumbUrl"`
Has360 bool `json:"has360"`
Gallery []interface{} `json:"gallery"`
} `json:"media"`
Charitycondition int `json:"charityCondition"`
Breadcrumbs []struct {
Level int `json:"level"`
Name string `json:"name"`
URL string `json:"url"`
} `json:"breadcrumbs"`
Market struct {
Productid int `json:"productId"`
Skuuuid interface{} `json:"skuUuid"`
Productuuid string `json:"productUuid"`
Lowestask int `json:"lowestAsk"`
Lowestasksize interface{} `json:"lowestAskSize"`
Parentlowestask int `json:"parentLowestAsk"`
Numberofasks int `json:"numberOfAsks"`
Hasasks int `json:"hasAsks"`
Salesthisperiod int `json:"salesThisPeriod"`
Saleslastperiod int `json:"salesLastPeriod"`
Highestbid int `json:"highestBid"`
Highestbidsize interface{} `json:"highestBidSize"`
Numberofbids int `json:"numberOfBids"`
Hasbids int `json:"hasBids"`
Annualhigh int `json:"annualHigh"`
Annuallow int `json:"annualLow"`
Deadstockrangelow int `json:"deadstockRangeLow"`
Deadstockrangehigh int `json:"deadstockRangeHigh"`
Volatility float64 `json:"volatility"`
Deadstocksold int `json:"deadstockSold"`
Pricepremium float64 `json:"pricePremium"`
Averagedeadstockprice int `json:"averageDeadstockPrice"`
Lastsale int `json:"lastSale"`
Lastsalesize string `json:"lastSaleSize"`
Saleslast72Hours int `json:"salesLast72Hours"`
Changevalue int `json:"changeValue"`
Changepercentage float64 `json:"changePercentage"`
Abschangepercentage float64 `json:"absChangePercentage"`
Totaldollars int `json:"totalDollars"`
Updatedat int `json:"updatedAt"`
Lastlowestasktime int `json:"lastLowestAskTime"`
Lasthighestbidtime int `json:"lastHighestBidTime"`
Lastsaledate time.Time `json:"lastSaleDate"`
Createdat time.Time `json:"createdAt"`
Deadstocksoldrank int `json:"deadstockSoldRank"`
Pricepremiumrank int `json:"pricePremiumRank"`
Averagedeadstockpricerank int `json:"averageDeadstockPriceRank"`
Featured interface{} `json:"featured"`
Lowestaskfloat float64 `json:"lowestAskFloat"`
Highestbidfloat float64 `json:"highestBidFloat"`
} `json:"market"`
}