forked from kdvh/whatapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
responses.go
133 lines (111 loc) · 3.25 KB
/
responses.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
package whatapi
type AccountResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Account `json:"response"`
}
type AnnouncementsResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Announcements `json:"response"`
}
type ArtistResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Artist `json:"response"`
}
type ArtistBookmarksResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response ArtistBookmarks `json:"response"`
}
type CategoriesResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Categories `json:"response"`
}
type ConversationResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Conversation `json:"response"`
}
type ForumResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Forum `json:"response"`
}
type MailboxResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Mailbox `json:"response"`
}
type NotificationsResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Notifications `json:"response"`
}
type RequestResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Request `json:"response"`
}
type RequestsSearchResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response RequestsSearch `json:"response"`
}
type SubscriptionsResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Subscriptions `json:"response"`
}
type ThreadResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response Thread `json:"response"`
}
type TopTenTagsResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TopTenTags `json:"response"`
}
type TopTenTorrentsResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TopTenTorrents `json:"response"`
}
type TopTenUsersResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TopTenUsers `json:"response"`
}
type TorrentResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response GetTorrentStruct `json:"response"`
}
type TorrentBookmarksResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TorrentBookmarks `json:"response"`
}
type TorrentGroupResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TorrentGroup `json:"response"`
}
type TorrentSearchResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response TorrentSearch `json:"response"`
}
type UserResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response User `json:"response"`
}
type UserSearchResponse struct {
Status string `json:"status"`
Error string `json:"error"`
Response UserSearch `json:"response"`
}