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 ( 9c1878...1c5a9f )
by
unknown
04:15
created

DetectVideoLivingFace   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A withVideoUrl() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Facebody\V20191230;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddFace addFace(array $options = [])
9
 * @method AddFaceEntity addFaceEntity(array $options = [])
10
 * @method BodyPosture bodyPosture(array $options = [])
11
 * @method CompareFace compareFace(array $options = [])
12
 * @method CreateFaceDb createFaceDb(array $options = [])
13
 * @method DeleteFace deleteFace(array $options = [])
14
 * @method DeleteFaceDb deleteFaceDb(array $options = [])
15
 * @method DeleteFaceEntity deleteFaceEntity(array $options = [])
16
 * @method DetectBodyCount detectBodyCount(array $options = [])
17
 * @method DetectFace detectFace(array $options = [])
18
 * @method DetectLivingFace detectLivingFace(array $options = [])
19
 * @method DetectMask detectMask(array $options = [])
20
 * @method DetectPedestrian detectPedestrian(array $options = [])
21
 * @method DetectVideoLivingFace detectVideoLivingFace(array $options = [])
22
 * @method EnhanceFace enhanceFace(array $options = [])
23
 * @method FaceBeauty faceBeauty(array $options = [])
24
 * @method FaceFilter faceFilter(array $options = [])
25
 * @method FaceMakeup faceMakeup(array $options = [])
26
 * @method FaceTidyup faceTidyup(array $options = [])
27
 * @method GetFaceEntity getFaceEntity(array $options = [])
28
 * @method HandPosture handPosture(array $options = [])
29
 * @method ListFaceDbs listFaceDbs(array $options = [])
30
 * @method ListFaceEntities listFaceEntities(array $options = [])
31
 * @method RecognizeExpression recognizeExpression(array $options = [])
32
 * @method RecognizeFace recognizeFace(array $options = [])
33
 * @method RecognizePublicFace recognizePublicFace(array $options = [])
34
 * @method SearchFace searchFace(array $options = [])
35
 * @method SwapFacialFeatures swapFacialFeatures(array $options = [])
36
 * @method UpdateFaceEntity updateFaceEntity(array $options = [])
37
 */
38
class FacebodyApiResolver extends ApiResolver
39
{
40
}
41
42
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
43
{
44
    /** @var string */
45
    public $product = 'facebody';
46
47
    /** @var string */
48
    public $version = '2019-12-30';
49
50
    /** @var string */
51
    public $method = 'POST';
52
53
    /** @var string */
54
    public $serviceCode = 'facebody';
55
}
56
57
/**
58
 * @method string getEntityId()
59
 * @method string getDbName()
60
 * @method string getImageUrl()
61
 * @method string getExtraData()
62
 */
63
class AddFace extends Rpc
64
{
65
66
    /**
67
     * @param string $value
68
     *
69
     * @return $this
70
     */
71
    public function withEntityId($value)
72
    {
73
        $this->data['EntityId'] = $value;
74
        $this->options['form_params']['EntityId'] = $value;
75
76
        return $this;
77
    }
78
79
    /**
80
     * @param string $value
81
     *
82
     * @return $this
83
     */
84
    public function withDbName($value)
85
    {
86
        $this->data['DbName'] = $value;
87
        $this->options['form_params']['DbName'] = $value;
88
89
        return $this;
90
    }
91
92
    /**
93
     * @param string $value
94
     *
95
     * @return $this
96
     */
97
    public function withImageUrl($value)
98
    {
99
        $this->data['ImageUrl'] = $value;
100
        $this->options['form_params']['ImageUrl'] = $value;
101
102
        return $this;
103
    }
104
105
    /**
106
     * @param string $value
107
     *
108
     * @return $this
109
     */
110
    public function withExtraData($value)
111
    {
112
        $this->data['ExtraData'] = $value;
113
        $this->options['form_params']['ExtraData'] = $value;
114
115
        return $this;
116
    }
117
}
118
119
/**
120
 * @method string getEntityId()
121
 * @method string getLabels()
122
 * @method string getDbName()
123
 */
124
class AddFaceEntity extends Rpc
125
{
126
127
    /**
128
     * @param string $value
129
     *
130
     * @return $this
131
     */
132
    public function withEntityId($value)
133
    {
134
        $this->data['EntityId'] = $value;
135
        $this->options['form_params']['EntityId'] = $value;
136
137
        return $this;
138
    }
139
140
    /**
141
     * @param string $value
142
     *
143
     * @return $this
144
     */
145
    public function withLabels($value)
146
    {
147
        $this->data['Labels'] = $value;
148
        $this->options['form_params']['Labels'] = $value;
149
150
        return $this;
151
    }
152
153
    /**
154
     * @param string $value
155
     *
156
     * @return $this
157
     */
158
    public function withDbName($value)
159
    {
160
        $this->data['DbName'] = $value;
161
        $this->options['form_params']['DbName'] = $value;
162
163
        return $this;
164
    }
165
}
166
167
/**
168
 * @method string getImageURL()
169
 */
170
class BodyPosture extends Rpc
171
{
172
173
    /**
174
     * @param string $value
175
     *
176
     * @return $this
177
     */
178
    public function withImageURL($value)
179
    {
180
        $this->data['ImageURL'] = $value;
181
        $this->options['form_params']['ImageURL'] = $value;
182
183
        return $this;
184
    }
185
}
186
187
/**
188
 * @method string getImageType()
189
 * @method string getImageURLB()
190
 * @method string getImageURLA()
191
 */
192
class CompareFace extends Rpc
193
{
194
195
    /**
196
     * @param string $value
197
     *
198
     * @return $this
199
     */
200
    public function withImageType($value)
201
    {
202
        $this->data['ImageType'] = $value;
203
        $this->options['form_params']['ImageType'] = $value;
204
205
        return $this;
206
    }
207
208
    /**
209
     * @param string $value
210
     *
211
     * @return $this
212
     */
213
    public function withImageURLB($value)
214
    {
215
        $this->data['ImageURLB'] = $value;
216
        $this->options['form_params']['ImageURLB'] = $value;
217
218
        return $this;
219
    }
220
221
    /**
222
     * @param string $value
223
     *
224
     * @return $this
225
     */
226
    public function withImageURLA($value)
227
    {
228
        $this->data['ImageURLA'] = $value;
229
        $this->options['form_params']['ImageURLA'] = $value;
230
231
        return $this;
232
    }
233
}
234
235
/**
236
 * @method string getName()
237
 */
238
class CreateFaceDb extends Rpc
239
{
240
241
    /**
242
     * @param string $value
243
     *
244
     * @return $this
245
     */
246
    public function withName($value)
247
    {
248
        $this->data['Name'] = $value;
249
        $this->options['form_params']['Name'] = $value;
250
251
        return $this;
252
    }
253
}
254
255
/**
256
 * @method string getFaceId()
257
 * @method string getDbName()
258
 */
259
class DeleteFace extends Rpc
260
{
261
262
    /**
263
     * @param string $value
264
     *
265
     * @return $this
266
     */
267
    public function withFaceId($value)
268
    {
269
        $this->data['FaceId'] = $value;
270
        $this->options['form_params']['FaceId'] = $value;
271
272
        return $this;
273
    }
274
275
    /**
276
     * @param string $value
277
     *
278
     * @return $this
279
     */
280
    public function withDbName($value)
281
    {
282
        $this->data['DbName'] = $value;
283
        $this->options['form_params']['DbName'] = $value;
284
285
        return $this;
286
    }
287
}
288
289
/**
290
 * @method string getName()
291
 */
292
class DeleteFaceDb extends Rpc
293
{
294
295
    /**
296
     * @param string $value
297
     *
298
     * @return $this
299
     */
300
    public function withName($value)
301
    {
302
        $this->data['Name'] = $value;
303
        $this->options['form_params']['Name'] = $value;
304
305
        return $this;
306
    }
307
}
308
309
/**
310
 * @method string getEntityId()
311
 * @method string getDbName()
312
 */
313
class DeleteFaceEntity extends Rpc
314
{
315
316
    /**
317
     * @param string $value
318
     *
319
     * @return $this
320
     */
321
    public function withEntityId($value)
322
    {
323
        $this->data['EntityId'] = $value;
324
        $this->options['form_params']['EntityId'] = $value;
325
326
        return $this;
327
    }
328
329
    /**
330
     * @param string $value
331
     *
332
     * @return $this
333
     */
334
    public function withDbName($value)
335
    {
336
        $this->data['DbName'] = $value;
337
        $this->options['form_params']['DbName'] = $value;
338
339
        return $this;
340
    }
341
}
342
343
/**
344
 * @method string getImageURL()
345
 */
346
class DetectBodyCount extends Rpc
347
{
348
349
    /**
350
     * @param string $value
351
     *
352
     * @return $this
353
     */
354
    public function withImageURL($value)
355
    {
356
        $this->data['ImageURL'] = $value;
357
        $this->options['form_params']['ImageURL'] = $value;
358
359
        return $this;
360
    }
361
}
362
363
/**
364
 * @method string getImageType()
365
 * @method string getImageURL()
366
 */
367
class DetectFace extends Rpc
368
{
369
370
    /**
371
     * @param string $value
372
     *
373
     * @return $this
374
     */
375
    public function withImageType($value)
376
    {
377
        $this->data['ImageType'] = $value;
378
        $this->options['form_params']['ImageType'] = $value;
379
380
        return $this;
381
    }
382
383
    /**
384
     * @param string $value
385
     *
386
     * @return $this
387
     */
388
    public function withImageURL($value)
389
    {
390
        $this->data['ImageURL'] = $value;
391
        $this->options['form_params']['ImageURL'] = $value;
392
393
        return $this;
394
    }
395
}
396
397
/**
398
 * @method array getTasks()
399
 */
400
class DetectLivingFace extends Rpc
401
{
402
403
    /**
404
     * @param array $tasks
405
     *
406
     * @return $this
407
     */
408
	public function withTasks(array $tasks)
409
	{
410
	    $this->data['Tasks'] = $tasks;
411
		foreach ($tasks as $depth1 => $depth1Value) {
412
			if(isset($depth1Value['ImageURL'])){
413
				$this->options['form_params']['Tasks.' . ($depth1 + 1) . '.ImageURL'] = $depth1Value['ImageURL'];
414
			}
415
		}
416
417
		return $this;
418
    }
419
}
420
421
/**
422
 * @method string getImageURL()
423
 */
424
class DetectMask extends Rpc
425
{
426
427
    /**
428
     * @param string $value
429
     *
430
     * @return $this
431
     */
432
    public function withImageURL($value)
433
    {
434
        $this->data['ImageURL'] = $value;
435
        $this->options['form_params']['ImageURL'] = $value;
436
437
        return $this;
438
    }
439
}
440
441
/**
442
 * @method string getImageURL()
443
 */
444
class DetectPedestrian extends Rpc
445
{
446
447
    /**
448
     * @param string $value
449
     *
450
     * @return $this
451
     */
452
    public function withImageURL($value)
453
    {
454
        $this->data['ImageURL'] = $value;
455
        $this->options['form_params']['ImageURL'] = $value;
456
457
        return $this;
458
    }
459
}
460
461
/**
462
 * @method string getVideoUrl()
463
 */
464
class DetectVideoLivingFace extends Rpc
465
{
466
467
    /**
468
     * @param string $value
469
     *
470
     * @return $this
471
     */
472
    public function withVideoUrl($value)
473
    {
474
        $this->data['VideoUrl'] = $value;
475
        $this->options['form_params']['VideoUrl'] = $value;
476
477
        return $this;
478
    }
479
}
480
481
/**
482
 * @method string getImageURL()
483
 */
484
class EnhanceFace extends Rpc
485
{
486
487
    /**
488
     * @param string $value
489
     *
490
     * @return $this
491
     */
492
    public function withImageURL($value)
493
    {
494
        $this->data['ImageURL'] = $value;
495
        $this->options['form_params']['ImageURL'] = $value;
496
497
        return $this;
498
    }
499
}
500
501
/**
502
 * @method string getSharp()
503
 * @method string getWhite()
504
 * @method string getImageURL()
505
 * @method string getSmooth()
506
 */
507
class FaceBeauty extends Rpc
508
{
509
510
    /**
511
     * @param string $value
512
     *
513
     * @return $this
514
     */
515
    public function withSharp($value)
516
    {
517
        $this->data['Sharp'] = $value;
518
        $this->options['form_params']['Sharp'] = $value;
519
520
        return $this;
521
    }
522
523
    /**
524
     * @param string $value
525
     *
526
     * @return $this
527
     */
528
    public function withWhite($value)
529
    {
530
        $this->data['White'] = $value;
531
        $this->options['form_params']['White'] = $value;
532
533
        return $this;
534
    }
535
536
    /**
537
     * @param string $value
538
     *
539
     * @return $this
540
     */
541
    public function withImageURL($value)
542
    {
543
        $this->data['ImageURL'] = $value;
544
        $this->options['form_params']['ImageURL'] = $value;
545
546
        return $this;
547
    }
548
549
    /**
550
     * @param string $value
551
     *
552
     * @return $this
553
     */
554
    public function withSmooth($value)
555
    {
556
        $this->data['Smooth'] = $value;
557
        $this->options['form_params']['Smooth'] = $value;
558
559
        return $this;
560
    }
561
}
562
563
/**
564
 * @method string getStrength()
565
 * @method string getResourceType()
566
 * @method string getImageURL()
567
 */
568
class FaceFilter extends Rpc
569
{
570
571
    /**
572
     * @param string $value
573
     *
574
     * @return $this
575
     */
576
    public function withStrength($value)
577
    {
578
        $this->data['Strength'] = $value;
579
        $this->options['form_params']['Strength'] = $value;
580
581
        return $this;
582
    }
583
584
    /**
585
     * @param string $value
586
     *
587
     * @return $this
588
     */
589
    public function withResourceType($value)
590
    {
591
        $this->data['ResourceType'] = $value;
592
        $this->options['form_params']['ResourceType'] = $value;
593
594
        return $this;
595
    }
596
597
    /**
598
     * @param string $value
599
     *
600
     * @return $this
601
     */
602
    public function withImageURL($value)
603
    {
604
        $this->data['ImageURL'] = $value;
605
        $this->options['form_params']['ImageURL'] = $value;
606
607
        return $this;
608
    }
609
}
610
611
/**
612
 * @method string getStrength()
613
 * @method string getMakeupType()
614
 * @method string getResourceType()
615
 * @method string getImageURL()
616
 */
617
class FaceMakeup extends Rpc
618
{
619
620
    /**
621
     * @param string $value
622
     *
623
     * @return $this
624
     */
625
    public function withStrength($value)
626
    {
627
        $this->data['Strength'] = $value;
628
        $this->options['form_params']['Strength'] = $value;
629
630
        return $this;
631
    }
632
633
    /**
634
     * @param string $value
635
     *
636
     * @return $this
637
     */
638
    public function withMakeupType($value)
639
    {
640
        $this->data['MakeupType'] = $value;
641
        $this->options['form_params']['MakeupType'] = $value;
642
643
        return $this;
644
    }
645
646
    /**
647
     * @param string $value
648
     *
649
     * @return $this
650
     */
651
    public function withResourceType($value)
652
    {
653
        $this->data['ResourceType'] = $value;
654
        $this->options['form_params']['ResourceType'] = $value;
655
656
        return $this;
657
    }
658
659
    /**
660
     * @param string $value
661
     *
662
     * @return $this
663
     */
664
    public function withImageURL($value)
665
    {
666
        $this->data['ImageURL'] = $value;
667
        $this->options['form_params']['ImageURL'] = $value;
668
669
        return $this;
670
    }
671
}
672
673
/**
674
 * @method string getShapeType()
675
 * @method string getStrength()
676
 * @method string getImageURL()
677
 */
678
class FaceTidyup extends Rpc
679
{
680
681
    /**
682
     * @param string $value
683
     *
684
     * @return $this
685
     */
686
    public function withShapeType($value)
687
    {
688
        $this->data['ShapeType'] = $value;
689
        $this->options['form_params']['ShapeType'] = $value;
690
691
        return $this;
692
    }
693
694
    /**
695
     * @param string $value
696
     *
697
     * @return $this
698
     */
699
    public function withStrength($value)
700
    {
701
        $this->data['Strength'] = $value;
702
        $this->options['form_params']['Strength'] = $value;
703
704
        return $this;
705
    }
706
707
    /**
708
     * @param string $value
709
     *
710
     * @return $this
711
     */
712
    public function withImageURL($value)
713
    {
714
        $this->data['ImageURL'] = $value;
715
        $this->options['form_params']['ImageURL'] = $value;
716
717
        return $this;
718
    }
719
}
720
721
/**
722
 * @method string getEntityId()
723
 * @method string getDbName()
724
 */
725
class GetFaceEntity extends Rpc
726
{
727
728
    /**
729
     * @param string $value
730
     *
731
     * @return $this
732
     */
733
    public function withEntityId($value)
734
    {
735
        $this->data['EntityId'] = $value;
736
        $this->options['form_params']['EntityId'] = $value;
737
738
        return $this;
739
    }
740
741
    /**
742
     * @param string $value
743
     *
744
     * @return $this
745
     */
746
    public function withDbName($value)
747
    {
748
        $this->data['DbName'] = $value;
749
        $this->options['form_params']['DbName'] = $value;
750
751
        return $this;
752
    }
753
}
754
755
/**
756
 * @method string getImageURL()
757
 */
758
class HandPosture extends Rpc
759
{
760
761
    /**
762
     * @param string $value
763
     *
764
     * @return $this
765
     */
766
    public function withImageURL($value)
767
    {
768
        $this->data['ImageURL'] = $value;
769
        $this->options['form_params']['ImageURL'] = $value;
770
771
        return $this;
772
    }
773
}
774
775
class ListFaceDbs extends Rpc
776
{
777
}
778
779
/**
780
 * @method string getEntityIdPrefix()
781
 * @method string getLimit()
782
 * @method string getOrder()
783
 * @method string getOffset()
784
 * @method string getToken()
785
 * @method string getLabels()
786
 * @method string getDbName()
787
 */
788
class ListFaceEntities extends Rpc
789
{
790
791
    /**
792
     * @param string $value
793
     *
794
     * @return $this
795
     */
796
    public function withEntityIdPrefix($value)
797
    {
798
        $this->data['EntityIdPrefix'] = $value;
799
        $this->options['form_params']['EntityIdPrefix'] = $value;
800
801
        return $this;
802
    }
803
804
    /**
805
     * @param string $value
806
     *
807
     * @return $this
808
     */
809
    public function withLimit($value)
810
    {
811
        $this->data['Limit'] = $value;
812
        $this->options['form_params']['Limit'] = $value;
813
814
        return $this;
815
    }
816
817
    /**
818
     * @param string $value
819
     *
820
     * @return $this
821
     */
822
    public function withOrder($value)
823
    {
824
        $this->data['Order'] = $value;
825
        $this->options['form_params']['Order'] = $value;
826
827
        return $this;
828
    }
829
830
    /**
831
     * @param string $value
832
     *
833
     * @return $this
834
     */
835
    public function withOffset($value)
836
    {
837
        $this->data['Offset'] = $value;
838
        $this->options['form_params']['Offset'] = $value;
839
840
        return $this;
841
    }
842
843
    /**
844
     * @param string $value
845
     *
846
     * @return $this
847
     */
848
    public function withToken($value)
849
    {
850
        $this->data['Token'] = $value;
851
        $this->options['form_params']['Token'] = $value;
852
853
        return $this;
854
    }
855
856
    /**
857
     * @param string $value
858
     *
859
     * @return $this
860
     */
861
    public function withLabels($value)
862
    {
863
        $this->data['Labels'] = $value;
864
        $this->options['form_params']['Labels'] = $value;
865
866
        return $this;
867
    }
868
869
    /**
870
     * @param string $value
871
     *
872
     * @return $this
873
     */
874
    public function withDbName($value)
875
    {
876
        $this->data['DbName'] = $value;
877
        $this->options['form_params']['DbName'] = $value;
878
879
        return $this;
880
    }
881
}
882
883
/**
884
 * @method string getImageURL()
885
 */
886
class RecognizeExpression extends Rpc
887
{
888
889
    /**
890
     * @param string $value
891
     *
892
     * @return $this
893
     */
894
    public function withImageURL($value)
895
    {
896
        $this->data['ImageURL'] = $value;
897
        $this->options['form_params']['ImageURL'] = $value;
898
899
        return $this;
900
    }
901
}
902
903
/**
904
 * @method string getImageType()
905
 * @method string getImageURL()
906
 */
907
class RecognizeFace extends Rpc
908
{
909
910
    /**
911
     * @param string $value
912
     *
913
     * @return $this
914
     */
915
    public function withImageType($value)
916
    {
917
        $this->data['ImageType'] = $value;
918
        $this->options['form_params']['ImageType'] = $value;
919
920
        return $this;
921
    }
922
923
    /**
924
     * @param string $value
925
     *
926
     * @return $this
927
     */
928
    public function withImageURL($value)
929
    {
930
        $this->data['ImageURL'] = $value;
931
        $this->options['form_params']['ImageURL'] = $value;
932
933
        return $this;
934
    }
935
}
936
937
/**
938
 * @method array getTask()
939
 */
940
class RecognizePublicFace extends Rpc
941
{
942
943
    /**
944
     * @param array $task
945
     *
946
     * @return $this
947
     */
948
	public function withTask(array $task)
949
	{
950
	    $this->data['Task'] = $task;
951
		foreach ($task as $depth1 => $depth1Value) {
952
			if(isset($depth1Value['ImageURL'])){
953
				$this->options['form_params']['Task.' . ($depth1 + 1) . '.ImageURL'] = $depth1Value['ImageURL'];
954
			}
955
		}
956
957
		return $this;
958
    }
959
}
960
961
/**
962
 * @method string getDbName()
963
 * @method string getImageUrl()
964
 * @method string getLimit()
965
 */
966
class SearchFace extends Rpc
967
{
968
969
    /**
970
     * @param string $value
971
     *
972
     * @return $this
973
     */
974
    public function withDbName($value)
975
    {
976
        $this->data['DbName'] = $value;
977
        $this->options['form_params']['DbName'] = $value;
978
979
        return $this;
980
    }
981
982
    /**
983
     * @param string $value
984
     *
985
     * @return $this
986
     */
987
    public function withImageUrl($value)
988
    {
989
        $this->data['ImageUrl'] = $value;
990
        $this->options['form_params']['ImageUrl'] = $value;
991
992
        return $this;
993
    }
994
995
    /**
996
     * @param string $value
997
     *
998
     * @return $this
999
     */
1000
    public function withLimit($value)
1001
    {
1002
        $this->data['Limit'] = $value;
1003
        $this->options['form_params']['Limit'] = $value;
1004
1005
        return $this;
1006
    }
1007
}
1008
1009
/**
1010
 * @method string getTargetImageURL()
1011
 * @method string getSourceImageURL()
1012
 * @method string getEditPart()
1013
 */
1014
class SwapFacialFeatures extends Rpc
1015
{
1016
1017
    /**
1018
     * @param string $value
1019
     *
1020
     * @return $this
1021
     */
1022
    public function withTargetImageURL($value)
1023
    {
1024
        $this->data['TargetImageURL'] = $value;
1025
        $this->options['form_params']['TargetImageURL'] = $value;
1026
1027
        return $this;
1028
    }
1029
1030
    /**
1031
     * @param string $value
1032
     *
1033
     * @return $this
1034
     */
1035
    public function withSourceImageURL($value)
1036
    {
1037
        $this->data['SourceImageURL'] = $value;
1038
        $this->options['form_params']['SourceImageURL'] = $value;
1039
1040
        return $this;
1041
    }
1042
1043
    /**
1044
     * @param string $value
1045
     *
1046
     * @return $this
1047
     */
1048
    public function withEditPart($value)
1049
    {
1050
        $this->data['EditPart'] = $value;
1051
        $this->options['form_params']['EditPart'] = $value;
1052
1053
        return $this;
1054
    }
1055
}
1056
1057
/**
1058
 * @method string getEntityId()
1059
 * @method string getLabels()
1060
 * @method string getDbName()
1061
 */
1062
class UpdateFaceEntity extends Rpc
1063
{
1064
1065
    /**
1066
     * @param string $value
1067
     *
1068
     * @return $this
1069
     */
1070
    public function withEntityId($value)
1071
    {
1072
        $this->data['EntityId'] = $value;
1073
        $this->options['form_params']['EntityId'] = $value;
1074
1075
        return $this;
1076
    }
1077
1078
    /**
1079
     * @param string $value
1080
     *
1081
     * @return $this
1082
     */
1083
    public function withLabels($value)
1084
    {
1085
        $this->data['Labels'] = $value;
1086
        $this->options['form_params']['Labels'] = $value;
1087
1088
        return $this;
1089
    }
1090
1091
    /**
1092
     * @param string $value
1093
     *
1094
     * @return $this
1095
     */
1096
    public function withDbName($value)
1097
    {
1098
        $this->data['DbName'] = $value;
1099
        $this->options['form_params']['DbName'] = $value;
1100
1101
        return $this;
1102
    }
1103
}
1104