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 ( 1958cf...31387c )
by
unknown
07:13
created

UpdateGonggeLayout::withVideoCount()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 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 CallDevice callDevice(array $options = [])
12
 * @method ConferenceToLive conferenceToLive(array $options = [])
13
 * @method CreateDeviceMeeting createDeviceMeeting(array $options = [])
14
 * @method CreateEvaluation createEvaluation(array $options = [])
15
 * @method CreateLive createLive(array $options = [])
16
 * @method CreateMeeting createMeeting(array $options = [])
17
 * @method CreateMeetingInternational createMeetingInternational(array $options = [])
18
 * @method CreateUser createUser(array $options = [])
19
 * @method CreateUserInternational createUserInternational(array $options = [])
20
 * @method CustomGonggeLayout customGonggeLayout(array $options = [])
21
 * @method CustomLayout customLayout(array $options = [])
22
 * @method DeleteDevice deleteDevice(array $options = [])
23
 * @method DeleteLive deleteLive(array $options = [])
24
 * @method DeleteMeeting deleteMeeting(array $options = [])
25
 * @method DeleteUser deleteUser(array $options = [])
26
 * @method EnableLiveSpeaker enableLiveSpeaker(array $options = [])
27
 * @method EndDeviceMeeting endDeviceMeeting(array $options = [])
28
 * @method EndLive endLive(array $options = [])
29
 * @method GetAccountInfo getAccountInfo(array $options = [])
30
 * @method GetDeviceActiveCode getDeviceActiveCode(array $options = [])
31
 * @method GetDeviceInfo getDeviceInfo(array $options = [])
32
 * @method GetDeviceToken getDeviceToken(array $options = [])
33
 * @method GetMeeting getMeeting(array $options = [])
34
 * @method GetMeetingInternational getMeetingInternational(array $options = [])
35
 * @method GetMeetingMember getMeetingMember(array $options = [])
36
 * @method GetStatistic getStatistic(array $options = [])
37
 * @method GetUser getUser(array $options = [])
38
 * @method InviteUser inviteUser(array $options = [])
39
 * @method JoinDeviceMeeting joinDeviceMeeting(array $options = [])
40
 * @method JoinLive joinLive(array $options = [])
41
 * @method JoinMeeting joinMeeting(array $options = [])
42
 * @method JoinMeetingInternational joinMeetingInternational(array $options = [])
43
 * @method ListConferenceDevices listConferenceDevices(array $options = [])
44
 * @method ListDeviceIp listDeviceIp(array $options = [])
45
 * @method ListDevices listDevices(array $options = [])
46
 * @method ListEvaluations listEvaluations(array $options = [])
47
 * @method ListIsvStatistics listIsvStatistics(array $options = [])
48
 * @method ListMembers listMembers(array $options = [])
49
 * @method ListUsers listUsers(array $options = [])
50
 * @method ModifyDeviceBackground modifyDeviceBackground(array $options = [])
51
 * @method ModifyMeetingPassword modifyMeetingPassword(array $options = [])
52
 * @method ModifyMeetingPasswordInternational modifyMeetingPasswordInternational(array $options = [])
53
 * @method RefreshDeviceScreenCode refreshDeviceScreenCode(array $options = [])
54
 * @method RegisterDevice registerDevice(array $options = [])
55
 * @method RegisterUemDevice registerUemDevice(array $options = [])
56
 * @method SendMeetingCommand sendMeetingCommand(array $options = [])
57
 * @method StartLive startLive(array $options = [])
58
 * @method UpdateDeviceHeartBeat updateDeviceHeartBeat(array $options = [])
59
 * @method UpdateDeviceStartupPicture updateDeviceStartupPicture(array $options = [])
60
 * @method UpdateGonggeLayout updateGonggeLayout(array $options = [])
61
 * @method UpdateLivePassword updateLivePassword(array $options = [])
62
 */
63
class AliyuncvcApiResolver extends ApiResolver
64
{
65
}
66
67
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
68
{
69
    /** @var string */
70
    public $product = 'aliyuncvc';
71
72
    /** @var string */
73
    public $version = '2019-10-30';
74
75
    /** @var string */
76
    public $method = 'POST';
77
78
    /** @var string */
79
    public $serviceCode = 'aliyuncvc';
80
}
81
82
/**
83
 * @method string getIP()
84
 * @method string getActiveCode()
85
 * @method string getMac()
86
 * @method string getDeviceVersion()
87
 * @method string getSN()
88
 */
89
class ActiveDevice extends Rpc
90
{
91
92
    /**
93
     * @param string $value
94
     *
95
     * @return $this
96
     */
97
    public function withIP($value)
98
    {
99
        $this->data['IP'] = $value;
100
        $this->options['form_params']['IP'] = $value;
101
102
        return $this;
103
    }
104
105
    /**
106
     * @param string $value
107
     *
108
     * @return $this
109
     */
110
    public function withActiveCode($value)
111
    {
112
        $this->data['ActiveCode'] = $value;
113
        $this->options['form_params']['ActiveCode'] = $value;
114
115
        return $this;
116
    }
117
118
    /**
119
     * @param string $value
120
     *
121
     * @return $this
122
     */
123
    public function withMac($value)
124
    {
125
        $this->data['Mac'] = $value;
126
        $this->options['form_params']['Mac'] = $value;
127
128
        return $this;
129
    }
130
131
    /**
132
     * @param string $value
133
     *
134
     * @return $this
135
     */
136
    public function withDeviceVersion($value)
137
    {
138
        $this->data['DeviceVersion'] = $value;
139
        $this->options['form_params']['DeviceVersion'] = $value;
140
141
        return $this;
142
    }
143
144
    /**
145
     * @param string $value
146
     *
147
     * @return $this
148
     */
149
    public function withSN($value)
150
    {
151
        $this->data['SN'] = $value;
152
        $this->options['form_params']['SN'] = $value;
153
154
        return $this;
155
    }
156
}
157
158
/**
159
 * @method string getMeetingUUID()
160
 * @method $this withMeetingUUID($value)
161
 * @method string getMeetingCode()
162
 * @method $this withMeetingCode($value)
163
 */
164
class ActiveMeeting extends Rpc
165
{
166
}
167
168
/**
169
 * @method string getSN()
170
 */
171
class BatchCreateDevice extends Rpc
172
{
173
174
    /**
175
     * @param string $value
176
     *
177
     * @return $this
178
     */
179
    public function withSN($value)
180
    {
181
        $this->data['SN'] = $value;
182
        $this->options['form_params']['SN'] = $value;
183
184
        return $this;
185
    }
186
}
187
188
/**
189
 * @method string getInviteName()
190
 * @method string getOperateUserId()
191
 * @method string getJoinMeetingFlag()
192
 * @method $this withJoinMeetingFlag($value)
193
 * @method string getMeetingCode()
194
 * @method string getSN()
195
 */
196
class CallDevice extends Rpc
197
{
198
199
    /**
200
     * @param string $value
201
     *
202
     * @return $this
203
     */
204
    public function withInviteName($value)
205
    {
206
        $this->data['InviteName'] = $value;
207
        $this->options['form_params']['InviteName'] = $value;
208
209
        return $this;
210
    }
211
212
    /**
213
     * @param string $value
214
     *
215
     * @return $this
216
     */
217
    public function withOperateUserId($value)
218
    {
219
        $this->data['OperateUserId'] = $value;
220
        $this->options['form_params']['OperateUserId'] = $value;
221
222
        return $this;
223
    }
224
225
    /**
226
     * @param string $value
227
     *
228
     * @return $this
229
     */
230
    public function withMeetingCode($value)
231
    {
232
        $this->data['MeetingCode'] = $value;
233
        $this->options['form_params']['MeetingCode'] = $value;
234
235
        return $this;
236
    }
237
238
    /**
239
     * @param string $value
240
     *
241
     * @return $this
242
     */
243
    public function withSN($value)
244
    {
245
        $this->data['SN'] = $value;
246
        $this->options['form_params']['SN'] = $value;
247
248
        return $this;
249
    }
250
}
251
252
/**
253
 * @method string getUserId()
254
 * @method string getOpenPasswordFlag()
255
 * @method string getMeetingUUID()
256
 * @method string getPassword()
257
 * @method string getLiveName()
258
 */
259
class ConferenceToLive extends Rpc
260
{
261
262
    /**
263
     * @param string $value
264
     *
265
     * @return $this
266
     */
267
    public function withUserId($value)
268
    {
269
        $this->data['UserId'] = $value;
270
        $this->options['form_params']['UserId'] = $value;
271
272
        return $this;
273
    }
274
275
    /**
276
     * @param string $value
277
     *
278
     * @return $this
279
     */
280
    public function withOpenPasswordFlag($value)
281
    {
282
        $this->data['OpenPasswordFlag'] = $value;
283
        $this->options['form_params']['OpenPasswordFlag'] = $value;
284
285
        return $this;
286
    }
287
288
    /**
289
     * @param string $value
290
     *
291
     * @return $this
292
     */
293
    public function withMeetingUUID($value)
294
    {
295
        $this->data['MeetingUUID'] = $value;
296
        $this->options['form_params']['MeetingUUID'] = $value;
297
298
        return $this;
299
    }
300
301
    /**
302
     * @param string $value
303
     *
304
     * @return $this
305
     */
306
    public function withPassword($value)
307
    {
308
        $this->data['Password'] = $value;
309
        $this->options['form_params']['Password'] = $value;
310
311
        return $this;
312
    }
313
314
    /**
315
     * @param string $value
316
     *
317
     * @return $this
318
     */
319
    public function withLiveName($value)
320
    {
321
        $this->data['LiveName'] = $value;
322
        $this->options['form_params']['LiveName'] = $value;
323
324
        return $this;
325
    }
326
}
327
328
/**
329
 * @method string getMeetingName()
330
 * @method string getOpenPasswordtag()
331
 * @method string getToken()
332
 * @method string getPassword()
333
 * @method string getSN()
334
 */
335
class CreateDeviceMeeting extends Rpc
336
{
337
338
    /**
339
     * @param string $value
340
     *
341
     * @return $this
342
     */
343
    public function withMeetingName($value)
344
    {
345
        $this->data['MeetingName'] = $value;
346
        $this->options['form_params']['MeetingName'] = $value;
347
348
        return $this;
349
    }
350
351
    /**
352
     * @param string $value
353
     *
354
     * @return $this
355
     */
356
    public function withOpenPasswordtag($value)
357
    {
358
        $this->data['OpenPasswordtag'] = $value;
359
        $this->options['form_params']['OpenPasswordtag'] = $value;
360
361
        return $this;
362
    }
363
364
    /**
365
     * @param string $value
366
     *
367
     * @return $this
368
     */
369
    public function withToken($value)
370
    {
371
        $this->data['Token'] = $value;
372
        $this->options['form_params']['Token'] = $value;
373
374
        return $this;
375
    }
376
377
    /**
378
     * @param string $value
379
     *
380
     * @return $this
381
     */
382
    public function withPassword($value)
383
    {
384
        $this->data['Password'] = $value;
385
        $this->options['form_params']['Password'] = $value;
386
387
        return $this;
388
    }
389
390
    /**
391
     * @param string $value
392
     *
393
     * @return $this
394
     */
395
    public function withSN($value)
396
    {
397
        $this->data['SN'] = $value;
398
        $this->options['form_params']['SN'] = $value;
399
400
        return $this;
401
    }
402
}
403
404
/**
405
 * @method string getCreateTime()
406
 * @method $this withCreateTime($value)
407
 * @method string getMemo()
408
 * @method $this withMemo($value)
409
 * @method string getDescription()
410
 * @method $this withDescription($value)
411
 * @method string getMemberUUID()
412
 * @method $this withMemberUUID($value)
413
 * @method string getUserId()
414
 * @method $this withUserId($value)
415
 * @method string getEvaluation()
416
 * @method $this withEvaluation($value)
417
 * @method string getScore()
418
 * @method $this withScore($value)
419
 * @method string getMeetingUUID()
420
 * @method $this withMeetingUUID($value)
421
 * @method string getAppId()
422
 * @method $this withAppId($value)
423
 */
424
class CreateEvaluation extends Rpc
425
{
426
}
427
428
/**
429
 * @method string getUserId()
430
 * @method string getOpenPasswordFlag()
431
 * @method string getPassword()
432
 * @method string getLiveName()
433
 */
434
class CreateLive extends Rpc
435
{
436
437
    /**
438
     * @param string $value
439
     *
440
     * @return $this
441
     */
442
    public function withUserId($value)
443
    {
444
        $this->data['UserId'] = $value;
445
        $this->options['form_params']['UserId'] = $value;
446
447
        return $this;
448
    }
449
450
    /**
451
     * @param string $value
452
     *
453
     * @return $this
454
     */
455
    public function withOpenPasswordFlag($value)
456
    {
457
        $this->data['OpenPasswordFlag'] = $value;
458
        $this->options['form_params']['OpenPasswordFlag'] = $value;
459
460
        return $this;
461
    }
462
463
    /**
464
     * @param string $value
465
     *
466
     * @return $this
467
     */
468
    public function withPassword($value)
469
    {
470
        $this->data['Password'] = $value;
471
        $this->options['form_params']['Password'] = $value;
472
473
        return $this;
474
    }
475
476
    /**
477
     * @param string $value
478
     *
479
     * @return $this
480
     */
481
    public function withLiveName($value)
482
    {
483
        $this->data['LiveName'] = $value;
484
        $this->options['form_params']['LiveName'] = $value;
485
486
        return $this;
487
    }
488
}
489
490
/**
491
 * @method string getMeetingName()
492
 * @method string getUserId()
493
 * @method string getOpenPasswordFlag()
494
 * @method string getPassword()
495
 * @method string getMasterEnableFlag()
496
 * @method string getMeetingMode()
497
 */
498
class CreateMeeting extends Rpc
499
{
500
501
    /**
502
     * @param string $value
503
     *
504
     * @return $this
505
     */
506
    public function withMeetingName($value)
507
    {
508
        $this->data['MeetingName'] = $value;
509
        $this->options['form_params']['MeetingName'] = $value;
510
511
        return $this;
512
    }
513
514
    /**
515
     * @param string $value
516
     *
517
     * @return $this
518
     */
519
    public function withUserId($value)
520
    {
521
        $this->data['UserId'] = $value;
522
        $this->options['form_params']['UserId'] = $value;
523
524
        return $this;
525
    }
526
527
    /**
528
     * @param string $value
529
     *
530
     * @return $this
531
     */
532
    public function withOpenPasswordFlag($value)
533
    {
534
        $this->data['OpenPasswordFlag'] = $value;
535
        $this->options['form_params']['OpenPasswordFlag'] = $value;
536
537
        return $this;
538
    }
539
540
    /**
541
     * @param string $value
542
     *
543
     * @return $this
544
     */
545
    public function withPassword($value)
546
    {
547
        $this->data['Password'] = $value;
548
        $this->options['form_params']['Password'] = $value;
549
550
        return $this;
551
    }
552
553
    /**
554
     * @param string $value
555
     *
556
     * @return $this
557
     */
558
    public function withMasterEnableFlag($value)
559
    {
560
        $this->data['MasterEnableFlag'] = $value;
561
        $this->options['form_params']['MasterEnableFlag'] = $value;
562
563
        return $this;
564
    }
565
566
    /**
567
     * @param string $value
568
     *
569
     * @return $this
570
     */
571
    public function withMeetingMode($value)
572
    {
573
        $this->data['MeetingMode'] = $value;
574
        $this->options['form_params']['MeetingMode'] = $value;
575
576
        return $this;
577
    }
578
}
579
580
/**
581
 * @method string getMeetingName()
582
 * @method string getUserId()
583
 * @method string getOpenPasswordFlag()
584
 * @method string getPassword()
585
 */
586
class CreateMeetingInternational extends Rpc
587
{
588
589
    /**
590
     * @param string $value
591
     *
592
     * @return $this
593
     */
594
    public function withMeetingName($value)
595
    {
596
        $this->data['MeetingName'] = $value;
597
        $this->options['form_params']['MeetingName'] = $value;
598
599
        return $this;
600
    }
601
602
    /**
603
     * @param string $value
604
     *
605
     * @return $this
606
     */
607
    public function withUserId($value)
608
    {
609
        $this->data['UserId'] = $value;
610
        $this->options['form_params']['UserId'] = $value;
611
612
        return $this;
613
    }
614
615
    /**
616
     * @param string $value
617
     *
618
     * @return $this
619
     */
620
    public function withOpenPasswordFlag($value)
621
    {
622
        $this->data['OpenPasswordFlag'] = $value;
623
        $this->options['form_params']['OpenPasswordFlag'] = $value;
624
625
        return $this;
626
    }
627
628
    /**
629
     * @param string $value
630
     *
631
     * @return $this
632
     */
633
    public function withPassword($value)
634
    {
635
        $this->data['Password'] = $value;
636
        $this->options['form_params']['Password'] = $value;
637
638
        return $this;
639
    }
640
}
641
642
/**
643
 * @method string getCount()
644
 * @method string getUserInfo()
645
 */
646
class CreateUser extends Rpc
647
{
648
649
    /**
650
     * @param string $value
651
     *
652
     * @return $this
653
     */
654
    public function withCount($value)
655
    {
656
        $this->data['Count'] = $value;
657
        $this->options['form_params']['Count'] = $value;
658
659
        return $this;
660
    }
661
662
    /**
663
     * @param string $value
664
     *
665
     * @return $this
666
     */
667
    public function withUserInfo($value)
668
    {
669
        $this->data['UserInfo'] = $value;
670
        $this->options['form_params']['UserInfo'] = $value;
671
672
        return $this;
673
    }
674
}
675
676
/**
677
 * @method string getCount()
678
 * @method string getUserInfo()
679
 */
680
class CreateUserInternational extends Rpc
681
{
682
683
    /**
684
     * @param string $value
685
     *
686
     * @return $this
687
     */
688
    public function withCount($value)
689
    {
690
        $this->data['Count'] = $value;
691
        $this->options['form_params']['Count'] = $value;
692
693
        return $this;
694
    }
695
696
    /**
697
     * @param string $value
698
     *
699
     * @return $this
700
     */
701
    public function withUserInfo($value)
702
    {
703
        $this->data['UserInfo'] = $value;
704
        $this->options['form_params']['UserInfo'] = $value;
705
706
        return $this;
707
    }
708
}
709
710
/**
711
 * @method string getMeetingUUID()
712
 * @method string getLayoutSolution()
713
 */
714
class CustomGonggeLayout extends Rpc
715
{
716
717
    /**
718
     * @param string $value
719
     *
720
     * @return $this
721
     */
722
    public function withMeetingUUID($value)
723
    {
724
        $this->data['MeetingUUID'] = $value;
725
        $this->options['form_params']['MeetingUUID'] = $value;
726
727
        return $this;
728
    }
729
730
    /**
731
     * @param string $value
732
     *
733
     * @return $this
734
     */
735
    public function withLayoutSolution($value)
736
    {
737
        $this->data['LayoutSolution'] = $value;
738
        $this->options['form_params']['LayoutSolution'] = $value;
739
740
        return $this;
741
    }
742
}
743
744
/**
745
 * @method string getLiveUUID()
746
 * @method string getLayoutInfo()
747
 */
748
class CustomLayout extends Rpc
749
{
750
751
    /**
752
     * @param string $value
753
     *
754
     * @return $this
755
     */
756
    public function withLiveUUID($value)
757
    {
758
        $this->data['LiveUUID'] = $value;
759
        $this->options['form_params']['LiveUUID'] = $value;
760
761
        return $this;
762
    }
763
764
    /**
765
     * @param string $value
766
     *
767
     * @return $this
768
     */
769
    public function withLayoutInfo($value)
770
    {
771
        $this->data['LayoutInfo'] = $value;
772
        $this->options['form_params']['LayoutInfo'] = $value;
773
774
        return $this;
775
    }
776
}
777
778
/**
779
 * @method string getGroupId()
780
 * @method string getSN()
781
 */
782
class DeleteDevice extends Rpc
783
{
784
785
    /**
786
     * @param string $value
787
     *
788
     * @return $this
789
     */
790
    public function withGroupId($value)
791
    {
792
        $this->data['GroupId'] = $value;
793
        $this->options['form_params']['GroupId'] = $value;
794
795
        return $this;
796
    }
797
798
    /**
799
     * @param string $value
800
     *
801
     * @return $this
802
     */
803
    public function withSN($value)
804
    {
805
        $this->data['SN'] = $value;
806
        $this->options['form_params']['SN'] = $value;
807
808
        return $this;
809
    }
810
}
811
812
/**
813
 * @method string getLiveUUID()
814
 * @method string getUserId()
815
 */
816
class DeleteLive extends Rpc
817
{
818
819
    /**
820
     * @param string $value
821
     *
822
     * @return $this
823
     */
824
    public function withLiveUUID($value)
825
    {
826
        $this->data['LiveUUID'] = $value;
827
        $this->options['form_params']['LiveUUID'] = $value;
828
829
        return $this;
830
    }
831
832
    /**
833
     * @param string $value
834
     *
835
     * @return $this
836
     */
837
    public function withUserId($value)
838
    {
839
        $this->data['UserId'] = $value;
840
        $this->options['form_params']['UserId'] = $value;
841
842
        return $this;
843
    }
844
}
845
846
/**
847
 * @method string getMeetingUUID()
848
 */
849
class DeleteMeeting extends Rpc
850
{
851
852
    /**
853
     * @param string $value
854
     *
855
     * @return $this
856
     */
857
    public function withMeetingUUID($value)
858
    {
859
        $this->data['MeetingUUID'] = $value;
860
        $this->options['form_params']['MeetingUUID'] = $value;
861
862
        return $this;
863
    }
864
}
865
866
/**
867
 * @method string getCount()
868
 * @method string getUserInfo()
869
 */
870
class DeleteUser extends Rpc
871
{
872
873
    /**
874
     * @param string $value
875
     *
876
     * @return $this
877
     */
878
    public function withCount($value)
879
    {
880
        $this->data['Count'] = $value;
881
        $this->options['form_params']['Count'] = $value;
882
883
        return $this;
884
    }
885
886
    /**
887
     * @param string $value
888
     *
889
     * @return $this
890
     */
891
    public function withUserInfo($value)
892
    {
893
        $this->data['UserInfo'] = $value;
894
        $this->options['form_params']['UserInfo'] = $value;
895
896
        return $this;
897
    }
898
}
899
900
/**
901
 * @method string getLiveUUID()
902
 * @method string getEnableSpeakerFlag()
903
 */
904
class EnableLiveSpeaker extends Rpc
905
{
906
907
    /**
908
     * @param string $value
909
     *
910
     * @return $this
911
     */
912
    public function withLiveUUID($value)
913
    {
914
        $this->data['LiveUUID'] = $value;
915
        $this->options['form_params']['LiveUUID'] = $value;
916
917
        return $this;
918
    }
919
920
    /**
921
     * @param string $value
922
     *
923
     * @return $this
924
     */
925
    public function withEnableSpeakerFlag($value)
926
    {
927
        $this->data['EnableSpeakerFlag'] = $value;
928
        $this->options['form_params']['EnableSpeakerFlag'] = $value;
929
930
        return $this;
931
    }
932
}
933
934
/**
935
 * @method string getMeetingUUID()
936
 * @method string getSN()
937
 */
938
class EndDeviceMeeting extends Rpc
939
{
940
941
    /**
942
     * @param string $value
943
     *
944
     * @return $this
945
     */
946
    public function withMeetingUUID($value)
947
    {
948
        $this->data['MeetingUUID'] = $value;
949
        $this->options['form_params']['MeetingUUID'] = $value;
950
951
        return $this;
952
    }
953
954
    /**
955
     * @param string $value
956
     *
957
     * @return $this
958
     */
959
    public function withSN($value)
960
    {
961
        $this->data['SN'] = $value;
962
        $this->options['form_params']['SN'] = $value;
963
964
        return $this;
965
    }
966
}
967
968
/**
969
 * @method string getLiveUUID()
970
 * @method string getUserId()
971
 */
972
class EndLive extends Rpc
973
{
974
975
    /**
976
     * @param string $value
977
     *
978
     * @return $this
979
     */
980
    public function withLiveUUID($value)
981
    {
982
        $this->data['LiveUUID'] = $value;
983
        $this->options['form_params']['LiveUUID'] = $value;
984
985
        return $this;
986
    }
987
988
    /**
989
     * @param string $value
990
     *
991
     * @return $this
992
     */
993
    public function withUserId($value)
994
    {
995
        $this->data['UserId'] = $value;
996
        $this->options['form_params']['UserId'] = $value;
997
998
        return $this;
999
    }
1000
}
1001
1002
class GetAccountInfo extends Rpc
1003
{
1004
}
1005
1006
/**
1007
 * @method string getSN()
1008
 */
1009
class GetDeviceActiveCode extends Rpc
1010
{
1011
1012
    /**
1013
     * @param string $value
1014
     *
1015
     * @return $this
1016
     */
1017
    public function withSN($value)
1018
    {
1019
        $this->data['SN'] = $value;
1020
        $this->options['form_params']['SN'] = $value;
1021
1022
        return $this;
1023
    }
1024
}
1025
1026
/**
1027
 * @method string getCastScreenCode()
1028
 */
1029
class GetDeviceInfo extends Rpc
1030
{
1031
1032
    /**
1033
     * @param string $value
1034
     *
1035
     * @return $this
1036
     */
1037
    public function withCastScreenCode($value)
1038
    {
1039
        $this->data['CastScreenCode'] = $value;
1040
        $this->options['form_params']['CastScreenCode'] = $value;
1041
1042
        return $this;
1043
    }
1044
}
1045
1046
/**
1047
 * @method string getToken()
1048
 * @method $this withToken($value)
1049
 * @method string getSN()
1050
 * @method $this withSN($value)
1051
 */
1052
class GetDeviceToken extends Rpc
1053
{
1054
}
1055
1056
/**
1057
 * @method string getMeetingUUID()
1058
 */
1059
class GetMeeting extends Rpc
1060
{
1061
1062
    /**
1063
     * @param string $value
1064
     *
1065
     * @return $this
1066
     */
1067
    public function withMeetingUUID($value)
1068
    {
1069
        $this->data['MeetingUUID'] = $value;
1070
        $this->options['form_params']['MeetingUUID'] = $value;
1071
1072
        return $this;
1073
    }
1074
}
1075
1076
/**
1077
 * @method string getMeetingUUID()
1078
 */
1079
class GetMeetingInternational extends Rpc
1080
{
1081
1082
    /**
1083
     * @param string $value
1084
     *
1085
     * @return $this
1086
     */
1087
    public function withMeetingUUID($value)
1088
    {
1089
        $this->data['MeetingUUID'] = $value;
1090
        $this->options['form_params']['MeetingUUID'] = $value;
1091
1092
        return $this;
1093
    }
1094
}
1095
1096
/**
1097
 * @method string getMeetingUUID()
1098
 * @method $this withMeetingUUID($value)
1099
 */
1100
class GetMeetingMember extends Rpc
1101
{
1102
}
1103
1104
/**
1105
 * @method string getEndTime()
1106
 * @method string getStartTime()
1107
 */
1108
class GetStatistic extends Rpc
1109
{
1110
1111
    /**
1112
     * @param string $value
1113
     *
1114
     * @return $this
1115
     */
1116
    public function withEndTime($value)
1117
    {
1118
        $this->data['EndTime'] = $value;
1119
        $this->options['form_params']['EndTime'] = $value;
1120
1121
        return $this;
1122
    }
1123
1124
    /**
1125
     * @param string $value
1126
     *
1127
     * @return $this
1128
     */
1129
    public function withStartTime($value)
1130
    {
1131
        $this->data['StartTime'] = $value;
1132
        $this->options['form_params']['StartTime'] = $value;
1133
1134
        return $this;
1135
    }
1136
}
1137
1138
/**
1139
 * @method string getUserId()
1140
 * @method $this withUserId($value)
1141
 */
1142
class GetUser extends Rpc
1143
{
1144
}
1145
1146
/**
1147
 * @method string getMeetingUUID()
1148
 * @method string getUserIds()
1149
 */
1150
class InviteUser extends Rpc
1151
{
1152
1153
    /**
1154
     * @param string $value
1155
     *
1156
     * @return $this
1157
     */
1158
    public function withMeetingUUID($value)
1159
    {
1160
        $this->data['MeetingUUID'] = $value;
1161
        $this->options['form_params']['MeetingUUID'] = $value;
1162
1163
        return $this;
1164
    }
1165
1166
    /**
1167
     * @param string $value
1168
     *
1169
     * @return $this
1170
     */
1171
    public function withUserIds($value)
1172
    {
1173
        $this->data['UserIds'] = $value;
1174
        $this->options['form_params']['UserIds'] = $value;
1175
1176
        return $this;
1177
    }
1178
}
1179
1180
/**
1181
 * @method string getToken()
1182
 * @method string getPassword()
1183
 * @method string getMeetingCode()
1184
 * @method string getSN()
1185
 */
1186
class JoinDeviceMeeting extends Rpc
1187
{
1188
1189
    /**
1190
     * @param string $value
1191
     *
1192
     * @return $this
1193
     */
1194
    public function withToken($value)
1195
    {
1196
        $this->data['Token'] = $value;
1197
        $this->options['form_params']['Token'] = $value;
1198
1199
        return $this;
1200
    }
1201
1202
    /**
1203
     * @param string $value
1204
     *
1205
     * @return $this
1206
     */
1207
    public function withPassword($value)
1208
    {
1209
        $this->data['Password'] = $value;
1210
        $this->options['form_params']['Password'] = $value;
1211
1212
        return $this;
1213
    }
1214
1215
    /**
1216
     * @param string $value
1217
     *
1218
     * @return $this
1219
     */
1220
    public function withMeetingCode($value)
1221
    {
1222
        $this->data['MeetingCode'] = $value;
1223
        $this->options['form_params']['MeetingCode'] = $value;
1224
1225
        return $this;
1226
    }
1227
1228
    /**
1229
     * @param string $value
1230
     *
1231
     * @return $this
1232
     */
1233
    public function withSN($value)
1234
    {
1235
        $this->data['SN'] = $value;
1236
        $this->options['form_params']['SN'] = $value;
1237
1238
        return $this;
1239
    }
1240
}
1241
1242
/**
1243
 * @method string getLiveUUID()
1244
 * @method string getUserId()
1245
 * @method string getPassword()
1246
 */
1247
class JoinLive extends Rpc
1248
{
1249
1250
    /**
1251
     * @param string $value
1252
     *
1253
     * @return $this
1254
     */
1255
    public function withLiveUUID($value)
1256
    {
1257
        $this->data['LiveUUID'] = $value;
1258
        $this->options['form_params']['LiveUUID'] = $value;
1259
1260
        return $this;
1261
    }
1262
1263
    /**
1264
     * @param string $value
1265
     *
1266
     * @return $this
1267
     */
1268
    public function withUserId($value)
1269
    {
1270
        $this->data['UserId'] = $value;
1271
        $this->options['form_params']['UserId'] = $value;
1272
1273
        return $this;
1274
    }
1275
1276
    /**
1277
     * @param string $value
1278
     *
1279
     * @return $this
1280
     */
1281
    public function withPassword($value)
1282
    {
1283
        $this->data['Password'] = $value;
1284
        $this->options['form_params']['Password'] = $value;
1285
1286
        return $this;
1287
    }
1288
}
1289
1290
/**
1291
 * @method string getUserId()
1292
 * @method string getPassword()
1293
 * @method string getMeetingCode()
1294
 */
1295
class JoinMeeting extends Rpc
1296
{
1297
1298
    /**
1299
     * @param string $value
1300
     *
1301
     * @return $this
1302
     */
1303
    public function withUserId($value)
1304
    {
1305
        $this->data['UserId'] = $value;
1306
        $this->options['form_params']['UserId'] = $value;
1307
1308
        return $this;
1309
    }
1310
1311
    /**
1312
     * @param string $value
1313
     *
1314
     * @return $this
1315
     */
1316
    public function withPassword($value)
1317
    {
1318
        $this->data['Password'] = $value;
1319
        $this->options['form_params']['Password'] = $value;
1320
1321
        return $this;
1322
    }
1323
1324
    /**
1325
     * @param string $value
1326
     *
1327
     * @return $this
1328
     */
1329
    public function withMeetingCode($value)
1330
    {
1331
        $this->data['MeetingCode'] = $value;
1332
        $this->options['form_params']['MeetingCode'] = $value;
1333
1334
        return $this;
1335
    }
1336
}
1337
1338
/**
1339
 * @method string getUserId()
1340
 * @method string getPassword()
1341
 * @method string getMeetingCode()
1342
 */
1343
class JoinMeetingInternational extends Rpc
1344
{
1345
1346
    /**
1347
     * @param string $value
1348
     *
1349
     * @return $this
1350
     */
1351
    public function withUserId($value)
1352
    {
1353
        $this->data['UserId'] = $value;
1354
        $this->options['form_params']['UserId'] = $value;
1355
1356
        return $this;
1357
    }
1358
1359
    /**
1360
     * @param string $value
1361
     *
1362
     * @return $this
1363
     */
1364
    public function withPassword($value)
1365
    {
1366
        $this->data['Password'] = $value;
1367
        $this->options['form_params']['Password'] = $value;
1368
1369
        return $this;
1370
    }
1371
1372
    /**
1373
     * @param string $value
1374
     *
1375
     * @return $this
1376
     */
1377
    public function withMeetingCode($value)
1378
    {
1379
        $this->data['MeetingCode'] = $value;
1380
        $this->options['form_params']['MeetingCode'] = $value;
1381
1382
        return $this;
1383
    }
1384
}
1385
1386
/**
1387
 * @method string getSerialNumber()
1388
 * @method $this withSerialNumber($value)
1389
 * @method string getPageNumber()
1390
 * @method $this withPageNumber($value)
1391
 * @method string getPageSize()
1392
 * @method $this withPageSize($value)
1393
 */
1394
class ListConferenceDevices extends Rpc
1395
{
1396
}
1397
1398
/**
1399
 * @method string getGroupId()
1400
 * @method string getSN()
1401
 */
1402
class ListDeviceIp extends Rpc
1403
{
1404
1405
    /**
1406
     * @param string $value
1407
     *
1408
     * @return $this
1409
     */
1410
    public function withGroupId($value)
1411
    {
1412
        $this->data['GroupId'] = $value;
1413
        $this->options['form_params']['GroupId'] = $value;
1414
1415
        return $this;
1416
    }
1417
1418
    /**
1419
     * @param string $value
1420
     *
1421
     * @return $this
1422
     */
1423
    public function withSN($value)
1424
    {
1425
        $this->data['SN'] = $value;
1426
        $this->options['form_params']['SN'] = $value;
1427
1428
        return $this;
1429
    }
1430
}
1431
1432
/**
1433
 * @method string getCastScreenCode()
1434
 * @method $this withCastScreenCode($value)
1435
 * @method string getPageNumber()
1436
 * @method $this withPageNumber($value)
1437
 * @method string getPageSize()
1438
 * @method $this withPageSize($value)
1439
 * @method string getSN()
1440
 * @method $this withSN($value)
1441
 */
1442
class ListDevices extends Rpc
1443
{
1444
}
1445
1446
class ListEvaluations extends Rpc
1447
{
1448
}
1449
1450
/**
1451
 * @method string getEndTime()
1452
 * @method $this withEndTime($value)
1453
 * @method string getStartTime()
1454
 * @method $this withStartTime($value)
1455
 */
1456
class ListIsvStatistics extends Rpc
1457
{
1458
}
1459
1460
/**
1461
 * @method string getMeetingUUID()
1462
 * @method $this withMeetingUUID($value)
1463
 */
1464
class ListMembers extends Rpc
1465
{
1466
}
1467
1468
/**
1469
 * @method string getPageNumber()
1470
 * @method $this withPageNumber($value)
1471
 * @method string getPageSize()
1472
 * @method $this withPageSize($value)
1473
 */
1474
class ListUsers extends Rpc
1475
{
1476
}
1477
1478
/**
1479
 * @method string getSerialNumber()
1480
 * @method string getPicture()
1481
 */
1482
class ModifyDeviceBackground extends Rpc
1483
{
1484
1485
    /**
1486
     * @param string $value
1487
     *
1488
     * @return $this
1489
     */
1490
    public function withSerialNumber($value)
1491
    {
1492
        $this->data['SerialNumber'] = $value;
1493
        $this->options['form_params']['SerialNumber'] = $value;
1494
1495
        return $this;
1496
    }
1497
1498
    /**
1499
     * @param string $value
1500
     *
1501
     * @return $this
1502
     */
1503
    public function withPicture($value)
1504
    {
1505
        $this->data['Picture'] = $value;
1506
        $this->options['form_params']['Picture'] = $value;
1507
1508
        return $this;
1509
    }
1510
}
1511
1512
/**
1513
 * @method string getUserId()
1514
 * @method string getOpenPasswordFlag()
1515
 * @method string getMeetingUUID()
1516
 * @method string getPassword()
1517
 */
1518
class ModifyMeetingPassword extends Rpc
1519
{
1520
1521
    /**
1522
     * @param string $value
1523
     *
1524
     * @return $this
1525
     */
1526
    public function withUserId($value)
1527
    {
1528
        $this->data['UserId'] = $value;
1529
        $this->options['form_params']['UserId'] = $value;
1530
1531
        return $this;
1532
    }
1533
1534
    /**
1535
     * @param string $value
1536
     *
1537
     * @return $this
1538
     */
1539
    public function withOpenPasswordFlag($value)
1540
    {
1541
        $this->data['OpenPasswordFlag'] = $value;
1542
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1543
1544
        return $this;
1545
    }
1546
1547
    /**
1548
     * @param string $value
1549
     *
1550
     * @return $this
1551
     */
1552
    public function withMeetingUUID($value)
1553
    {
1554
        $this->data['MeetingUUID'] = $value;
1555
        $this->options['form_params']['MeetingUUID'] = $value;
1556
1557
        return $this;
1558
    }
1559
1560
    /**
1561
     * @param string $value
1562
     *
1563
     * @return $this
1564
     */
1565
    public function withPassword($value)
1566
    {
1567
        $this->data['Password'] = $value;
1568
        $this->options['form_params']['Password'] = $value;
1569
1570
        return $this;
1571
    }
1572
}
1573
1574
/**
1575
 * @method string getUserId()
1576
 * @method string getOpenPasswordFlag()
1577
 * @method string getMeetingUUID()
1578
 * @method string getPassword()
1579
 */
1580
class ModifyMeetingPasswordInternational extends Rpc
1581
{
1582
1583
    /**
1584
     * @param string $value
1585
     *
1586
     * @return $this
1587
     */
1588
    public function withUserId($value)
1589
    {
1590
        $this->data['UserId'] = $value;
1591
        $this->options['form_params']['UserId'] = $value;
1592
1593
        return $this;
1594
    }
1595
1596
    /**
1597
     * @param string $value
1598
     *
1599
     * @return $this
1600
     */
1601
    public function withOpenPasswordFlag($value)
1602
    {
1603
        $this->data['OpenPasswordFlag'] = $value;
1604
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1605
1606
        return $this;
1607
    }
1608
1609
    /**
1610
     * @param string $value
1611
     *
1612
     * @return $this
1613
     */
1614
    public function withMeetingUUID($value)
1615
    {
1616
        $this->data['MeetingUUID'] = $value;
1617
        $this->options['form_params']['MeetingUUID'] = $value;
1618
1619
        return $this;
1620
    }
1621
1622
    /**
1623
     * @param string $value
1624
     *
1625
     * @return $this
1626
     */
1627
    public function withPassword($value)
1628
    {
1629
        $this->data['Password'] = $value;
1630
        $this->options['form_params']['Password'] = $value;
1631
1632
        return $this;
1633
    }
1634
}
1635
1636
/**
1637
 * @method string getSerialNumber()
1638
 */
1639
class RefreshDeviceScreenCode extends Rpc
1640
{
1641
1642
    /**
1643
     * @param string $value
1644
     *
1645
     * @return $this
1646
     */
1647
    public function withSerialNumber($value)
1648
    {
1649
        $this->data['SerialNumber'] = $value;
1650
        $this->options['form_params']['SerialNumber'] = $value;
1651
1652
        return $this;
1653
    }
1654
}
1655
1656
/**
1657
 * @method string getIP()
1658
 * @method $this withIP($value)
1659
 * @method string getMac()
1660
 * @method $this withMac($value)
1661
 * @method string getToken()
1662
 * @method $this withToken($value)
1663
 * @method string getDeviceVersion()
1664
 * @method $this withDeviceVersion($value)
1665
 * @method string getSN()
1666
 * @method $this withSN($value)
1667
 */
1668
class RegisterDevice extends Rpc
1669
{
1670
}
1671
1672
/**
1673
 * @method string getIP()
1674
 * @method $this withIP($value)
1675
 * @method string getGroupId()
1676
 * @method $this withGroupId($value)
1677
 * @method string getOwnerId()
1678
 * @method $this withOwnerId($value)
1679
 * @method string getDeviceId()
1680
 * @method $this withDeviceId($value)
1681
 * @method string getGroupName()
1682
 * @method $this withGroupName($value)
1683
 * @method string getMac()
1684
 * @method $this withMac($value)
1685
 * @method string getDeviceVersion()
1686
 * @method $this withDeviceVersion($value)
1687
 */
1688
class RegisterUemDevice extends Rpc
1689
{
1690
}
1691
1692
/**
1693
 * @method string getOperatorMemberUUID()
1694
 * @method string getMemberUUID()
1695
 * @method $this withMemberUUID($value)
1696
 * @method string getSendType()
1697
 * @method string getCommand()
1698
 * @method string getMeetingUUID()
1699
 * @method $this withMeetingUUID($value)
1700
 */
1701
class SendMeetingCommand extends Rpc
1702
{
1703
1704
    /**
1705
     * @param string $value
1706
     *
1707
     * @return $this
1708
     */
1709
    public function withOperatorMemberUUID($value)
1710
    {
1711
        $this->data['OperatorMemberUUID'] = $value;
1712
        $this->options['form_params']['OperatorMemberUUID'] = $value;
1713
1714
        return $this;
1715
    }
1716
1717
    /**
1718
     * @param string $value
1719
     *
1720
     * @return $this
1721
     */
1722
    public function withSendType($value)
1723
    {
1724
        $this->data['SendType'] = $value;
1725
        $this->options['form_params']['SendType'] = $value;
1726
1727
        return $this;
1728
    }
1729
1730
    /**
1731
     * @param string $value
1732
     *
1733
     * @return $this
1734
     */
1735
    public function withCommand($value)
1736
    {
1737
        $this->data['Command'] = $value;
1738
        $this->options['form_params']['Command'] = $value;
1739
1740
        return $this;
1741
    }
1742
}
1743
1744
/**
1745
 * @method string getLiveUUID()
1746
 * @method string getPushInfo()
1747
 * @method string getUserId()
1748
 * @method string getLayoutInfo()
1749
 */
1750
class StartLive extends Rpc
1751
{
1752
1753
    /**
1754
     * @param string $value
1755
     *
1756
     * @return $this
1757
     */
1758
    public function withLiveUUID($value)
1759
    {
1760
        $this->data['LiveUUID'] = $value;
1761
        $this->options['form_params']['LiveUUID'] = $value;
1762
1763
        return $this;
1764
    }
1765
1766
    /**
1767
     * @param string $value
1768
     *
1769
     * @return $this
1770
     */
1771
    public function withPushInfo($value)
1772
    {
1773
        $this->data['PushInfo'] = $value;
1774
        $this->options['form_params']['PushInfo'] = $value;
1775
1776
        return $this;
1777
    }
1778
1779
    /**
1780
     * @param string $value
1781
     *
1782
     * @return $this
1783
     */
1784
    public function withUserId($value)
1785
    {
1786
        $this->data['UserId'] = $value;
1787
        $this->options['form_params']['UserId'] = $value;
1788
1789
        return $this;
1790
    }
1791
1792
    /**
1793
     * @param string $value
1794
     *
1795
     * @return $this
1796
     */
1797
    public function withLayoutInfo($value)
1798
    {
1799
        $this->data['LayoutInfo'] = $value;
1800
        $this->options['form_params']['LayoutInfo'] = $value;
1801
1802
        return $this;
1803
    }
1804
}
1805
1806
/**
1807
 * @method string getMessage()
1808
 * @method $this withMessage($value)
1809
 */
1810
class UpdateDeviceHeartBeat extends Rpc
1811
{
1812
}
1813
1814
/**
1815
 * @method string getSerialNumber()
1816
 * @method string getPicture()
1817
 */
1818
class UpdateDeviceStartupPicture extends Rpc
1819
{
1820
1821
    /**
1822
     * @param string $value
1823
     *
1824
     * @return $this
1825
     */
1826
    public function withSerialNumber($value)
1827
    {
1828
        $this->data['SerialNumber'] = $value;
1829
        $this->options['form_params']['SerialNumber'] = $value;
1830
1831
        return $this;
1832
    }
1833
1834
    /**
1835
     * @param string $value
1836
     *
1837
     * @return $this
1838
     */
1839
    public function withPicture($value)
1840
    {
1841
        $this->data['Picture'] = $value;
1842
        $this->options['form_params']['Picture'] = $value;
1843
1844
        return $this;
1845
    }
1846
}
1847
1848
/**
1849
 * @method string getMeetingUUID()
1850
 * @method string getVideoCount()
1851
 * @method string getValue()
1852
 */
1853
class UpdateGonggeLayout extends Rpc
1854
{
1855
1856
    /**
1857
     * @param string $value
1858
     *
1859
     * @return $this
1860
     */
1861
    public function withMeetingUUID($value)
1862
    {
1863
        $this->data['MeetingUUID'] = $value;
1864
        $this->options['form_params']['MeetingUUID'] = $value;
1865
1866
        return $this;
1867
    }
1868
1869
    /**
1870
     * @param string $value
1871
     *
1872
     * @return $this
1873
     */
1874
    public function withVideoCount($value)
1875
    {
1876
        $this->data['VideoCount'] = $value;
1877
        $this->options['form_params']['VideoCount'] = $value;
1878
1879
        return $this;
1880
    }
1881
1882
    /**
1883
     * @param string $value
1884
     *
1885
     * @return $this
1886
     */
1887
    public function withValue($value)
1888
    {
1889
        $this->data['Value'] = $value;
1890
        $this->options['form_params']['Value'] = $value;
1891
1892
        return $this;
1893
    }
1894
}
1895
1896
/**
1897
 * @method string getLiveUUID()
1898
 * @method string getUserId()
1899
 * @method string getOpenPasswordFlag()
1900
 * @method string getPassword()
1901
 */
1902
class UpdateLivePassword extends Rpc
1903
{
1904
1905
    /**
1906
     * @param string $value
1907
     *
1908
     * @return $this
1909
     */
1910
    public function withLiveUUID($value)
1911
    {
1912
        $this->data['LiveUUID'] = $value;
1913
        $this->options['form_params']['LiveUUID'] = $value;
1914
1915
        return $this;
1916
    }
1917
1918
    /**
1919
     * @param string $value
1920
     *
1921
     * @return $this
1922
     */
1923
    public function withUserId($value)
1924
    {
1925
        $this->data['UserId'] = $value;
1926
        $this->options['form_params']['UserId'] = $value;
1927
1928
        return $this;
1929
    }
1930
1931
    /**
1932
     * @param string $value
1933
     *
1934
     * @return $this
1935
     */
1936
    public function withOpenPasswordFlag($value)
1937
    {
1938
        $this->data['OpenPasswordFlag'] = $value;
1939
        $this->options['form_params']['OpenPasswordFlag'] = $value;
1940
1941
        return $this;
1942
    }
1943
1944
    /**
1945
     * @param string $value
1946
     *
1947
     * @return $this
1948
     */
1949
    public function withPassword($value)
1950
    {
1951
        $this->data['Password'] = $value;
1952
        $this->options['form_params']['Password'] = $value;
1953
1954
        return $this;
1955
    }
1956
}
1957