-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwycloud.v
180 lines (162 loc) · 4.04 KB
/
wycloud.v
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
module vmusic
pub struct WySearchArtists {
pub:
id int [json:id]
name string [json:name]
albumsize int [json:albumSize]
picid int [json:picId]
img1v1url string [json:img1v1Url]
img1v1 int [json:img1v1]
}
pub struct WySearchArtist {
pub:
id int [json:id]
name string [json:name]
albumsize int [json:albumSize]
picid int [json:picId]
img1v1url string [json:img1v1Url]
img1v1 int [json:img1v1]
}
pub struct WySearchAlbum {
pub:
id int [json:id]
name string [json:name]
artist WySearchArtist [json:artist]
publishtime int [json:publishTime]
size int [json:size]
copyrightid int [json:copyrightId]
status int [json:status]
picid int [json:picId]
mark int [json:mark]
}
pub struct WySearchSongs {
pub:
id int [json:id]
name string [json:name]
artists []WySearchArtists [json:artists]
album WySearchAlbum [json:album]
duration int [json:duration]
copyrightid int [json:copyrightId]
status int [json:status]
rtype int [json:rtype]
ftype int [json:ftype]
mvid int [json:mvid]
fee int [json:fee]
mark int [json:mark]
}
pub struct WySearchResult_ {
pub:
songs []WySearchSongs [json:songs]
order []string [json:order]
}
pub struct WySearchResult {
pub:
result WySearchResult_ [json:result]
code int [json:code]
}
pub struct WyAudioFreetrialprivilege {
pub:
resconsumable int [json:resConsumable]
userconsumable int [json:userConsumable]
}
pub struct WyAudioFreetimetrialprivilege {
pub:
resconsumable int [json:resConsumable]
userconsumable int [json:userConsumable]
typ int [json:'type']
remaintime int [json:remainTime]
}
pub struct WyAudioData {
pub:
id int [json:id]
url string [json:url]
br int [json:br]
size int [json:size]
md5 string [json:md5]
code int [json:code]
expi int [json:expi]
typ string [json:'type']
fee int [json:fee]
payed int [json:payed]
flag int [json:flag]
canextend int [json:canExtend]
freetrialprivilege WyAudioFreetrialprivilege [json:freeTrialPrivilege]
freetimetrialprivilege WyAudioFreetimetrialprivilege [json:freeTimeTrialPrivilege]
urlsource int [json:urlSource]
}
pub struct WyAudioResult {
pub:
data []WyAudioData [json:data]
code int [json:code]
}
pub struct WySongAr {
pub:
id int [json:id]
name string [json:name]
}
pub struct WySongAl {
pub:
id int [json:id]
name string [json:name]
picurl string [json:picUrl]
pic_str string [json:pic_str]
pic int [json:pic]
}
pub struct WySongH {
pub:
br int [json:br]
fid int [json:fid]
size int [json:size]
}
pub struct WySongM {
pub:
br int [json:br]
fid int [json:fid]
size int [json:size]
}
pub struct WySongL {
pub:
br int [json:br]
fid int [json:fid]
size int [json:size]
}
pub struct WySongs {
pub:
name string [json:name]
id int [json:id]
pst int [json:pst]
t int [json:t]
ar []WySongAr [json:ar]
alia []string [json:alia]
st int [json:st]
fee int [json:fee]
v int [json:v]
cf string [json:cf]
al WySongAl [json:al]
dt int [json:dt]
h WySongH [json:h]
m WySongM [json:m]
l WySongL [json:l]
cd string [json:cd]
no int [json:no]
ftype int [json:ftype]
djid int [json:djId]
copyright int [json:copyright]
s_id int [json:s_id]
mark int [json:mark]
origincovertype int [json:originCoverType]
resourcestate int [json:resourceState]
version int [json:version]
single int [json:single]
mst int [json:mst]
cp int [json:cp]
rtype int [json:rtype]
mv int [json:mv]
publishtime int [json:publishTime]
}
pub struct WySongResult {
pub:
songs []WySongs [json:songs]
privileges string [json:privileges]
code int [json:code]
}