-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.go
54 lines (50 loc) · 2.42 KB
/
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
package go_stockx_client
import "time"
type SearchResultProduct struct {
Brand string `json:"brand"`
Colorway string `json:"colorway"`
ImageUrl string `json:"imageUrl"`
Category string `json:"category"`
Description string `json:"description"`
Title string `json:"title"`
ProductIdentifier string `json:"productIdentifier"`
}
type ProductDetails struct {
ID string `json:"id"`
UUID string `json:"uuid"`
Brand string `json:"brand"`
Colorway string `json:"colorway"`
Minimumbid int `json:"minimumBid"`
Name string `json:"name"`
Releasedate string `json:"releaseDate"`
Retailprice int `json:"retailPrice"`
Shoe string `json:"shoe"`
SizeLocale string `json:"sizeLocale"`
SizeTitle string `json:"sizeTitle"`
Shortdescription string `json:"shortDescription"`
Styleid string `json:"styleId"`
Title string `json:"title"`
ProductIdentifier string `json:"productIdentifier"`
Description string `json:"description"`
Imageurl string `json:"imageUrl"`
Smallimageurl string `json:"smallImageUrl"`
Thumburl string `json:"thumbUrl"`
Lowestask int `json:"lowestAsk"`
Highestbid int `json:"highestBid"`
Lowestaskfloat float64 `json:"lowestAskFloat"`
Highestbidfloat float64 `json:"highestBidFloat"`
Variants []ProductDetailsVariant `json:"variants"`
}
type ProductDetailsVariant struct {
UUID string `json:"UUID"`
Size string `json:"size"`
Lowestask int `json:"lowestAsk"`
Highestbid int `json:"highestBid"`
Annualhigh int `json:"annualHigh"`
Annuallow int `json:"annualLow"`
Lastsale int `json:"lastSale"`
Saleslast72Hours int `json:"salesLast72Hours"`
Lastsaledate time.Time `json:"lastSaleDate"`
Lowestaskfloat float64 `json:"lowestAskFloat"`
Highestbidfloat float64 `json:"highestBidFloat"`
}