-
Notifications
You must be signed in to change notification settings - Fork 0
/
soulbinds.go
71 lines (67 loc) · 1.49 KB
/
soulbinds.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
package wowapi
import (
"encoding/json"
"fmt"
)
type Soulbinds struct {
Soulbinds []struct {
Traits []struct {
Trait struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"trait"`
Tier float64 `json:"tier"`
DisplayOrder float64 `json:"display_order"`
} `json:"traits"`
Soulbind struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"soulbind"`
} `json:"soulbinds"`
Links struct {
Self struct {
Href string `json:"href"`
} `json:"self"`
} `json:"_links"`
Character struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
Realm struct {
Slug string `json:"slug"`
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"realm"`
} `json:"character"`
ChosenCovenant struct {
Id float64 `json:"id"`
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
} `json:"chosen_covenant"`
RenownLevel float64 `json:"renown_level"`
}
func (req RequestFunc) CharacterSoulbinds(realm string, name string) (s Soulbinds, err error) {
url := fmt.Sprintf("/profile/wow/character/%s/%s/soulbinds", realm, name)
body, err := req(url)
if err != nil {
return
}
err = json.Unmarshal(body, &s)
if err != nil {
return
}
return
}