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 ( e4f42d...0ba2b2 )
by
unknown
06:36
created

CompareFaces::withBizId()   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
dl 0
loc 6
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Cloudauth\V20201112;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method CompareFaces compareFaces(array $options = [])
9
 * @method DescribeVerifyResult describeVerifyResult(array $options = [])
10
 * @method DescribeVerifyToken describeVerifyToken(array $options = [])
11
 * @method DetectFaceAttributes detectFaceAttributes(array $options = [])
12
 * @method LivenessDetect livenessDetect(array $options = [])
13
 * @method VerifyMaterial verifyMaterial(array $options = [])
14
 */
15
class CloudauthApiResolver extends ApiResolver
16
{
17
}
18
19
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
20
{
21
    /** @var string */
22
    public $product = 'Cloudauth';
23
24
    /** @var string */
25
    public $version = '2020-11-12';
26
27
    /** @var string */
28
    public $method = 'POST';
29
30
    /** @var string */
31
    public $serviceCode = 'cloudauth';
32
}
33
34
/**
35
 * @method string getTargetImageUrl()
36
 * @method string getSourceImageUrl()
37
 * @method string getTargetImageBase64()
38
 * @method string getBizType()
39
 * @method string getBizId()
40
 * @method string getSourceImageBase64()
41
 */
42
class CompareFaces extends Rpc
43
{
44
45
    /**
46
     * @param string $value
47
     *
48
     * @return $this
49
     */
50
    public function withTargetImageUrl($value)
51
    {
52
        $this->data['TargetImageUrl'] = $value;
53
        $this->options['form_params']['TargetImageUrl'] = $value;
54
55
        return $this;
56
    }
57
58
    /**
59
     * @param string $value
60
     *
61
     * @return $this
62
     */
63
    public function withSourceImageUrl($value)
64
    {
65
        $this->data['SourceImageUrl'] = $value;
66
        $this->options['form_params']['SourceImageUrl'] = $value;
67
68
        return $this;
69
    }
70
71
    /**
72
     * @param string $value
73
     *
74
     * @return $this
75
     */
76
    public function withTargetImageBase64($value)
77
    {
78
        $this->data['TargetImageBase64'] = $value;
79
        $this->options['form_params']['TargetImageBase64'] = $value;
80
81
        return $this;
82
    }
83
84
    /**
85
     * @param string $value
86
     *
87
     * @return $this
88
     */
89
    public function withBizType($value)
90
    {
91
        $this->data['BizType'] = $value;
92
        $this->options['form_params']['BizType'] = $value;
93
94
        return $this;
95
    }
96
97
    /**
98
     * @param string $value
99
     *
100
     * @return $this
101
     */
102
    public function withBizId($value)
103
    {
104
        $this->data['BizId'] = $value;
105
        $this->options['form_params']['BizId'] = $value;
106
107
        return $this;
108
    }
109
110
    /**
111
     * @param string $value
112
     *
113
     * @return $this
114
     */
115
    public function withSourceImageBase64($value)
116
    {
117
        $this->data['SourceImageBase64'] = $value;
118
        $this->options['form_params']['SourceImageBase64'] = $value;
119
120
        return $this;
121
    }
122
}
123
124
/**
125
 * @method string getBizType()
126
 * @method $this withBizType($value)
127
 * @method string getBizId()
128
 * @method $this withBizId($value)
129
 */
130
class DescribeVerifyResult extends Rpc
131
{
132
}
133
134
/**
135
 * @method string getIdCardNumber()
136
 * @method $this withIdCardNumber($value)
137
 * @method string getIdCardFrontImageUrl()
138
 * @method $this withIdCardFrontImageUrl($value)
139
 * @method string getFaceRetainedImageUrl()
140
 * @method $this withFaceRetainedImageUrl($value)
141
 * @method string getUserId()
142
 * @method $this withUserId($value)
143
 * @method string getBizType()
144
 * @method $this withBizType($value)
145
 * @method string getUserRegistTime()
146
 * @method $this withUserRegistTime($value)
147
 * @method string getBizId()
148
 * @method $this withBizId($value)
149
 * @method string getName()
150
 * @method $this withName($value)
151
 * @method string getUserIp()
152
 * @method $this withUserIp($value)
153
 * @method string getIdCardBackImageUrl()
154
 * @method $this withIdCardBackImageUrl($value)
155
 * @method string getUserPhoneNumber()
156
 * @method $this withUserPhoneNumber($value)
157
 */
158
class DescribeVerifyToken extends Rpc
159
{
160
}
161
162
/**
163
 * @method string getImageFile()
164
 * @method string getBizType()
165
 * @method string getImageUrl()
166
 * @method string getBizId()
167
 */
168
class DetectFaceAttributes extends Rpc
169
{
170
171
    /**
172
     * @param string $value
173
     *
174
     * @return $this
175
     */
176
    public function withImageFile($value)
177
    {
178
        $this->data['ImageFile'] = $value;
179
        $this->options['form_params']['ImageFile'] = $value;
180
181
        return $this;
182
    }
183
184
    /**
185
     * @param string $value
186
     *
187
     * @return $this
188
     */
189
    public function withBizType($value)
190
    {
191
        $this->data['BizType'] = $value;
192
        $this->options['form_params']['BizType'] = $value;
193
194
        return $this;
195
    }
196
197
    /**
198
     * @param string $value
199
     *
200
     * @return $this
201
     */
202
    public function withImageUrl($value)
203
    {
204
        $this->data['ImageUrl'] = $value;
205
        $this->options['form_params']['ImageUrl'] = $value;
206
207
        return $this;
208
    }
209
210
    /**
211
     * @param string $value
212
     *
213
     * @return $this
214
     */
215
    public function withBizId($value)
216
    {
217
        $this->data['BizId'] = $value;
218
        $this->options['form_params']['BizId'] = $value;
219
220
        return $this;
221
    }
222
}
223
224
/**
225
 * @method string getMediaCategory()
226
 * @method string getMediaUrl()
227
 * @method string getBizType()
228
 * @method string getBizId()
229
 * @method string getMediaFile()
230
 */
231
class LivenessDetect extends Rpc
232
{
233
234
    /**
235
     * @param string $value
236
     *
237
     * @return $this
238
     */
239
    public function withMediaCategory($value)
240
    {
241
        $this->data['MediaCategory'] = $value;
242
        $this->options['form_params']['MediaCategory'] = $value;
243
244
        return $this;
245
    }
246
247
    /**
248
     * @param string $value
249
     *
250
     * @return $this
251
     */
252
    public function withMediaUrl($value)
253
    {
254
        $this->data['MediaUrl'] = $value;
255
        $this->options['form_params']['MediaUrl'] = $value;
256
257
        return $this;
258
    }
259
260
    /**
261
     * @param string $value
262
     *
263
     * @return $this
264
     */
265
    public function withBizType($value)
266
    {
267
        $this->data['BizType'] = $value;
268
        $this->options['form_params']['BizType'] = $value;
269
270
        return $this;
271
    }
272
273
    /**
274
     * @param string $value
275
     *
276
     * @return $this
277
     */
278
    public function withBizId($value)
279
    {
280
        $this->data['BizId'] = $value;
281
        $this->options['form_params']['BizId'] = $value;
282
283
        return $this;
284
    }
285
286
    /**
287
     * @param string $value
288
     *
289
     * @return $this
290
     */
291
    public function withMediaFile($value)
292
    {
293
        $this->data['MediaFile'] = $value;
294
        $this->options['form_params']['MediaFile'] = $value;
295
296
        return $this;
297
    }
298
}
299
300
/**
301
 * @method string getIdCardNumber()
302
 * @method $this withIdCardNumber($value)
303
 * @method string getIdCardFrontImageUrl()
304
 * @method $this withIdCardFrontImageUrl($value)
305
 * @method string getFaceImageUrl()
306
 * @method $this withFaceImageUrl($value)
307
 * @method string getUserId()
308
 * @method $this withUserId($value)
309
 * @method string getBizType()
310
 * @method $this withBizType($value)
311
 * @method string getBizId()
312
 * @method $this withBizId($value)
313
 * @method string getName()
314
 * @method $this withName($value)
315
 * @method string getIdCardBackImageUrl()
316
 * @method $this withIdCardBackImageUrl($value)
317
 */
318
class VerifyMaterial extends Rpc
319
{
320
}
321