GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( 3f9068...c9b4b8 )
by
unknown
06:56
created

RemoveMeeting::withMeetingUUID()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Aliyuncvc\V20190919;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ActiveMeetingCode activeMeetingCode(array $options = [])
9
 * @method CheckMeetingCode checkMeetingCode(array $options = [])
10
 * @method CreateMeeting createMeeting(array $options = [])
11
 * @method CreateUser createUser(array $options = [])
12
 * @method CreateUserEvaluations createUserEvaluations(array $options = [])
13
 * @method DeleteUser deleteUser(array $options = [])
14
 * @method ListCommodities listCommodities(array $options = [])
15
 * @method QueryIsvUserInfo queryIsvUserInfo(array $options = [])
16
 * @method QueryMeetingInfo queryMeetingInfo(array $options = [])
17
 * @method QueryMemberRecord queryMemberRecord(array $options = [])
18
 * @method QueryStatistics queryStatistics(array $options = [])
19
 * @method QueryUserBuyAttribute queryUserBuyAttribute(array $options = [])
20
 * @method QueryUserEvaluation queryUserEvaluation(array $options = [])
21
 * @method QueryUserInfo queryUserInfo(array $options = [])
22
 * @method QueryUserList queryUserList(array $options = [])
23
 * @method RemoveMeeting removeMeeting(array $options = [])
24
 */
25
class AliyuncvcApiResolver extends ApiResolver
26
{
27
}
28
29
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
30
{
31
    /** @var string */
32
    public $product = 'aliyuncvc';
33
34
    /** @var string */
35
    public $version = '2019-09-19';
36
37
    /** @var string */
38
    public $method = 'POST';
39
40
    /** @var string */
41
    public $serviceCode = 'aliyuncvc';
42
}
43
44
/**
45
 * @method string getMeetingUUID()
46
 * @method $this withMeetingUUID($value)
47
 * @method string getMeetingCode()
48
 * @method $this withMeetingCode($value)
49
 */
50
class ActiveMeetingCode extends Rpc
51
{
52
}
53
54
/**
55
 * @method string getMeetingCode()
56
 * @method string getUserId()
57
 */
58
class CheckMeetingCode extends Rpc
59
{
60
61
    /**
62
     * @param string $value
63
     *
64
     * @return $this
65
     */
66
    public function withMeetingCode($value)
67
    {
68
        $this->data['MeetingCode'] = $value;
69
        $this->options['form_params']['MeetingCode'] = $value;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @param string $value
76
     *
77
     * @return $this
78
     */
79
    public function withUserId($value)
80
    {
81
        $this->data['UserId'] = $value;
82
        $this->options['form_params']['UserId'] = $value;
83
84
        return $this;
85
    }
86
}
87
88
/**
89
 * @method string getMeetingName()
90
 * @method string getUserId()
91
 */
92
class CreateMeeting extends Rpc
93
{
94
95
    /**
96
     * @param string $value
97
     *
98
     * @return $this
99
     */
100
    public function withMeetingName($value)
101
    {
102
        $this->data['MeetingName'] = $value;
103
        $this->options['form_params']['MeetingName'] = $value;
104
105
        return $this;
106
    }
107
108
    /**
109
     * @param string $value
110
     *
111
     * @return $this
112
     */
113
    public function withUserId($value)
114
    {
115
        $this->data['UserId'] = $value;
116
        $this->options['form_params']['UserId'] = $value;
117
118
        return $this;
119
    }
120
}
121
122
/**
123
 * @method string getCount()
124
 * @method string getUserInfo()
125
 */
126
class CreateUser extends Rpc
127
{
128
129
    /**
130
     * @param string $value
131
     *
132
     * @return $this
133
     */
134
    public function withCount($value)
135
    {
136
        $this->data['Count'] = $value;
137
        $this->options['form_params']['Count'] = $value;
138
139
        return $this;
140
    }
141
142
    /**
143
     * @param string $value
144
     *
145
     * @return $this
146
     */
147
    public function withUserInfo($value)
148
    {
149
        $this->data['UserInfo'] = $value;
150
        $this->options['form_params']['UserInfo'] = $value;
151
152
        return $this;
153
    }
154
}
155
156
/**
157
 * @method string getMemo()
158
 * @method $this withMemo($value)
159
 * @method string getDescription()
160
 * @method $this withDescription($value)
161
 * @method string getCreateDate()
162
 * @method $this withCreateDate($value)
163
 * @method string getMemberUUID()
164
 * @method $this withMemberUUID($value)
165
 * @method string getUserId()
166
 * @method $this withUserId($value)
167
 * @method string getEvaluation()
168
 * @method $this withEvaluation($value)
169
 * @method string getScore()
170
 * @method $this withScore($value)
171
 * @method string getMeetingUUID()
172
 * @method $this withMeetingUUID($value)
173
 * @method string getAppId()
174
 * @method $this withAppId($value)
175
 */
176
class CreateUserEvaluations extends Rpc
177
{
178
}
179
180
/**
181
 * @method string getCount()
182
 * @method string getUserInfo()
183
 */
184
class DeleteUser extends Rpc
185
{
186
187
    /**
188
     * @param string $value
189
     *
190
     * @return $this
191
     */
192
    public function withCount($value)
193
    {
194
        $this->data['Count'] = $value;
195
        $this->options['form_params']['Count'] = $value;
196
197
        return $this;
198
    }
199
200
    /**
201
     * @param string $value
202
     *
203
     * @return $this
204
     */
205
    public function withUserInfo($value)
206
    {
207
        $this->data['UserInfo'] = $value;
208
        $this->options['form_params']['UserInfo'] = $value;
209
210
        return $this;
211
    }
212
}
213
214
/**
215
 * @method string getPageSize()
216
 * @method $this withPageSize($value)
217
 * @method string getEndTime()
218
 * @method $this withEndTime($value)
219
 * @method string getStartTime()
220
 * @method $this withStartTime($value)
221
 * @method string getPageNumber()
222
 * @method $this withPageNumber($value)
223
 */
224
class ListCommodities extends Rpc
225
{
226
}
227
228
/**
229
 * @method string getUserId()
230
 * @method $this withUserId($value)
231
 */
232
class QueryIsvUserInfo extends Rpc
233
{
234
}
235
236
/**
237
 * @method string getMeetingUUID()
238
 */
239
class QueryMeetingInfo extends Rpc
240
{
241
242
    /**
243
     * @param string $value
244
     *
245
     * @return $this
246
     */
247
    public function withMeetingUUID($value)
248
    {
249
        $this->data['MeetingUUID'] = $value;
250
        $this->options['form_params']['MeetingUUID'] = $value;
251
252
        return $this;
253
    }
254
}
255
256
/**
257
 * @method string getMeetingUUID()
258
 * @method $this withMeetingUUID($value)
259
 */
260
class QueryMemberRecord extends Rpc
261
{
262
}
263
264
/**
265
 * @method string getEndTime()
266
 * @method $this withEndTime($value)
267
 * @method string getStartTime()
268
 * @method $this withStartTime($value)
269
 */
270
class QueryStatistics extends Rpc
271
{
272
}
273
274
class QueryUserBuyAttribute extends Rpc
275
{
276
}
277
278
class QueryUserEvaluation extends Rpc
279
{
280
}
281
282
class QueryUserInfo extends Rpc
283
{
284
}
285
286
/**
287
 * @method string getPageSize()
288
 * @method $this withPageSize($value)
289
 * @method string getPageNum()
290
 * @method $this withPageNum($value)
291
 */
292
class QueryUserList extends Rpc
293
{
294
}
295
296
/**
297
 * @method string getMeetingUUID()
298
 */
299
class RemoveMeeting extends Rpc
300
{
301
302
    /**
303
     * @param string $value
304
     *
305
     * @return $this
306
     */
307
    public function withMeetingUUID($value)
308
    {
309
        $this->data['MeetingUUID'] = $value;
310
        $this->options['form_params']['MeetingUUID'] = $value;
311
312
        return $this;
313
    }
314
}
315