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 ( e9446f...a1477a )
by
unknown
14:34
created

GetDeviceActiveCode   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 1
b 0
f 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A withSN() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Aliyuncvc\V20191030;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ActiveDevice activeDevice(array $options = [])
9
 * @method ActiveMeeting activeMeeting(array $options = [])
10
 * @method BatchCreateDevice batchCreateDevice(array $options = [])
11
 * @method CreateDeviceMeeting createDeviceMeeting(array $options = [])
12
 * @method CreateEvaluation createEvaluation(array $options = [])
13
 * @method CreateLive createLive(array $options = [])
14
 * @method CreateMeeting createMeeting(array $options = [])
15
 * @method CreateMeetingInternational createMeetingInternational(array $options = [])
16
 * @method CreateUser createUser(array $options = [])
17
 * @method CreateUserInternational createUserInternational(array $options = [])
18
 * @method DeleteDevice deleteDevice(array $options = [])
19
 * @method DeleteLive deleteLive(array $options = [])
20
 * @method DeleteMeeting deleteMeeting(array $options = [])
21
 * @method DeleteUser deleteUser(array $options = [])
22
 * @method EndDeviceMeeting endDeviceMeeting(array $options = [])
23
 * @method EndLive endLive(array $options = [])
24
 * @method GetDeviceActiveCode getDeviceActiveCode(array $options = [])
25
 * @method GetDeviceToken getDeviceToken(array $options = [])
26
 * @method GetMeeting getMeeting(array $options = [])
27
 * @method GetMeetingInternational getMeetingInternational(array $options = [])
28
 * @method GetMeetingMember getMeetingMember(array $options = [])
29
 * @method GetUser getUser(array $options = [])
30
 * @method JoinDeviceMeeting joinDeviceMeeting(array $options = [])
31
 * @method JoinLive joinLive(array $options = [])
32
 * @method JoinMeeting joinMeeting(array $options = [])
33
 * @method JoinMeetingInternational joinMeetingInternational(array $options = [])
34
 * @method ListDeviceIp listDeviceIp(array $options = [])
35
 * @method ListEvaluations listEvaluations(array $options = [])
36
 * @method ListIsvStatistics listIsvStatistics(array $options = [])
37
 * @method ListMembers listMembers(array $options = [])
38
 * @method ListUsers listUsers(array $options = [])
39
 * @method ModifyMeetingPassword modifyMeetingPassword(array $options = [])
40
 * @method ModifyMeetingPasswordInternational modifyMeetingPasswordInternational(array $options = [])
41
 * @method RegisterDevice registerDevice(array $options = [])
42
 * @method RegisterUemDevice registerUemDevice(array $options = [])
43
 * @method StartLive startLive(array $options = [])
44
 * @method UpdateDeviceHeartBeat updateDeviceHeartBeat(array $options = [])
45
 * @method UpdateLivePassword updateLivePassword(array $options = [])
46
 */
47
class AliyuncvcApiResolver extends ApiResolver
48
{
49
}
50
51
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
52
{
53
    /** @var string */
54
    public $product = 'aliyuncvc';
55
56
    /** @var string */
57
    public $version = '2019-10-30';
58
59
    /** @var string */
60
    public $method = 'POST';
61
62
    /** @var string */
63
    public $serviceCode = 'aliyuncvc';
64
}
65
66
/**
67
 * @method string getIP()
68
 * @method string getActiveCode()
69
 * @method string getMac()
70
 * @method string getDeviceVersion()
71
 * @method string getSN()
72
 */
73
class ActiveDevice extends Rpc
74
{
75
76
    /**
77
     * @param string $value
78
     *
79
     * @return $this
80
     */
81
    public function withIP($value)
82
    {
83
        $this->data['IP'] = $value;
84
        $this->options['form_params']['IP'] = $value;
85
86
        return $this;
87
    }
88
89
    /**
90
     * @param string $value
91
     *
92
     * @return $this
93
     */
94
    public function withActiveCode($value)
95
    {
96
        $this->data['ActiveCode'] = $value;
97
        $this->options['form_params']['ActiveCode'] = $value;
98
99
        return $this;
100
    }
101
102
    /**
103
     * @param string $value
104
     *
105
     * @return $this
106
     */
107
    public function withMac($value)
108
    {
109
        $this->data['Mac'] = $value;
110
        $this->options['form_params']['Mac'] = $value;
111
112
        return $this;
113
    }
114
115
    /**
116
     * @param string $value
117
     *
118
     * @return $this
119
     */
120
    public function withDeviceVersion($value)
121
    {
122
        $this->data['DeviceVersion'] = $value;
123
        $this->options['form_params']['DeviceVersion'] = $value;
124
125
        return $this;
126
    }
127
128
    /**
129
     * @param string $value
130
     *
131
     * @return $this
132
     */
133
    public function withSN($value)
134
    {
135
        $this->data['SN'] = $value;
136
        $this->options['form_params']['SN'] = $value;
137
138
        return $this;
139
    }
140
}
141
142
/**
143
 * @method string getMeetingUUID()
144
 * @method $this withMeetingUUID($value)
145
 * @method string getMeetingCode()
146
 * @method $this withMeetingCode($value)
147
 */
148
class ActiveMeeting extends Rpc
149
{
150
}
151
152
/**
153
 * @method string getSN()
154
 */
155
class BatchCreateDevice extends Rpc
156
{
157
158
    /**
159
     * @param string $value
160
     *
161
     * @return $this
162
     */
163
    public function withSN($value)
164
    {
165
        $this->data['SN'] = $value;
166
        $this->options['form_params']['SN'] = $value;
167
168
        return $this;
169
    }
170
}
171
172
/**
173
 * @method string getMeetingName()
174
 * @method string getOpenPasswordtag()
175
 * @method string getToken()
176
 * @method string getPassword()
177
 * @method string getSN()
178
 */
179
class CreateDeviceMeeting extends Rpc
180
{
181
182
    /**
183
     * @param string $value
184
     *
185
     * @return $this
186
     */
187
    public function withMeetingName($value)
188
    {
189
        $this->data['MeetingName'] = $value;
190
        $this->options['form_params']['MeetingName'] = $value;
191
192
        return $this;
193
    }
194
195
    /**
196
     * @param string $value
197
     *
198
     * @return $this
199
     */
200
    public function withOpenPasswordtag($value)
201
    {
202
        $this->data['OpenPasswordtag'] = $value;
203
        $this->options['form_params']['OpenPasswordtag'] = $value;
204
205
        return $this;
206
    }
207
208
    /**
209
     * @param string $value
210
     *
211
     * @return $this
212
     */
213
    public function withToken($value)
214
    {
215
        $this->data['Token'] = $value;
216
        $this->options['form_params']['Token'] = $value;
217
218
        return $this;
219
    }
220
221
    /**
222
     * @param string $value
223
     *
224
     * @return $this
225
     */
226
    public function withPassword($value)
227
    {
228
        $this->data['Password'] = $value;
229
        $this->options['form_params']['Password'] = $value;
230
231
        return $this;
232
    }
233
234
    /**
235
     * @param string $value
236
     *
237
     * @return $this
238
     */
239
    public function withSN($value)
240
    {
241
        $this->data['SN'] = $value;
242
        $this->options['form_params']['SN'] = $value;
243
244
        return $this;
245
    }
246
}
247
248
/**
249
 * @method string getCreateTime()
250
 * @method $this withCreateTime($value)
251
 * @method string getMemo()
252
 * @method $this withMemo($value)
253
 * @method string getDescription()
254
 * @method $this withDescription($value)
255
 * @method string getMemberUUID()
256
 * @method $this withMemberUUID($value)
257
 * @method string getUserId()
258
 * @method $this withUserId($value)
259
 * @method string getEvaluation()
260
 * @method $this withEvaluation($value)
261
 * @method string getScore()
262
 * @method $this withScore($value)
263
 * @method string getMeetingUUID()
264
 * @method $this withMeetingUUID($value)
265
 * @method string getAppId()
266
 * @method $this withAppId($value)
267
 */
268
class CreateEvaluation extends Rpc
269
{
270
}
271
272
/**
273
 * @method string getMemo()
274
 * @method string getUserId()
275
 * @method string getOpenPasswordFlag()
276
 * @method string getPassword()
277
 * @method string getLiveName()
278
 */
279
class CreateLive extends Rpc
280
{
281
282
    /**
283
     * @param string $value
284
     *
285
     * @return $this
286
     */
287
    public function withMemo($value)
288
    {
289
        $this->data['Memo'] = $value;
290
        $this->options['form_params']['Memo'] = $value;
291
292
        return $this;
293
    }
294
295
    /**
296
     * @param string $value
297
     *
298
     * @return $this
299
     */
300
    public function withUserId($value)
301
    {
302
        $this->data['UserId'] = $value;
303
        $this->options['form_params']['UserId'] = $value;
304
305
        return $this;
306
    }
307
308
    /**
309
     * @param string $value
310
     *
311
     * @return $this
312
     */
313
    public function withOpenPasswordFlag($value)
314
    {
315
        $this->data['OpenPasswordFlag'] = $value;
316
        $this->options['form_params']['OpenPasswordFlag'] = $value;
317
318
        return $this;
319
    }
320
321
    /**
322
     * @param string $value
323
     *
324
     * @return $this
325
     */
326
    public function withPassword($value)
327
    {
328
        $this->data['Password'] = $value;
329
        $this->options['form_params']['Password'] = $value;
330
331
        return $this;
332
    }
333
334
    /**
335
     * @param string $value
336
     *
337
     * @return $this
338
     */
339
    public function withLiveName($value)
340
    {
341
        $this->data['LiveName'] = $value;
342
        $this->options['form_params']['LiveName'] = $value;
343
344
        return $this;
345
    }
346
}
347
348
/**
349
 * @method string getMeetingName()
350
 * @method string getUserId()
351
 * @method string getOpenPasswordFlag()
352
 * @method string getPassword()
353
 * @method string getMasterEnableFlag()
354
 * @method string getMeetingMode()
355
 */
356
class CreateMeeting extends Rpc
357
{
358
359
    /**
360
     * @param string $value
361
     *
362
     * @return $this
363
     */
364
    public function withMeetingName($value)
365
    {
366
        $this->data['MeetingName'] = $value;
367
        $this->options['form_params']['MeetingName'] = $value;
368
369
        return $this;
370
    }
371
372
    /**
373
     * @param string $value
374
     *
375
     * @return $this
376
     */
377
    public function withUserId($value)
378
    {
379
        $this->data['UserId'] = $value;
380
        $this->options['form_params']['UserId'] = $value;
381
382
        return $this;
383
    }
384
385
    /**
386
     * @param string $value
387
     *
388
     * @return $this
389
     */
390
    public function withOpenPasswordFlag($value)
391
    {
392
        $this->data['OpenPasswordFlag'] = $value;
393
        $this->options['form_params']['OpenPasswordFlag'] = $value;
394
395
        return $this;
396
    }
397
398
    /**
399
     * @param string $value
400
     *
401
     * @return $this
402
     */
403
    public function withPassword($value)
404
    {
405
        $this->data['Password'] = $value;
406
        $this->options['form_params']['Password'] = $value;
407
408
        return $this;
409
    }
410
411
    /**
412
     * @param string $value
413
     *
414
     * @return $this
415
     */
416
    public function withMasterEnableFlag($value)
417
    {
418
        $this->data['MasterEnableFlag'] = $value;
419
        $this->options['form_params']['MasterEnableFlag'] = $value;
420
421
        return $this;
422
    }
423
424
    /**
425
     * @param string $value
426
     *
427
     * @return $this
428
     */
429
    public function withMeetingMode($value)
430
    {
431
        $this->data['MeetingMode'] = $value;
432
        $this->options['form_params']['MeetingMode'] = $value;
433
434
        return $this;
435
    }
436
}
437
438
/**
439
 * @method string getMeetingName()
440
 * @method string getUserId()
441
 * @method string getOpenPasswordFlag()
442
 * @method string getPassword()
443
 */
444
class CreateMeetingInternational extends Rpc
445
{
446
447
    /**
448
     * @param string $value
449
     *
450
     * @return $this
451
     */
452
    public function withMeetingName($value)
453
    {
454
        $this->data['MeetingName'] = $value;
455
        $this->options['form_params']['MeetingName'] = $value;
456
457
        return $this;
458
    }
459
460
    /**
461
     * @param string $value
462
     *
463
     * @return $this
464
     */
465
    public function withUserId($value)
466
    {
467
        $this->data['UserId'] = $value;
468
        $this->options['form_params']['UserId'] = $value;
469
470
        return $this;
471
    }
472
473
    /**
474
     * @param string $value
475
     *
476
     * @return $this
477
     */
478
    public function withOpenPasswordFlag($value)
479
    {
480
        $this->data['OpenPasswordFlag'] = $value;
481
        $this->options['form_params']['OpenPasswordFlag'] = $value;
482
483
        return $this;
484
    }
485
486
    /**
487
     * @param string $value
488
     *
489
     * @return $this
490
     */
491
    public function withPassword($value)
492
    {
493
        $this->data['Password'] = $value;
494
        $this->options['form_params']['Password'] = $value;
495
496
        return $this;
497
    }
498
}
499
500
/**
501
 * @method string getCount()
502
 * @method string getUserInfo()
503
 */
504
class CreateUser extends Rpc
505
{
506
507
    /**
508
     * @param string $value
509
     *
510
     * @return $this
511
     */
512
    public function withCount($value)
513
    {
514
        $this->data['Count'] = $value;
515
        $this->options['form_params']['Count'] = $value;
516
517
        return $this;
518
    }
519
520
    /**
521
     * @param string $value
522
     *
523
     * @return $this
524
     */
525
    public function withUserInfo($value)
526
    {
527
        $this->data['UserInfo'] = $value;
528
        $this->options['form_params']['UserInfo'] = $value;
529
530
        return $this;
531
    }
532
}
533
534
/**
535
 * @method string getCount()
536
 * @method string getUserInfo()
537
 */
538
class CreateUserInternational extends Rpc
539
{
540
541
    /**
542
     * @param string $value
543
     *
544
     * @return $this
545
     */
546
    public function withCount($value)
547
    {
548
        $this->data['Count'] = $value;
549
        $this->options['form_params']['Count'] = $value;
550
551
        return $this;
552
    }
553
554
    /**
555
     * @param string $value
556
     *
557
     * @return $this
558
     */
559
    public function withUserInfo($value)
560
    {
561
        $this->data['UserInfo'] = $value;
562
        $this->options['form_params']['UserInfo'] = $value;
563
564
        return $this;
565
    }
566
}
567
568
/**
569
 * @method string getGroupId()
570
 * @method string getSN()
571
 */
572
class DeleteDevice extends Rpc
573
{
574
575
    /**
576
     * @param string $value
577
     *
578
     * @return $this
579
     */
580
    public function withGroupId($value)
581
    {
582
        $this->data['GroupId'] = $value;
583
        $this->options['form_params']['GroupId'] = $value;
584
585
        return $this;
586
    }
587
588
    /**
589
     * @param string $value
590
     *
591
     * @return $this
592
     */
593
    public function withSN($value)
594
    {
595
        $this->data['SN'] = $value;
596
        $this->options['form_params']['SN'] = $value;
597
598
        return $this;
599
    }
600
}
601
602
/**
603
 * @method string getLiveUUID()
604
 * @method string getUserId()
605
 */
606
class DeleteLive extends Rpc
607
{
608
609
    /**
610
     * @param string $value
611
     *
612
     * @return $this
613
     */
614
    public function withLiveUUID($value)
615
    {
616
        $this->data['LiveUUID'] = $value;
617
        $this->options['form_params']['LiveUUID'] = $value;
618
619
        return $this;
620
    }
621
622
    /**
623
     * @param string $value
624
     *
625
     * @return $this
626
     */
627
    public function withUserId($value)
628
    {
629
        $this->data['UserId'] = $value;
630
        $this->options['form_params']['UserId'] = $value;
631
632
        return $this;
633
    }
634
}
635
636
/**
637
 * @method string getMeetingUUID()
638
 */
639
class DeleteMeeting extends Rpc
640
{
641
642
    /**
643
     * @param string $value
644
     *
645
     * @return $this
646
     */
647
    public function withMeetingUUID($value)
648
    {
649
        $this->data['MeetingUUID'] = $value;
650
        $this->options['form_params']['MeetingUUID'] = $value;
651
652
        return $this;
653
    }
654
}
655
656
/**
657
 * @method string getCount()
658
 * @method string getUserInfo()
659
 */
660
class DeleteUser extends Rpc
661
{
662
663
    /**
664
     * @param string $value
665
     *
666
     * @return $this
667
     */
668
    public function withCount($value)
669
    {
670
        $this->data['Count'] = $value;
671
        $this->options['form_params']['Count'] = $value;
672
673
        return $this;
674
    }
675
676
    /**
677
     * @param string $value
678
     *
679
     * @return $this
680
     */
681
    public function withUserInfo($value)
682
    {
683
        $this->data['UserInfo'] = $value;
684
        $this->options['form_params']['UserInfo'] = $value;
685
686
        return $this;
687
    }
688
}
689
690
/**
691
 * @method string getMeetingUUID()
692
 * @method string getSN()
693
 */
694
class EndDeviceMeeting extends Rpc
695
{
696
697
    /**
698
     * @param string $value
699
     *
700
     * @return $this
701
     */
702
    public function withMeetingUUID($value)
703
    {
704
        $this->data['MeetingUUID'] = $value;
705
        $this->options['form_params']['MeetingUUID'] = $value;
706
707
        return $this;
708
    }
709
710
    /**
711
     * @param string $value
712
     *
713
     * @return $this
714
     */
715
    public function withSN($value)
716
    {
717
        $this->data['SN'] = $value;
718
        $this->options['form_params']['SN'] = $value;
719
720
        return $this;
721
    }
722
}
723
724
/**
725
 * @method string getLiveUUID()
726
 * @method string getUserId()
727
 */
728
class EndLive extends Rpc
729
{
730
731
    /**
732
     * @param string $value
733
     *
734
     * @return $this
735
     */
736
    public function withLiveUUID($value)
737
    {
738
        $this->data['LiveUUID'] = $value;
739
        $this->options['form_params']['LiveUUID'] = $value;
740
741
        return $this;
742
    }
743
744
    /**
745
     * @param string $value
746
     *
747
     * @return $this
748
     */
749
    public function withUserId($value)
750
    {
751
        $this->data['UserId'] = $value;
752
        $this->options['form_params']['UserId'] = $value;
753
754
        return $this;
755
    }
756
}
757
758
/**
759
 * @method string getSN()
760
 */
761
class GetDeviceActiveCode extends Rpc
762
{
763
764
    /**
765
     * @param string $value
766
     *
767
     * @return $this
768
     */
769
    public function withSN($value)
770
    {
771
        $this->data['SN'] = $value;
772
        $this->options['form_params']['SN'] = $value;
773
774
        return $this;
775
    }
776
}
777
778
/**
779
 * @method string getToken()
780
 * @method $this withToken($value)
781
 * @method string getSN()
782
 * @method $this withSN($value)
783
 */
784
class GetDeviceToken extends Rpc
785
{
786
}
787
788
/**
789
 * @method string getMeetingUUID()
790
 */
791
class GetMeeting extends Rpc
792
{
793
794
    /**
795
     * @param string $value
796
     *
797
     * @return $this
798
     */
799
    public function withMeetingUUID($value)
800
    {
801
        $this->data['MeetingUUID'] = $value;
802
        $this->options['form_params']['MeetingUUID'] = $value;
803
804
        return $this;
805
    }
806
}
807
808
/**
809
 * @method string getMeetingUUID()
810
 */
811
class GetMeetingInternational extends Rpc
812
{
813
814
    /**
815
     * @param string $value
816
     *
817
     * @return $this
818
     */
819
    public function withMeetingUUID($value)
820
    {
821
        $this->data['MeetingUUID'] = $value;
822
        $this->options['form_params']['MeetingUUID'] = $value;
823
824
        return $this;
825
    }
826
}
827
828
/**
829
 * @method string getMeetingUUID()
830
 * @method $this withMeetingUUID($value)
831
 */
832
class GetMeetingMember extends Rpc
833
{
834
}
835
836
/**
837
 * @method string getUserId()
838
 * @method $this withUserId($value)
839
 */
840
class GetUser extends Rpc
841
{
842
}
843
844
/**
845
 * @method string getToken()
846
 * @method string getPassword()
847
 * @method string getMeetingCode()
848
 * @method string getSN()
849
 */
850
class JoinDeviceMeeting extends Rpc
851
{
852
853
    /**
854
     * @param string $value
855
     *
856
     * @return $this
857
     */
858
    public function withToken($value)
859
    {
860
        $this->data['Token'] = $value;
861
        $this->options['form_params']['Token'] = $value;
862
863
        return $this;
864
    }
865
866
    /**
867
     * @param string $value
868
     *
869
     * @return $this
870
     */
871
    public function withPassword($value)
872
    {
873
        $this->data['Password'] = $value;
874
        $this->options['form_params']['Password'] = $value;
875
876
        return $this;
877
    }
878
879
    /**
880
     * @param string $value
881
     *
882
     * @return $this
883
     */
884
    public function withMeetingCode($value)
885
    {
886
        $this->data['MeetingCode'] = $value;
887
        $this->options['form_params']['MeetingCode'] = $value;
888
889
        return $this;
890
    }
891
892
    /**
893
     * @param string $value
894
     *
895
     * @return $this
896
     */
897
    public function withSN($value)
898
    {
899
        $this->data['SN'] = $value;
900
        $this->options['form_params']['SN'] = $value;
901
902
        return $this;
903
    }
904
}
905
906
/**
907
 * @method string getLiveUUID()
908
 * @method string getUserId()
909
 * @method string getPassword()
910
 */
911
class JoinLive extends Rpc
912
{
913
914
    /**
915
     * @param string $value
916
     *
917
     * @return $this
918
     */
919
    public function withLiveUUID($value)
920
    {
921
        $this->data['LiveUUID'] = $value;
922
        $this->options['form_params']['LiveUUID'] = $value;
923
924
        return $this;
925
    }
926
927
    /**
928
     * @param string $value
929
     *
930
     * @return $this
931
     */
932
    public function withUserId($value)
933
    {
934
        $this->data['UserId'] = $value;
935
        $this->options['form_params']['UserId'] = $value;
936
937
        return $this;
938
    }
939
940
    /**
941
     * @param string $value
942
     *
943
     * @return $this
944
     */
945
    public function withPassword($value)
946
    {
947
        $this->data['Password'] = $value;
948
        $this->options['form_params']['Password'] = $value;
949
950
        return $this;
951
    }
952
}
953
954
/**
955
 * @method string getUserId()
956
 * @method string getPassword()
957
 * @method string getMeetingCode()
958
 */
959
class JoinMeeting extends Rpc
960
{
961
962
    /**
963
     * @param string $value
964
     *
965
     * @return $this
966
     */
967
    public function withUserId($value)
968
    {
969
        $this->data['UserId'] = $value;
970
        $this->options['form_params']['UserId'] = $value;
971
972
        return $this;
973
    }
974
975
    /**
976
     * @param string $value
977
     *
978
     * @return $this
979
     */
980
    public function withPassword($value)
981
    {
982
        $this->data['Password'] = $value;
983
        $this->options['form_params']['Password'] = $value;
984
985
        return $this;
986
    }
987
988
    /**
989
     * @param string $value
990
     *
991
     * @return $this
992
     */
993
    public function withMeetingCode($value)
994
    {
995
        $this->data['MeetingCode'] = $value;
996
        $this->options['form_params']['MeetingCode'] = $value;
997
998
        return $this;
999
    }
1000
}
1001
1002
/**
1003
 * @method string getUserId()
1004
 * @method string getPassword()
1005
 * @method string getMeetingCode()
1006
 */
1007
class JoinMeetingInternational extends Rpc
1008
{
1009
1010
    /**
1011
     * @param string $value
1012
     *
1013
     * @return $this
1014
     */
1015
    public function withUserId($value)
1016
    {
1017
        $this->data['UserId'] = $value;
1018
        $this->options['form_params']['UserId'] = $value;
1019
1020
        return $this;
1021
    }
1022
1023
    /**
1024
     * @param string $value
1025
     *
1026
     * @return $this
1027
     */
1028
    public function withPassword($value)
1029
    {
1030
        $this->data['Password'] = $value;
1031
        $this->options['form_params']['Password'] = $value;
1032
1033
        return $this;
1034
    }
1035
1036
    /**
1037
     * @param string $value
1038
     *
1039
     * @return $this
1040
     */
1041
    public function withMeetingCode($value)
1042
    {
1043
        $this->data['MeetingCode'] = $value;
1044
        $this->options['form_params']['MeetingCode'] = $value;
1045
1046
        return $this;
1047
    }
1048
}
1049
1050
/**
1051
 * @method string getGroupId()
1052
 * @method string getSN()
1053
 */
1054
class ListDeviceIp extends Rpc
1055
{
1056
1057
    /**
1058
     * @param string $value
1059
     *
1060
     * @return $this
1061
     */
1062
    public function withGroupId($value)
1063
    {
1064
        $this->data['GroupId'] = $value;
1065
        $this->options['form_params']['GroupId'] = $value;
1066
1067
        return $this;
1068
    }
1069
1070
    /**
1071
     * @param string $value
1072
     *
1073
     * @return $this
1074
     */
1075
    public function withSN($value)
1076
    {
1077
        $this->data['SN'] = $value;
1078
        $this->options['form_params']['SN'] = $value;
1079
1080
        return $this;
1081
    }
1082
}
1083
1084
class ListEvaluations extends Rpc
1085
{
1086
}
1087
1088
/**
1089
 * @method string getEndTime()
1090
 * @method $this withEndTime($value)
1091
 * @method string getStartTime()
1092
 * @method $this withStartTime($value)
1093
 */
1094
class ListIsvStatistics extends Rpc
1095
{
1096
}
1097
1098
/**
1099
 * @method string getMeetingUUID()
1100
 * @method $this withMeetingUUID($value)
1101
 */
1102
class ListMembers extends Rpc
1103
{
1104
}
1105
1106
/**
1107
 * @method string getPageNumber()
1108
 * @method $this withPageNumber($value)
1109
 * @method string getPageSize()
1110
 * @method $this withPageSize($value)
1111
 */
1112
class ListUsers extends Rpc
1113
{
1114
}
1115
1116
/**
1117
 * @method string getUserId()
1118
 * @method string getOpenPasswordFlag()
1119
 * @method string getMeetingUUID()
1120
 * @method string getPassword()
1121
 */
1122
class ModifyMeetingPassword extends Rpc
1123
{
1124
1125
    /**
1126
     * @param string $value
1127
     *
1128
     * @return $this
1129
     */
1130
    public function withUserId($value)
1131
    {
1132
        $this->data['UserId'] = $value;
1133
        $this->options['form_params']['UserId'] = $value;
1134
1135
        return $this;
1136
    }
1137
1138
    /**
1139
     * @param string $value
1140
     *
1141
     * @return $this
1142
     */
1143
    public function withOpenPasswordFlag($value)
1144
    {
1145
        $this->data['OpenPasswordFlag'] = $value;
1146
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1147
1148
        return $this;
1149
    }
1150
1151
    /**
1152
     * @param string $value
1153
     *
1154
     * @return $this
1155
     */
1156
    public function withMeetingUUID($value)
1157
    {
1158
        $this->data['MeetingUUID'] = $value;
1159
        $this->options['form_params']['MeetingUUID'] = $value;
1160
1161
        return $this;
1162
    }
1163
1164
    /**
1165
     * @param string $value
1166
     *
1167
     * @return $this
1168
     */
1169
    public function withPassword($value)
1170
    {
1171
        $this->data['Password'] = $value;
1172
        $this->options['form_params']['Password'] = $value;
1173
1174
        return $this;
1175
    }
1176
}
1177
1178
/**
1179
 * @method string getUserId()
1180
 * @method string getOpenPasswordFlag()
1181
 * @method string getMeetingUUID()
1182
 * @method string getPassword()
1183
 */
1184
class ModifyMeetingPasswordInternational extends Rpc
1185
{
1186
1187
    /**
1188
     * @param string $value
1189
     *
1190
     * @return $this
1191
     */
1192
    public function withUserId($value)
1193
    {
1194
        $this->data['UserId'] = $value;
1195
        $this->options['form_params']['UserId'] = $value;
1196
1197
        return $this;
1198
    }
1199
1200
    /**
1201
     * @param string $value
1202
     *
1203
     * @return $this
1204
     */
1205
    public function withOpenPasswordFlag($value)
1206
    {
1207
        $this->data['OpenPasswordFlag'] = $value;
1208
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1209
1210
        return $this;
1211
    }
1212
1213
    /**
1214
     * @param string $value
1215
     *
1216
     * @return $this
1217
     */
1218
    public function withMeetingUUID($value)
1219
    {
1220
        $this->data['MeetingUUID'] = $value;
1221
        $this->options['form_params']['MeetingUUID'] = $value;
1222
1223
        return $this;
1224
    }
1225
1226
    /**
1227
     * @param string $value
1228
     *
1229
     * @return $this
1230
     */
1231
    public function withPassword($value)
1232
    {
1233
        $this->data['Password'] = $value;
1234
        $this->options['form_params']['Password'] = $value;
1235
1236
        return $this;
1237
    }
1238
}
1239
1240
/**
1241
 * @method string getIP()
1242
 * @method $this withIP($value)
1243
 * @method string getMac()
1244
 * @method $this withMac($value)
1245
 * @method string getToken()
1246
 * @method $this withToken($value)
1247
 * @method string getDeviceVersion()
1248
 * @method $this withDeviceVersion($value)
1249
 * @method string getSN()
1250
 * @method $this withSN($value)
1251
 */
1252
class RegisterDevice extends Rpc
1253
{
1254
}
1255
1256
/**
1257
 * @method string getIP()
1258
 * @method $this withIP($value)
1259
 * @method string getGroupId()
1260
 * @method $this withGroupId($value)
1261
 * @method string getDeviceId()
1262
 * @method $this withDeviceId($value)
1263
 * @method string getGroupName()
1264
 * @method $this withGroupName($value)
1265
 * @method string getMac()
1266
 * @method $this withMac($value)
1267
 * @method string getDeviceVersion()
1268
 * @method $this withDeviceVersion($value)
1269
 */
1270
class RegisterUemDevice extends Rpc
1271
{
1272
}
1273
1274
/**
1275
 * @method string getLiveUUID()
1276
 * @method string getUserId()
1277
 */
1278
class StartLive extends Rpc
1279
{
1280
1281
    /**
1282
     * @param string $value
1283
     *
1284
     * @return $this
1285
     */
1286
    public function withLiveUUID($value)
1287
    {
1288
        $this->data['LiveUUID'] = $value;
1289
        $this->options['form_params']['LiveUUID'] = $value;
1290
1291
        return $this;
1292
    }
1293
1294
    /**
1295
     * @param string $value
1296
     *
1297
     * @return $this
1298
     */
1299
    public function withUserId($value)
1300
    {
1301
        $this->data['UserId'] = $value;
1302
        $this->options['form_params']['UserId'] = $value;
1303
1304
        return $this;
1305
    }
1306
}
1307
1308
/**
1309
 * @method string getMessage()
1310
 * @method $this withMessage($value)
1311
 */
1312
class UpdateDeviceHeartBeat extends Rpc
1313
{
1314
}
1315
1316
/**
1317
 * @method string getLiveUUID()
1318
 * @method string getUserId()
1319
 * @method string getOpenPasswordFlag()
1320
 * @method string getPassword()
1321
 */
1322
class UpdateLivePassword extends Rpc
1323
{
1324
1325
    /**
1326
     * @param string $value
1327
     *
1328
     * @return $this
1329
     */
1330
    public function withLiveUUID($value)
1331
    {
1332
        $this->data['LiveUUID'] = $value;
1333
        $this->options['form_params']['LiveUUID'] = $value;
1334
1335
        return $this;
1336
    }
1337
1338
    /**
1339
     * @param string $value
1340
     *
1341
     * @return $this
1342
     */
1343
    public function withUserId($value)
1344
    {
1345
        $this->data['UserId'] = $value;
1346
        $this->options['form_params']['UserId'] = $value;
1347
1348
        return $this;
1349
    }
1350
1351
    /**
1352
     * @param string $value
1353
     *
1354
     * @return $this
1355
     */
1356
    public function withOpenPasswordFlag($value)
1357
    {
1358
        $this->data['OpenPasswordFlag'] = $value;
1359
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1360
1361
        return $this;
1362
    }
1363
1364
    /**
1365
     * @param string $value
1366
     *
1367
     * @return $this
1368
     */
1369
    public function withPassword($value)
1370
    {
1371
        $this->data['Password'] = $value;
1372
        $this->options['form_params']['Password'] = $value;
1373
1374
        return $this;
1375
    }
1376
}
1377