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 ( e6613e...163ef4 )
by
unknown
10:00
created

GetPriceChEcom   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 7
c 1
b 0
f 0
dl 0
loc 27
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A withText() 0 6 1
A withServiceCode() 0 6 1
1
<?php
2
3
namespace AlibabaCloud\Alinlp\V20200629;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method ADClock aDClock(array $options = [])
9
 * @method ADMiniCog aDMiniCog(array $options = [])
10
 * @method ADMiniCogResult aDMiniCogResult(array $options = [])
11
 * @method ADMMU aDMMU(array $options = [])
12
 * @method GetBrandChEcom getBrandChEcom(array $options = [])
13
 * @method GetCateChEcom getCateChEcom(array $options = [])
14
 * @method GetCheckDuplicationChMedical getCheckDuplicationChMedical(array $options = [])
15
 * @method GetDiagnosisChMedical getDiagnosisChMedical(array $options = [])
16
 * @method GetDpChEcom getDpChEcom(array $options = [])
17
 * @method GetDpChGeneralCTB getDpChGeneralCTB(array $options = [])
18
 * @method GetDpChGeneralStanford getDpChGeneralStanford(array $options = [])
19
 * @method GetEcChGeneral getEcChGeneral(array $options = [])
20
 * @method GetEcEnGeneral getEcEnGeneral(array $options = [])
21
 * @method GetItemPubChEcom getItemPubChEcom(array $options = [])
22
 * @method GetKeywordChEcom getKeywordChEcom(array $options = [])
23
 * @method GetKeywordEnEcom getKeywordEnEcom(array $options = [])
24
 * @method GetMedicineChMedical getMedicineChMedical(array $options = [])
25
 * @method GetNerChEcom getNerChEcom(array $options = [])
26
 * @method GetNerChMedical getNerChMedical(array $options = [])
27
 * @method GetNerCustomizedChEcom getNerCustomizedChEcom(array $options = [])
28
 * @method GetNerCustomizedSeaEcom getNerCustomizedSeaEcom(array $options = [])
29
 * @method GetOperationChMedical getOperationChMedical(array $options = [])
30
 * @method GetPosChEcom getPosChEcom(array $options = [])
31
 * @method GetPosChGeneral getPosChGeneral(array $options = [])
32
 * @method GetPriceChEcom getPriceChEcom(array $options = [])
33
 * @method GetSaChGeneral getSaChGeneral(array $options = [])
34
 * @method GetSaSeaEcom getSaSeaEcom(array $options = [])
35
 * @method GetSimilarityChMedical getSimilarityChMedical(array $options = [])
36
 * @method GetSummaryChEcom getSummaryChEcom(array $options = [])
37
 * @method GetTableQAServiceInfoById getTableQAServiceInfoById(array $options = [])
38
 * @method GetTcChEcom getTcChEcom(array $options = [])
39
 * @method GetTcChGeneral getTcChGeneral(array $options = [])
40
 * @method GetTsChEcom getTsChEcom(array $options = [])
41
 * @method GetWeChComment getWeChComment(array $options = [])
42
 * @method GetWeChEcom getWeChEcom(array $options = [])
43
 * @method GetWeChEntertainment getWeChEntertainment(array $options = [])
44
 * @method GetWeChGeneral getWeChGeneral(array $options = [])
45
 * @method GetWeChSearch getWeChSearch(array $options = [])
46
 * @method GetWsChGeneral getWsChGeneral(array $options = [])
47
 * @method GetWsCustomizedChEcomComment getWsCustomizedChEcomComment(array $options = [])
48
 * @method GetWsCustomizedChEcomContent getWsCustomizedChEcomContent(array $options = [])
49
 * @method GetWsCustomizedChEcomTitle getWsCustomizedChEcomTitle(array $options = [])
50
 * @method GetWsCustomizedChEntertainment getWsCustomizedChEntertainment(array $options = [])
51
 * @method GetWsCustomizedChGeneral getWsCustomizedChGeneral(array $options = [])
52
 * @method GetWsCustomizedChO2O getWsCustomizedChO2O(array $options = [])
53
 * @method GetWsCustomizedSeaEcom getWsCustomizedSeaEcom(array $options = [])
54
 * @method GetWsCustomizedSeaGeneral getWsCustomizedSeaGeneral(array $options = [])
55
 * @method OpenAlinlpService openAlinlpService(array $options = [])
56
 * @method RequestTableQA requestTableQA(array $options = [])
57
 * @method RequestTableQAOnline requestTableQAOnline(array $options = [])
58
 */
59
class AlinlpApiResolver extends ApiResolver
60
{
61
}
62
63
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
64
{
65
    /** @var string */
66
    public $product = 'alinlp';
67
68
    /** @var string */
69
    public $version = '2020-06-29';
70
71
    /** @var string */
72
    public $method = 'POST';
73
}
74
75
/**
76
 * @method string getParams()
77
 * @method string getServiceCode()
78
 */
79
class ADClock extends Rpc
80
{
81
82
    /**
83
     * @param string $value
84
     *
85
     * @return $this
86
     */
87
    public function withParams($value)
88
    {
89
        $this->data['Params'] = $value;
90
        $this->options['form_params']['Params'] = $value;
91
92
        return $this;
93
    }
94
95
    /**
96
     * @param string $value
97
     *
98
     * @return $this
99
     */
100
    public function withServiceCode($value)
101
    {
102
        $this->data['ServiceCode'] = $value;
103
        $this->options['form_params']['ServiceCode'] = $value;
104
105
        return $this;
106
    }
107
}
108
109
/**
110
 * @method string getParams()
111
 * @method string getServiceCode()
112
 */
113
class ADMiniCog extends Rpc
114
{
115
116
    /**
117
     * @param string $value
118
     *
119
     * @return $this
120
     */
121
    public function withParams($value)
122
    {
123
        $this->data['Params'] = $value;
124
        $this->options['form_params']['Params'] = $value;
125
126
        return $this;
127
    }
128
129
    /**
130
     * @param string $value
131
     *
132
     * @return $this
133
     */
134
    public function withServiceCode($value)
135
    {
136
        $this->data['ServiceCode'] = $value;
137
        $this->options['form_params']['ServiceCode'] = $value;
138
139
        return $this;
140
    }
141
}
142
143
/**
144
 * @method string getParams()
145
 * @method string getServiceCode()
146
 */
147
class ADMiniCogResult extends Rpc
148
{
149
150
    /**
151
     * @param string $value
152
     *
153
     * @return $this
154
     */
155
    public function withParams($value)
156
    {
157
        $this->data['Params'] = $value;
158
        $this->options['form_params']['Params'] = $value;
159
160
        return $this;
161
    }
162
163
    /**
164
     * @param string $value
165
     *
166
     * @return $this
167
     */
168
    public function withServiceCode($value)
169
    {
170
        $this->data['ServiceCode'] = $value;
171
        $this->options['form_params']['ServiceCode'] = $value;
172
173
        return $this;
174
    }
175
}
176
177
/**
178
 * @method string getParams()
179
 * @method string getServiceCode()
180
 */
181
class ADMMU extends Rpc
182
{
183
184
    /**
185
     * @param string $value
186
     *
187
     * @return $this
188
     */
189
    public function withParams($value)
190
    {
191
        $this->data['Params'] = $value;
192
        $this->options['form_params']['Params'] = $value;
193
194
        return $this;
195
    }
196
197
    /**
198
     * @param string $value
199
     *
200
     * @return $this
201
     */
202
    public function withServiceCode($value)
203
    {
204
        $this->data['ServiceCode'] = $value;
205
        $this->options['form_params']['ServiceCode'] = $value;
206
207
        return $this;
208
    }
209
}
210
211
/**
212
 * @method string getServiceCode()
213
 * @method string getImageUrl()
214
 * @method string getText()
215
 */
216
class GetBrandChEcom extends Rpc
217
{
218
219
    /**
220
     * @param string $value
221
     *
222
     * @return $this
223
     */
224
    public function withServiceCode($value)
225
    {
226
        $this->data['ServiceCode'] = $value;
227
        $this->options['form_params']['ServiceCode'] = $value;
228
229
        return $this;
230
    }
231
232
    /**
233
     * @param string $value
234
     *
235
     * @return $this
236
     */
237
    public function withImageUrl($value)
238
    {
239
        $this->data['ImageUrl'] = $value;
240
        $this->options['form_params']['ImageUrl'] = $value;
241
242
        return $this;
243
    }
244
245
    /**
246
     * @param string $value
247
     *
248
     * @return $this
249
     */
250
    public function withText($value)
251
    {
252
        $this->data['Text'] = $value;
253
        $this->options['form_params']['Text'] = $value;
254
255
        return $this;
256
    }
257
}
258
259
/**
260
 * @method string getBusiness()
261
 * @method $this withBusiness($value)
262
 * @method string getServiceCode()
263
 * @method string getImageUrl()
264
 * @method string getText()
265
 */
266
class GetCateChEcom extends Rpc
267
{
268
269
    /**
270
     * @param string $value
271
     *
272
     * @return $this
273
     */
274
    public function withServiceCode($value)
275
    {
276
        $this->data['ServiceCode'] = $value;
277
        $this->options['form_params']['ServiceCode'] = $value;
278
279
        return $this;
280
    }
281
282
    /**
283
     * @param string $value
284
     *
285
     * @return $this
286
     */
287
    public function withImageUrl($value)
288
    {
289
        $this->data['ImageUrl'] = $value;
290
        $this->options['form_params']['ImageUrl'] = $value;
291
292
        return $this;
293
    }
294
295
    /**
296
     * @param string $value
297
     *
298
     * @return $this
299
     */
300
    public function withText($value)
301
    {
302
        $this->data['Text'] = $value;
303
        $this->options['form_params']['Text'] = $value;
304
305
        return $this;
306
    }
307
}
308
309
/**
310
 * @method string getServiceCode()
311
 * @method string getOriginT()
312
 * @method string getOriginQ()
313
 */
314
class GetCheckDuplicationChMedical extends Rpc
315
{
316
317
    /**
318
     * @param string $value
319
     *
320
     * @return $this
321
     */
322
    public function withServiceCode($value)
323
    {
324
        $this->data['ServiceCode'] = $value;
325
        $this->options['form_params']['ServiceCode'] = $value;
326
327
        return $this;
328
    }
329
330
    /**
331
     * @param string $value
332
     *
333
     * @return $this
334
     */
335
    public function withOriginT($value)
336
    {
337
        $this->data['OriginT'] = $value;
338
        $this->options['form_params']['OriginT'] = $value;
339
340
        return $this;
341
    }
342
343
    /**
344
     * @param string $value
345
     *
346
     * @return $this
347
     */
348
    public function withOriginQ($value)
349
    {
350
        $this->data['OriginQ'] = $value;
351
        $this->options['form_params']['OriginQ'] = $value;
352
353
        return $this;
354
    }
355
}
356
357
/**
358
 * @method string getServiceCode()
359
 * @method string getName()
360
 */
361
class GetDiagnosisChMedical extends Rpc
362
{
363
364
    /**
365
     * @param string $value
366
     *
367
     * @return $this
368
     */
369
    public function withServiceCode($value)
370
    {
371
        $this->data['ServiceCode'] = $value;
372
        $this->options['form_params']['ServiceCode'] = $value;
373
374
        return $this;
375
    }
376
377
    /**
378
     * @param string $value
379
     *
380
     * @return $this
381
     */
382
    public function withName($value)
383
    {
384
        $this->data['Name'] = $value;
385
        $this->options['form_params']['Name'] = $value;
386
387
        return $this;
388
    }
389
}
390
391
/**
392
 * @method string getServiceCode()
393
 * @method string getText()
394
 */
395
class GetDpChEcom extends Rpc
396
{
397
398
    /**
399
     * @param string $value
400
     *
401
     * @return $this
402
     */
403
    public function withServiceCode($value)
404
    {
405
        $this->data['ServiceCode'] = $value;
406
        $this->options['form_params']['ServiceCode'] = $value;
407
408
        return $this;
409
    }
410
411
    /**
412
     * @param string $value
413
     *
414
     * @return $this
415
     */
416
    public function withText($value)
417
    {
418
        $this->data['Text'] = $value;
419
        $this->options['form_params']['Text'] = $value;
420
421
        return $this;
422
    }
423
}
424
425
/**
426
 * @method string getServiceCode()
427
 * @method string getText()
428
 */
429
class GetDpChGeneralCTB extends Rpc
430
{
431
432
    /**
433
     * @param string $value
434
     *
435
     * @return $this
436
     */
437
    public function withServiceCode($value)
438
    {
439
        $this->data['ServiceCode'] = $value;
440
        $this->options['form_params']['ServiceCode'] = $value;
441
442
        return $this;
443
    }
444
445
    /**
446
     * @param string $value
447
     *
448
     * @return $this
449
     */
450
    public function withText($value)
451
    {
452
        $this->data['Text'] = $value;
453
        $this->options['form_params']['Text'] = $value;
454
455
        return $this;
456
    }
457
}
458
459
/**
460
 * @method string getServiceCode()
461
 * @method string getText()
462
 */
463
class GetDpChGeneralStanford extends Rpc
464
{
465
466
    /**
467
     * @param string $value
468
     *
469
     * @return $this
470
     */
471
    public function withServiceCode($value)
472
    {
473
        $this->data['ServiceCode'] = $value;
474
        $this->options['form_params']['ServiceCode'] = $value;
475
476
        return $this;
477
    }
478
479
    /**
480
     * @param string $value
481
     *
482
     * @return $this
483
     */
484
    public function withText($value)
485
    {
486
        $this->data['Text'] = $value;
487
        $this->options['form_params']['Text'] = $value;
488
489
        return $this;
490
    }
491
}
492
493
/**
494
 * @method string getServiceCode()
495
 * @method string getText()
496
 */
497
class GetEcChGeneral extends Rpc
498
{
499
500
    /**
501
     * @param string $value
502
     *
503
     * @return $this
504
     */
505
    public function withServiceCode($value)
506
    {
507
        $this->data['ServiceCode'] = $value;
508
        $this->options['form_params']['ServiceCode'] = $value;
509
510
        return $this;
511
    }
512
513
    /**
514
     * @param string $value
515
     *
516
     * @return $this
517
     */
518
    public function withText($value)
519
    {
520
        $this->data['Text'] = $value;
521
        $this->options['form_params']['Text'] = $value;
522
523
        return $this;
524
    }
525
}
526
527
/**
528
 * @method string getServiceCode()
529
 * @method string getText()
530
 */
531
class GetEcEnGeneral extends Rpc
532
{
533
534
    /**
535
     * @param string $value
536
     *
537
     * @return $this
538
     */
539
    public function withServiceCode($value)
540
    {
541
        $this->data['ServiceCode'] = $value;
542
        $this->options['form_params']['ServiceCode'] = $value;
543
544
        return $this;
545
    }
546
547
    /**
548
     * @param string $value
549
     *
550
     * @return $this
551
     */
552
    public function withText($value)
553
    {
554
        $this->data['Text'] = $value;
555
        $this->options['form_params']['Text'] = $value;
556
557
        return $this;
558
    }
559
}
560
561
/**
562
 * @method string getServiceCode()
563
 * @method string getImageUrl()
564
 * @method string getText()
565
 */
566
class GetItemPubChEcom extends Rpc
567
{
568
569
    /**
570
     * @param string $value
571
     *
572
     * @return $this
573
     */
574
    public function withServiceCode($value)
575
    {
576
        $this->data['ServiceCode'] = $value;
577
        $this->options['form_params']['ServiceCode'] = $value;
578
579
        return $this;
580
    }
581
582
    /**
583
     * @param string $value
584
     *
585
     * @return $this
586
     */
587
    public function withImageUrl($value)
588
    {
589
        $this->data['ImageUrl'] = $value;
590
        $this->options['form_params']['ImageUrl'] = $value;
591
592
        return $this;
593
    }
594
595
    /**
596
     * @param string $value
597
     *
598
     * @return $this
599
     */
600
    public function withText($value)
601
    {
602
        $this->data['Text'] = $value;
603
        $this->options['form_params']['Text'] = $value;
604
605
        return $this;
606
    }
607
}
608
609
/**
610
 * @method string getApiVersion()
611
 * @method string getServiceCode()
612
 * @method string getText()
613
 */
614
class GetKeywordChEcom extends Rpc
615
{
616
617
    /**
618
     * @param string $value
619
     *
620
     * @return $this
621
     */
622
    public function withApiVersion($value)
623
    {
624
        $this->data['ApiVersion'] = $value;
625
        $this->options['form_params']['ApiVersion'] = $value;
626
627
        return $this;
628
    }
629
630
    /**
631
     * @param string $value
632
     *
633
     * @return $this
634
     */
635
    public function withServiceCode($value)
636
    {
637
        $this->data['ServiceCode'] = $value;
638
        $this->options['form_params']['ServiceCode'] = $value;
639
640
        return $this;
641
    }
642
643
    /**
644
     * @param string $value
645
     *
646
     * @return $this
647
     */
648
    public function withText($value)
649
    {
650
        $this->data['Text'] = $value;
651
        $this->options['form_params']['Text'] = $value;
652
653
        return $this;
654
    }
655
}
656
657
/**
658
 * @method string getServiceCode()
659
 * @method string getText()
660
 */
661
class GetKeywordEnEcom extends Rpc
662
{
663
664
    /**
665
     * @param string $value
666
     *
667
     * @return $this
668
     */
669
    public function withServiceCode($value)
670
    {
671
        $this->data['ServiceCode'] = $value;
672
        $this->options['form_params']['ServiceCode'] = $value;
673
674
        return $this;
675
    }
676
677
    /**
678
     * @param string $value
679
     *
680
     * @return $this
681
     */
682
    public function withText($value)
683
    {
684
        $this->data['Text'] = $value;
685
        $this->options['form_params']['Text'] = $value;
686
687
        return $this;
688
    }
689
}
690
691
/**
692
 * @method string getFactory()
693
 * @method string getSpecification()
694
 * @method string getUnit()
695
 * @method string getServiceCode()
696
 * @method string getName()
697
 */
698
class GetMedicineChMedical extends Rpc
699
{
700
701
    /**
702
     * @param string $value
703
     *
704
     * @return $this
705
     */
706
    public function withFactory($value)
707
    {
708
        $this->data['Factory'] = $value;
709
        $this->options['form_params']['Factory'] = $value;
710
711
        return $this;
712
    }
713
714
    /**
715
     * @param string $value
716
     *
717
     * @return $this
718
     */
719
    public function withSpecification($value)
720
    {
721
        $this->data['Specification'] = $value;
722
        $this->options['form_params']['Specification'] = $value;
723
724
        return $this;
725
    }
726
727
    /**
728
     * @param string $value
729
     *
730
     * @return $this
731
     */
732
    public function withUnit($value)
733
    {
734
        $this->data['Unit'] = $value;
735
        $this->options['form_params']['Unit'] = $value;
736
737
        return $this;
738
    }
739
740
    /**
741
     * @param string $value
742
     *
743
     * @return $this
744
     */
745
    public function withServiceCode($value)
746
    {
747
        $this->data['ServiceCode'] = $value;
748
        $this->options['form_params']['ServiceCode'] = $value;
749
750
        return $this;
751
    }
752
753
    /**
754
     * @param string $value
755
     *
756
     * @return $this
757
     */
758
    public function withName($value)
759
    {
760
        $this->data['Name'] = $value;
761
        $this->options['form_params']['Name'] = $value;
762
763
        return $this;
764
    }
765
}
766
767
/**
768
 * @method string getLexerId()
769
 * @method string getServiceCode()
770
 * @method string getText()
771
 */
772
class GetNerChEcom extends Rpc
773
{
774
775
    /**
776
     * @param string $value
777
     *
778
     * @return $this
779
     */
780
    public function withLexerId($value)
781
    {
782
        $this->data['LexerId'] = $value;
783
        $this->options['form_params']['LexerId'] = $value;
784
785
        return $this;
786
    }
787
788
    /**
789
     * @param string $value
790
     *
791
     * @return $this
792
     */
793
    public function withServiceCode($value)
794
    {
795
        $this->data['ServiceCode'] = $value;
796
        $this->options['form_params']['ServiceCode'] = $value;
797
798
        return $this;
799
    }
800
801
    /**
802
     * @param string $value
803
     *
804
     * @return $this
805
     */
806
    public function withText($value)
807
    {
808
        $this->data['Text'] = $value;
809
        $this->options['form_params']['Text'] = $value;
810
811
        return $this;
812
    }
813
}
814
815
/**
816
 * @method string getServiceCode()
817
 * @method string getText()
818
 */
819
class GetNerChMedical extends Rpc
820
{
821
822
    /**
823
     * @param string $value
824
     *
825
     * @return $this
826
     */
827
    public function withServiceCode($value)
828
    {
829
        $this->data['ServiceCode'] = $value;
830
        $this->options['form_params']['ServiceCode'] = $value;
831
832
        return $this;
833
    }
834
835
    /**
836
     * @param string $value
837
     *
838
     * @return $this
839
     */
840
    public function withText($value)
841
    {
842
        $this->data['Text'] = $value;
843
        $this->options['form_params']['Text'] = $value;
844
845
        return $this;
846
    }
847
}
848
849
/**
850
 * @method string getLexerId()
851
 * @method string getServiceCode()
852
 * @method string getText()
853
 */
854
class GetNerCustomizedChEcom extends Rpc
855
{
856
857
    /**
858
     * @param string $value
859
     *
860
     * @return $this
861
     */
862
    public function withLexerId($value)
863
    {
864
        $this->data['LexerId'] = $value;
865
        $this->options['form_params']['LexerId'] = $value;
866
867
        return $this;
868
    }
869
870
    /**
871
     * @param string $value
872
     *
873
     * @return $this
874
     */
875
    public function withServiceCode($value)
876
    {
877
        $this->data['ServiceCode'] = $value;
878
        $this->options['form_params']['ServiceCode'] = $value;
879
880
        return $this;
881
    }
882
883
    /**
884
     * @param string $value
885
     *
886
     * @return $this
887
     */
888
    public function withText($value)
889
    {
890
        $this->data['Text'] = $value;
891
        $this->options['form_params']['Text'] = $value;
892
893
        return $this;
894
    }
895
}
896
897
/**
898
 * @method string getLanguage()
899
 * @method string getServiceCode()
900
 * @method string getText()
901
 */
902
class GetNerCustomizedSeaEcom extends Rpc
903
{
904
905
    /**
906
     * @param string $value
907
     *
908
     * @return $this
909
     */
910
    public function withLanguage($value)
911
    {
912
        $this->data['Language'] = $value;
913
        $this->options['form_params']['Language'] = $value;
914
915
        return $this;
916
    }
917
918
    /**
919
     * @param string $value
920
     *
921
     * @return $this
922
     */
923
    public function withServiceCode($value)
924
    {
925
        $this->data['ServiceCode'] = $value;
926
        $this->options['form_params']['ServiceCode'] = $value;
927
928
        return $this;
929
    }
930
931
    /**
932
     * @param string $value
933
     *
934
     * @return $this
935
     */
936
    public function withText($value)
937
    {
938
        $this->data['Text'] = $value;
939
        $this->options['form_params']['Text'] = $value;
940
941
        return $this;
942
    }
943
}
944
945
/**
946
 * @method string getServiceCode()
947
 * @method string getName()
948
 */
949
class GetOperationChMedical extends Rpc
950
{
951
952
    /**
953
     * @param string $value
954
     *
955
     * @return $this
956
     */
957
    public function withServiceCode($value)
958
    {
959
        $this->data['ServiceCode'] = $value;
960
        $this->options['form_params']['ServiceCode'] = $value;
961
962
        return $this;
963
    }
964
965
    /**
966
     * @param string $value
967
     *
968
     * @return $this
969
     */
970
    public function withName($value)
971
    {
972
        $this->data['Name'] = $value;
973
        $this->options['form_params']['Name'] = $value;
974
975
        return $this;
976
    }
977
}
978
979
/**
980
 * @method string getServiceCode()
981
 * @method string getTokenizerId()
982
 * @method string getText()
983
 * @method string getOutType()
984
 */
985
class GetPosChEcom extends Rpc
986
{
987
988
    /**
989
     * @param string $value
990
     *
991
     * @return $this
992
     */
993
    public function withServiceCode($value)
994
    {
995
        $this->data['ServiceCode'] = $value;
996
        $this->options['form_params']['ServiceCode'] = $value;
997
998
        return $this;
999
    }
1000
1001
    /**
1002
     * @param string $value
1003
     *
1004
     * @return $this
1005
     */
1006
    public function withTokenizerId($value)
1007
    {
1008
        $this->data['TokenizerId'] = $value;
1009
        $this->options['form_params']['TokenizerId'] = $value;
1010
1011
        return $this;
1012
    }
1013
1014
    /**
1015
     * @param string $value
1016
     *
1017
     * @return $this
1018
     */
1019
    public function withText($value)
1020
    {
1021
        $this->data['Text'] = $value;
1022
        $this->options['form_params']['Text'] = $value;
1023
1024
        return $this;
1025
    }
1026
1027
    /**
1028
     * @param string $value
1029
     *
1030
     * @return $this
1031
     */
1032
    public function withOutType($value)
1033
    {
1034
        $this->data['OutType'] = $value;
1035
        $this->options['form_params']['OutType'] = $value;
1036
1037
        return $this;
1038
    }
1039
}
1040
1041
/**
1042
 * @method string getServiceCode()
1043
 * @method string getTokenizerId()
1044
 * @method string getText()
1045
 * @method string getOutType()
1046
 */
1047
class GetPosChGeneral extends Rpc
1048
{
1049
1050
    /**
1051
     * @param string $value
1052
     *
1053
     * @return $this
1054
     */
1055
    public function withServiceCode($value)
1056
    {
1057
        $this->data['ServiceCode'] = $value;
1058
        $this->options['form_params']['ServiceCode'] = $value;
1059
1060
        return $this;
1061
    }
1062
1063
    /**
1064
     * @param string $value
1065
     *
1066
     * @return $this
1067
     */
1068
    public function withTokenizerId($value)
1069
    {
1070
        $this->data['TokenizerId'] = $value;
1071
        $this->options['form_params']['TokenizerId'] = $value;
1072
1073
        return $this;
1074
    }
1075
1076
    /**
1077
     * @param string $value
1078
     *
1079
     * @return $this
1080
     */
1081
    public function withText($value)
1082
    {
1083
        $this->data['Text'] = $value;
1084
        $this->options['form_params']['Text'] = $value;
1085
1086
        return $this;
1087
    }
1088
1089
    /**
1090
     * @param string $value
1091
     *
1092
     * @return $this
1093
     */
1094
    public function withOutType($value)
1095
    {
1096
        $this->data['OutType'] = $value;
1097
        $this->options['form_params']['OutType'] = $value;
1098
1099
        return $this;
1100
    }
1101
}
1102
1103
/**
1104
 * @method string getServiceCode()
1105
 * @method string getText()
1106
 */
1107
class GetPriceChEcom extends Rpc
1108
{
1109
1110
    /**
1111
     * @param string $value
1112
     *
1113
     * @return $this
1114
     */
1115
    public function withServiceCode($value)
1116
    {
1117
        $this->data['ServiceCode'] = $value;
1118
        $this->options['form_params']['ServiceCode'] = $value;
1119
1120
        return $this;
1121
    }
1122
1123
    /**
1124
     * @param string $value
1125
     *
1126
     * @return $this
1127
     */
1128
    public function withText($value)
1129
    {
1130
        $this->data['Text'] = $value;
1131
        $this->options['form_params']['Text'] = $value;
1132
1133
        return $this;
1134
    }
1135
}
1136
1137
/**
1138
 * @method string getServiceCode()
1139
 * @method string getText()
1140
 */
1141
class GetSaChGeneral extends Rpc
1142
{
1143
1144
    /**
1145
     * @param string $value
1146
     *
1147
     * @return $this
1148
     */
1149
    public function withServiceCode($value)
1150
    {
1151
        $this->data['ServiceCode'] = $value;
1152
        $this->options['form_params']['ServiceCode'] = $value;
1153
1154
        return $this;
1155
    }
1156
1157
    /**
1158
     * @param string $value
1159
     *
1160
     * @return $this
1161
     */
1162
    public function withText($value)
1163
    {
1164
        $this->data['Text'] = $value;
1165
        $this->options['form_params']['Text'] = $value;
1166
1167
        return $this;
1168
    }
1169
}
1170
1171
/**
1172
 * @method string getLanguage()
1173
 * @method string getServiceCode()
1174
 * @method string getText()
1175
 */
1176
class GetSaSeaEcom extends Rpc
1177
{
1178
1179
    /**
1180
     * @param string $value
1181
     *
1182
     * @return $this
1183
     */
1184
    public function withLanguage($value)
1185
    {
1186
        $this->data['Language'] = $value;
1187
        $this->options['form_params']['Language'] = $value;
1188
1189
        return $this;
1190
    }
1191
1192
    /**
1193
     * @param string $value
1194
     *
1195
     * @return $this
1196
     */
1197
    public function withServiceCode($value)
1198
    {
1199
        $this->data['ServiceCode'] = $value;
1200
        $this->options['form_params']['ServiceCode'] = $value;
1201
1202
        return $this;
1203
    }
1204
1205
    /**
1206
     * @param string $value
1207
     *
1208
     * @return $this
1209
     */
1210
    public function withText($value)
1211
    {
1212
        $this->data['Text'] = $value;
1213
        $this->options['form_params']['Text'] = $value;
1214
1215
        return $this;
1216
    }
1217
}
1218
1219
/**
1220
 * @method string getServiceCode()
1221
 * @method string getOriginT()
1222
 * @method string getOriginQ()
1223
 */
1224
class GetSimilarityChMedical extends Rpc
1225
{
1226
1227
    /**
1228
     * @param string $value
1229
     *
1230
     * @return $this
1231
     */
1232
    public function withServiceCode($value)
1233
    {
1234
        $this->data['ServiceCode'] = $value;
1235
        $this->options['form_params']['ServiceCode'] = $value;
1236
1237
        return $this;
1238
    }
1239
1240
    /**
1241
     * @param string $value
1242
     *
1243
     * @return $this
1244
     */
1245
    public function withOriginT($value)
1246
    {
1247
        $this->data['OriginT'] = $value;
1248
        $this->options['form_params']['OriginT'] = $value;
1249
1250
        return $this;
1251
    }
1252
1253
    /**
1254
     * @param string $value
1255
     *
1256
     * @return $this
1257
     */
1258
    public function withOriginQ($value)
1259
    {
1260
        $this->data['OriginQ'] = $value;
1261
        $this->options['form_params']['OriginQ'] = $value;
1262
1263
        return $this;
1264
    }
1265
}
1266
1267
/**
1268
 * @method string getServiceCode()
1269
 * @method string getText()
1270
 */
1271
class GetSummaryChEcom extends Rpc
1272
{
1273
1274
    /**
1275
     * @param string $value
1276
     *
1277
     * @return $this
1278
     */
1279
    public function withServiceCode($value)
1280
    {
1281
        $this->data['ServiceCode'] = $value;
1282
        $this->options['form_params']['ServiceCode'] = $value;
1283
1284
        return $this;
1285
    }
1286
1287
    /**
1288
     * @param string $value
1289
     *
1290
     * @return $this
1291
     */
1292
    public function withText($value)
1293
    {
1294
        $this->data['Text'] = $value;
1295
        $this->options['form_params']['Text'] = $value;
1296
1297
        return $this;
1298
    }
1299
}
1300
1301
/**
1302
 * @method string getServiceCode()
1303
 * @method string getServiceId()
1304
 */
1305
class GetTableQAServiceInfoById extends Rpc
1306
{
1307
1308
    /**
1309
     * @param string $value
1310
     *
1311
     * @return $this
1312
     */
1313
    public function withServiceCode($value)
1314
    {
1315
        $this->data['ServiceCode'] = $value;
1316
        $this->options['form_params']['ServiceCode'] = $value;
1317
1318
        return $this;
1319
    }
1320
1321
    /**
1322
     * @param string $value
1323
     *
1324
     * @return $this
1325
     */
1326
    public function withServiceId($value)
1327
    {
1328
        $this->data['ServiceId'] = $value;
1329
        $this->options['form_params']['ServiceId'] = $value;
1330
1331
        return $this;
1332
    }
1333
}
1334
1335
/**
1336
 * @method string getServiceCode()
1337
 * @method string getText()
1338
 */
1339
class GetTcChEcom extends Rpc
1340
{
1341
1342
    /**
1343
     * @param string $value
1344
     *
1345
     * @return $this
1346
     */
1347
    public function withServiceCode($value)
1348
    {
1349
        $this->data['ServiceCode'] = $value;
1350
        $this->options['form_params']['ServiceCode'] = $value;
1351
1352
        return $this;
1353
    }
1354
1355
    /**
1356
     * @param string $value
1357
     *
1358
     * @return $this
1359
     */
1360
    public function withText($value)
1361
    {
1362
        $this->data['Text'] = $value;
1363
        $this->options['form_params']['Text'] = $value;
1364
1365
        return $this;
1366
    }
1367
}
1368
1369
/**
1370
 * @method string getServiceCode()
1371
 * @method string getText()
1372
 */
1373
class GetTcChGeneral extends Rpc
1374
{
1375
1376
    /**
1377
     * @param string $value
1378
     *
1379
     * @return $this
1380
     */
1381
    public function withServiceCode($value)
1382
    {
1383
        $this->data['ServiceCode'] = $value;
1384
        $this->options['form_params']['ServiceCode'] = $value;
1385
1386
        return $this;
1387
    }
1388
1389
    /**
1390
     * @param string $value
1391
     *
1392
     * @return $this
1393
     */
1394
    public function withText($value)
1395
    {
1396
        $this->data['Text'] = $value;
1397
        $this->options['form_params']['Text'] = $value;
1398
1399
        return $this;
1400
    }
1401
}
1402
1403
/**
1404
 * @method string getType()
1405
 * @method string getServiceCode()
1406
 * @method string getOriginT()
1407
 * @method string getOriginQ()
1408
 */
1409
class GetTsChEcom extends Rpc
1410
{
1411
1412
    /**
1413
     * @param string $value
1414
     *
1415
     * @return $this
1416
     */
1417
    public function withType($value)
1418
    {
1419
        $this->data['Type'] = $value;
1420
        $this->options['form_params']['Type'] = $value;
1421
1422
        return $this;
1423
    }
1424
1425
    /**
1426
     * @param string $value
1427
     *
1428
     * @return $this
1429
     */
1430
    public function withServiceCode($value)
1431
    {
1432
        $this->data['ServiceCode'] = $value;
1433
        $this->options['form_params']['ServiceCode'] = $value;
1434
1435
        return $this;
1436
    }
1437
1438
    /**
1439
     * @param string $value
1440
     *
1441
     * @return $this
1442
     */
1443
    public function withOriginT($value)
1444
    {
1445
        $this->data['OriginT'] = $value;
1446
        $this->options['form_params']['OriginT'] = $value;
1447
1448
        return $this;
1449
    }
1450
1451
    /**
1452
     * @param string $value
1453
     *
1454
     * @return $this
1455
     */
1456
    public function withOriginQ($value)
1457
    {
1458
        $this->data['OriginQ'] = $value;
1459
        $this->options['form_params']['OriginQ'] = $value;
1460
1461
        return $this;
1462
    }
1463
}
1464
1465
/**
1466
 * @method string getType()
1467
 * @method string getServiceCode()
1468
 * @method string getSize()
1469
 * @method string getTokenizerId()
1470
 * @method string getText()
1471
 * @method string getOperation()
1472
 */
1473
class GetWeChComment extends Rpc
1474
{
1475
1476
    /**
1477
     * @param string $value
1478
     *
1479
     * @return $this
1480
     */
1481
    public function withType($value)
1482
    {
1483
        $this->data['Type'] = $value;
1484
        $this->options['form_params']['Type'] = $value;
1485
1486
        return $this;
1487
    }
1488
1489
    /**
1490
     * @param string $value
1491
     *
1492
     * @return $this
1493
     */
1494
    public function withServiceCode($value)
1495
    {
1496
        $this->data['ServiceCode'] = $value;
1497
        $this->options['form_params']['ServiceCode'] = $value;
1498
1499
        return $this;
1500
    }
1501
1502
    /**
1503
     * @param string $value
1504
     *
1505
     * @return $this
1506
     */
1507
    public function withSize($value)
1508
    {
1509
        $this->data['Size'] = $value;
1510
        $this->options['form_params']['Size'] = $value;
1511
1512
        return $this;
1513
    }
1514
1515
    /**
1516
     * @param string $value
1517
     *
1518
     * @return $this
1519
     */
1520
    public function withTokenizerId($value)
1521
    {
1522
        $this->data['TokenizerId'] = $value;
1523
        $this->options['form_params']['TokenizerId'] = $value;
1524
1525
        return $this;
1526
    }
1527
1528
    /**
1529
     * @param string $value
1530
     *
1531
     * @return $this
1532
     */
1533
    public function withText($value)
1534
    {
1535
        $this->data['Text'] = $value;
1536
        $this->options['form_params']['Text'] = $value;
1537
1538
        return $this;
1539
    }
1540
1541
    /**
1542
     * @param string $value
1543
     *
1544
     * @return $this
1545
     */
1546
    public function withOperation($value)
1547
    {
1548
        $this->data['Operation'] = $value;
1549
        $this->options['form_params']['Operation'] = $value;
1550
1551
        return $this;
1552
    }
1553
}
1554
1555
/**
1556
 * @method string getType()
1557
 * @method string getServiceCode()
1558
 * @method string getSize()
1559
 * @method string getTokenizerId()
1560
 * @method string getText()
1561
 * @method string getOperation()
1562
 */
1563
class GetWeChEcom extends Rpc
1564
{
1565
1566
    /**
1567
     * @param string $value
1568
     *
1569
     * @return $this
1570
     */
1571
    public function withType($value)
1572
    {
1573
        $this->data['Type'] = $value;
1574
        $this->options['form_params']['Type'] = $value;
1575
1576
        return $this;
1577
    }
1578
1579
    /**
1580
     * @param string $value
1581
     *
1582
     * @return $this
1583
     */
1584
    public function withServiceCode($value)
1585
    {
1586
        $this->data['ServiceCode'] = $value;
1587
        $this->options['form_params']['ServiceCode'] = $value;
1588
1589
        return $this;
1590
    }
1591
1592
    /**
1593
     * @param string $value
1594
     *
1595
     * @return $this
1596
     */
1597
    public function withSize($value)
1598
    {
1599
        $this->data['Size'] = $value;
1600
        $this->options['form_params']['Size'] = $value;
1601
1602
        return $this;
1603
    }
1604
1605
    /**
1606
     * @param string $value
1607
     *
1608
     * @return $this
1609
     */
1610
    public function withTokenizerId($value)
1611
    {
1612
        $this->data['TokenizerId'] = $value;
1613
        $this->options['form_params']['TokenizerId'] = $value;
1614
1615
        return $this;
1616
    }
1617
1618
    /**
1619
     * @param string $value
1620
     *
1621
     * @return $this
1622
     */
1623
    public function withText($value)
1624
    {
1625
        $this->data['Text'] = $value;
1626
        $this->options['form_params']['Text'] = $value;
1627
1628
        return $this;
1629
    }
1630
1631
    /**
1632
     * @param string $value
1633
     *
1634
     * @return $this
1635
     */
1636
    public function withOperation($value)
1637
    {
1638
        $this->data['Operation'] = $value;
1639
        $this->options['form_params']['Operation'] = $value;
1640
1641
        return $this;
1642
    }
1643
}
1644
1645
/**
1646
 * @method string getType()
1647
 * @method string getServiceCode()
1648
 * @method string getSize()
1649
 * @method string getTokenizerId()
1650
 * @method string getText()
1651
 * @method string getOperation()
1652
 */
1653
class GetWeChEntertainment extends Rpc
1654
{
1655
1656
    /**
1657
     * @param string $value
1658
     *
1659
     * @return $this
1660
     */
1661
    public function withType($value)
1662
    {
1663
        $this->data['Type'] = $value;
1664
        $this->options['form_params']['Type'] = $value;
1665
1666
        return $this;
1667
    }
1668
1669
    /**
1670
     * @param string $value
1671
     *
1672
     * @return $this
1673
     */
1674
    public function withServiceCode($value)
1675
    {
1676
        $this->data['ServiceCode'] = $value;
1677
        $this->options['form_params']['ServiceCode'] = $value;
1678
1679
        return $this;
1680
    }
1681
1682
    /**
1683
     * @param string $value
1684
     *
1685
     * @return $this
1686
     */
1687
    public function withSize($value)
1688
    {
1689
        $this->data['Size'] = $value;
1690
        $this->options['form_params']['Size'] = $value;
1691
1692
        return $this;
1693
    }
1694
1695
    /**
1696
     * @param string $value
1697
     *
1698
     * @return $this
1699
     */
1700
    public function withTokenizerId($value)
1701
    {
1702
        $this->data['TokenizerId'] = $value;
1703
        $this->options['form_params']['TokenizerId'] = $value;
1704
1705
        return $this;
1706
    }
1707
1708
    /**
1709
     * @param string $value
1710
     *
1711
     * @return $this
1712
     */
1713
    public function withText($value)
1714
    {
1715
        $this->data['Text'] = $value;
1716
        $this->options['form_params']['Text'] = $value;
1717
1718
        return $this;
1719
    }
1720
1721
    /**
1722
     * @param string $value
1723
     *
1724
     * @return $this
1725
     */
1726
    public function withOperation($value)
1727
    {
1728
        $this->data['Operation'] = $value;
1729
        $this->options['form_params']['Operation'] = $value;
1730
1731
        return $this;
1732
    }
1733
}
1734
1735
/**
1736
 * @method string getType()
1737
 * @method string getServiceCode()
1738
 * @method string getSize()
1739
 * @method string getText()
1740
 * @method string getOperation()
1741
 */
1742
class GetWeChGeneral extends Rpc
1743
{
1744
1745
    /**
1746
     * @param string $value
1747
     *
1748
     * @return $this
1749
     */
1750
    public function withType($value)
1751
    {
1752
        $this->data['Type'] = $value;
1753
        $this->options['form_params']['Type'] = $value;
1754
1755
        return $this;
1756
    }
1757
1758
    /**
1759
     * @param string $value
1760
     *
1761
     * @return $this
1762
     */
1763
    public function withServiceCode($value)
1764
    {
1765
        $this->data['ServiceCode'] = $value;
1766
        $this->options['form_params']['ServiceCode'] = $value;
1767
1768
        return $this;
1769
    }
1770
1771
    /**
1772
     * @param string $value
1773
     *
1774
     * @return $this
1775
     */
1776
    public function withSize($value)
1777
    {
1778
        $this->data['Size'] = $value;
1779
        $this->options['form_params']['Size'] = $value;
1780
1781
        return $this;
1782
    }
1783
1784
    /**
1785
     * @param string $value
1786
     *
1787
     * @return $this
1788
     */
1789
    public function withText($value)
1790
    {
1791
        $this->data['Text'] = $value;
1792
        $this->options['form_params']['Text'] = $value;
1793
1794
        return $this;
1795
    }
1796
1797
    /**
1798
     * @param string $value
1799
     *
1800
     * @return $this
1801
     */
1802
    public function withOperation($value)
1803
    {
1804
        $this->data['Operation'] = $value;
1805
        $this->options['form_params']['Operation'] = $value;
1806
1807
        return $this;
1808
    }
1809
}
1810
1811
/**
1812
 * @method string getType()
1813
 * @method string getServiceCode()
1814
 * @method string getSize()
1815
 * @method string getTokenizerId()
1816
 * @method string getText()
1817
 * @method string getOperation()
1818
 */
1819
class GetWeChSearch extends Rpc
1820
{
1821
1822
    /**
1823
     * @param string $value
1824
     *
1825
     * @return $this
1826
     */
1827
    public function withType($value)
1828
    {
1829
        $this->data['Type'] = $value;
1830
        $this->options['form_params']['Type'] = $value;
1831
1832
        return $this;
1833
    }
1834
1835
    /**
1836
     * @param string $value
1837
     *
1838
     * @return $this
1839
     */
1840
    public function withServiceCode($value)
1841
    {
1842
        $this->data['ServiceCode'] = $value;
1843
        $this->options['form_params']['ServiceCode'] = $value;
1844
1845
        return $this;
1846
    }
1847
1848
    /**
1849
     * @param string $value
1850
     *
1851
     * @return $this
1852
     */
1853
    public function withSize($value)
1854
    {
1855
        $this->data['Size'] = $value;
1856
        $this->options['form_params']['Size'] = $value;
1857
1858
        return $this;
1859
    }
1860
1861
    /**
1862
     * @param string $value
1863
     *
1864
     * @return $this
1865
     */
1866
    public function withTokenizerId($value)
1867
    {
1868
        $this->data['TokenizerId'] = $value;
1869
        $this->options['form_params']['TokenizerId'] = $value;
1870
1871
        return $this;
1872
    }
1873
1874
    /**
1875
     * @param string $value
1876
     *
1877
     * @return $this
1878
     */
1879
    public function withText($value)
1880
    {
1881
        $this->data['Text'] = $value;
1882
        $this->options['form_params']['Text'] = $value;
1883
1884
        return $this;
1885
    }
1886
1887
    /**
1888
     * @param string $value
1889
     *
1890
     * @return $this
1891
     */
1892
    public function withOperation($value)
1893
    {
1894
        $this->data['Operation'] = $value;
1895
        $this->options['form_params']['Operation'] = $value;
1896
1897
        return $this;
1898
    }
1899
}
1900
1901
/**
1902
 * @method string getServiceCode()
1903
 * @method string getTokenizerId()
1904
 * @method string getText()
1905
 * @method string getOutType()
1906
 */
1907
class GetWsChGeneral extends Rpc
1908
{
1909
1910
    /**
1911
     * @param string $value
1912
     *
1913
     * @return $this
1914
     */
1915
    public function withServiceCode($value)
1916
    {
1917
        $this->data['ServiceCode'] = $value;
1918
        $this->options['form_params']['ServiceCode'] = $value;
1919
1920
        return $this;
1921
    }
1922
1923
    /**
1924
     * @param string $value
1925
     *
1926
     * @return $this
1927
     */
1928
    public function withTokenizerId($value)
1929
    {
1930
        $this->data['TokenizerId'] = $value;
1931
        $this->options['form_params']['TokenizerId'] = $value;
1932
1933
        return $this;
1934
    }
1935
1936
    /**
1937
     * @param string $value
1938
     *
1939
     * @return $this
1940
     */
1941
    public function withText($value)
1942
    {
1943
        $this->data['Text'] = $value;
1944
        $this->options['form_params']['Text'] = $value;
1945
1946
        return $this;
1947
    }
1948
1949
    /**
1950
     * @param string $value
1951
     *
1952
     * @return $this
1953
     */
1954
    public function withOutType($value)
1955
    {
1956
        $this->data['OutType'] = $value;
1957
        $this->options['form_params']['OutType'] = $value;
1958
1959
        return $this;
1960
    }
1961
}
1962
1963
/**
1964
 * @method string getServiceCode()
1965
 * @method string getTokenizerId()
1966
 * @method string getText()
1967
 * @method string getOutType()
1968
 */
1969
class GetWsCustomizedChEcomComment extends Rpc
1970
{
1971
1972
    /**
1973
     * @param string $value
1974
     *
1975
     * @return $this
1976
     */
1977
    public function withServiceCode($value)
1978
    {
1979
        $this->data['ServiceCode'] = $value;
1980
        $this->options['form_params']['ServiceCode'] = $value;
1981
1982
        return $this;
1983
    }
1984
1985
    /**
1986
     * @param string $value
1987
     *
1988
     * @return $this
1989
     */
1990
    public function withTokenizerId($value)
1991
    {
1992
        $this->data['TokenizerId'] = $value;
1993
        $this->options['form_params']['TokenizerId'] = $value;
1994
1995
        return $this;
1996
    }
1997
1998
    /**
1999
     * @param string $value
2000
     *
2001
     * @return $this
2002
     */
2003
    public function withText($value)
2004
    {
2005
        $this->data['Text'] = $value;
2006
        $this->options['form_params']['Text'] = $value;
2007
2008
        return $this;
2009
    }
2010
2011
    /**
2012
     * @param string $value
2013
     *
2014
     * @return $this
2015
     */
2016
    public function withOutType($value)
2017
    {
2018
        $this->data['OutType'] = $value;
2019
        $this->options['form_params']['OutType'] = $value;
2020
2021
        return $this;
2022
    }
2023
}
2024
2025
/**
2026
 * @method string getServiceCode()
2027
 * @method string getTokenizerId()
2028
 * @method string getText()
2029
 * @method string getOutType()
2030
 */
2031
class GetWsCustomizedChEcomContent extends Rpc
2032
{
2033
2034
    /**
2035
     * @param string $value
2036
     *
2037
     * @return $this
2038
     */
2039
    public function withServiceCode($value)
2040
    {
2041
        $this->data['ServiceCode'] = $value;
2042
        $this->options['form_params']['ServiceCode'] = $value;
2043
2044
        return $this;
2045
    }
2046
2047
    /**
2048
     * @param string $value
2049
     *
2050
     * @return $this
2051
     */
2052
    public function withTokenizerId($value)
2053
    {
2054
        $this->data['TokenizerId'] = $value;
2055
        $this->options['form_params']['TokenizerId'] = $value;
2056
2057
        return $this;
2058
    }
2059
2060
    /**
2061
     * @param string $value
2062
     *
2063
     * @return $this
2064
     */
2065
    public function withText($value)
2066
    {
2067
        $this->data['Text'] = $value;
2068
        $this->options['form_params']['Text'] = $value;
2069
2070
        return $this;
2071
    }
2072
2073
    /**
2074
     * @param string $value
2075
     *
2076
     * @return $this
2077
     */
2078
    public function withOutType($value)
2079
    {
2080
        $this->data['OutType'] = $value;
2081
        $this->options['form_params']['OutType'] = $value;
2082
2083
        return $this;
2084
    }
2085
}
2086
2087
/**
2088
 * @method string getServiceCode()
2089
 * @method string getTokenizerId()
2090
 * @method string getText()
2091
 * @method string getOutType()
2092
 */
2093
class GetWsCustomizedChEcomTitle extends Rpc
2094
{
2095
2096
    /**
2097
     * @param string $value
2098
     *
2099
     * @return $this
2100
     */
2101
    public function withServiceCode($value)
2102
    {
2103
        $this->data['ServiceCode'] = $value;
2104
        $this->options['form_params']['ServiceCode'] = $value;
2105
2106
        return $this;
2107
    }
2108
2109
    /**
2110
     * @param string $value
2111
     *
2112
     * @return $this
2113
     */
2114
    public function withTokenizerId($value)
2115
    {
2116
        $this->data['TokenizerId'] = $value;
2117
        $this->options['form_params']['TokenizerId'] = $value;
2118
2119
        return $this;
2120
    }
2121
2122
    /**
2123
     * @param string $value
2124
     *
2125
     * @return $this
2126
     */
2127
    public function withText($value)
2128
    {
2129
        $this->data['Text'] = $value;
2130
        $this->options['form_params']['Text'] = $value;
2131
2132
        return $this;
2133
    }
2134
2135
    /**
2136
     * @param string $value
2137
     *
2138
     * @return $this
2139
     */
2140
    public function withOutType($value)
2141
    {
2142
        $this->data['OutType'] = $value;
2143
        $this->options['form_params']['OutType'] = $value;
2144
2145
        return $this;
2146
    }
2147
}
2148
2149
/**
2150
 * @method string getServiceCode()
2151
 * @method string getTokenizerId()
2152
 * @method string getText()
2153
 * @method string getOutType()
2154
 */
2155
class GetWsCustomizedChEntertainment extends Rpc
2156
{
2157
2158
    /**
2159
     * @param string $value
2160
     *
2161
     * @return $this
2162
     */
2163
    public function withServiceCode($value)
2164
    {
2165
        $this->data['ServiceCode'] = $value;
2166
        $this->options['form_params']['ServiceCode'] = $value;
2167
2168
        return $this;
2169
    }
2170
2171
    /**
2172
     * @param string $value
2173
     *
2174
     * @return $this
2175
     */
2176
    public function withTokenizerId($value)
2177
    {
2178
        $this->data['TokenizerId'] = $value;
2179
        $this->options['form_params']['TokenizerId'] = $value;
2180
2181
        return $this;
2182
    }
2183
2184
    /**
2185
     * @param string $value
2186
     *
2187
     * @return $this
2188
     */
2189
    public function withText($value)
2190
    {
2191
        $this->data['Text'] = $value;
2192
        $this->options['form_params']['Text'] = $value;
2193
2194
        return $this;
2195
    }
2196
2197
    /**
2198
     * @param string $value
2199
     *
2200
     * @return $this
2201
     */
2202
    public function withOutType($value)
2203
    {
2204
        $this->data['OutType'] = $value;
2205
        $this->options['form_params']['OutType'] = $value;
2206
2207
        return $this;
2208
    }
2209
}
2210
2211
/**
2212
 * @method string getServiceCode()
2213
 * @method string getTokenizerId()
2214
 * @method string getText()
2215
 * @method string getOutType()
2216
 */
2217
class GetWsCustomizedChGeneral extends Rpc
2218
{
2219
2220
    /**
2221
     * @param string $value
2222
     *
2223
     * @return $this
2224
     */
2225
    public function withServiceCode($value)
2226
    {
2227
        $this->data['ServiceCode'] = $value;
2228
        $this->options['form_params']['ServiceCode'] = $value;
2229
2230
        return $this;
2231
    }
2232
2233
    /**
2234
     * @param string $value
2235
     *
2236
     * @return $this
2237
     */
2238
    public function withTokenizerId($value)
2239
    {
2240
        $this->data['TokenizerId'] = $value;
2241
        $this->options['form_params']['TokenizerId'] = $value;
2242
2243
        return $this;
2244
    }
2245
2246
    /**
2247
     * @param string $value
2248
     *
2249
     * @return $this
2250
     */
2251
    public function withText($value)
2252
    {
2253
        $this->data['Text'] = $value;
2254
        $this->options['form_params']['Text'] = $value;
2255
2256
        return $this;
2257
    }
2258
2259
    /**
2260
     * @param string $value
2261
     *
2262
     * @return $this
2263
     */
2264
    public function withOutType($value)
2265
    {
2266
        $this->data['OutType'] = $value;
2267
        $this->options['form_params']['OutType'] = $value;
2268
2269
        return $this;
2270
    }
2271
}
2272
2273
/**
2274
 * @method string getServiceCode()
2275
 * @method string getTokenizerId()
2276
 * @method string getText()
2277
 * @method string getOutType()
2278
 */
2279
class GetWsCustomizedChO2O extends Rpc
2280
{
2281
2282
    /**
2283
     * @param string $value
2284
     *
2285
     * @return $this
2286
     */
2287
    public function withServiceCode($value)
2288
    {
2289
        $this->data['ServiceCode'] = $value;
2290
        $this->options['form_params']['ServiceCode'] = $value;
2291
2292
        return $this;
2293
    }
2294
2295
    /**
2296
     * @param string $value
2297
     *
2298
     * @return $this
2299
     */
2300
    public function withTokenizerId($value)
2301
    {
2302
        $this->data['TokenizerId'] = $value;
2303
        $this->options['form_params']['TokenizerId'] = $value;
2304
2305
        return $this;
2306
    }
2307
2308
    /**
2309
     * @param string $value
2310
     *
2311
     * @return $this
2312
     */
2313
    public function withText($value)
2314
    {
2315
        $this->data['Text'] = $value;
2316
        $this->options['form_params']['Text'] = $value;
2317
2318
        return $this;
2319
    }
2320
2321
    /**
2322
     * @param string $value
2323
     *
2324
     * @return $this
2325
     */
2326
    public function withOutType($value)
2327
    {
2328
        $this->data['OutType'] = $value;
2329
        $this->options['form_params']['OutType'] = $value;
2330
2331
        return $this;
2332
    }
2333
}
2334
2335
/**
2336
 * @method string getLanguage()
2337
 * @method string getServiceCode()
2338
 * @method string getText()
2339
 */
2340
class GetWsCustomizedSeaEcom extends Rpc
2341
{
2342
2343
    /**
2344
     * @param string $value
2345
     *
2346
     * @return $this
2347
     */
2348
    public function withLanguage($value)
2349
    {
2350
        $this->data['Language'] = $value;
2351
        $this->options['form_params']['Language'] = $value;
2352
2353
        return $this;
2354
    }
2355
2356
    /**
2357
     * @param string $value
2358
     *
2359
     * @return $this
2360
     */
2361
    public function withServiceCode($value)
2362
    {
2363
        $this->data['ServiceCode'] = $value;
2364
        $this->options['form_params']['ServiceCode'] = $value;
2365
2366
        return $this;
2367
    }
2368
2369
    /**
2370
     * @param string $value
2371
     *
2372
     * @return $this
2373
     */
2374
    public function withText($value)
2375
    {
2376
        $this->data['Text'] = $value;
2377
        $this->options['form_params']['Text'] = $value;
2378
2379
        return $this;
2380
    }
2381
}
2382
2383
/**
2384
 * @method string getLanguage()
2385
 * @method string getServiceCode()
2386
 * @method string getText()
2387
 */
2388
class GetWsCustomizedSeaGeneral extends Rpc
2389
{
2390
2391
    /**
2392
     * @param string $value
2393
     *
2394
     * @return $this
2395
     */
2396
    public function withLanguage($value)
2397
    {
2398
        $this->data['Language'] = $value;
2399
        $this->options['form_params']['Language'] = $value;
2400
2401
        return $this;
2402
    }
2403
2404
    /**
2405
     * @param string $value
2406
     *
2407
     * @return $this
2408
     */
2409
    public function withServiceCode($value)
2410
    {
2411
        $this->data['ServiceCode'] = $value;
2412
        $this->options['form_params']['ServiceCode'] = $value;
2413
2414
        return $this;
2415
    }
2416
2417
    /**
2418
     * @param string $value
2419
     *
2420
     * @return $this
2421
     */
2422
    public function withText($value)
2423
    {
2424
        $this->data['Text'] = $value;
2425
        $this->options['form_params']['Text'] = $value;
2426
2427
        return $this;
2428
    }
2429
}
2430
2431
class OpenAlinlpService extends Rpc
2432
{
2433
}
2434
2435
/**
2436
 * @method string getParams()
2437
 * @method string getServiceCode()
2438
 */
2439
class RequestTableQA extends Rpc
2440
{
2441
2442
    /**
2443
     * @param string $value
2444
     *
2445
     * @return $this
2446
     */
2447
    public function withParams($value)
2448
    {
2449
        $this->data['Params'] = $value;
2450
        $this->options['form_params']['Params'] = $value;
2451
2452
        return $this;
2453
    }
2454
2455
    /**
2456
     * @param string $value
2457
     *
2458
     * @return $this
2459
     */
2460
    public function withServiceCode($value)
2461
    {
2462
        $this->data['ServiceCode'] = $value;
2463
        $this->options['form_params']['ServiceCode'] = $value;
2464
2465
        return $this;
2466
    }
2467
}
2468
2469
/**
2470
 * @method string getQuestion()
2471
 * @method string getParams()
2472
 * @method string getServiceCode()
2473
 * @method string getBotId()
2474
 */
2475
class RequestTableQAOnline extends Rpc
2476
{
2477
2478
    /**
2479
     * @param string $value
2480
     *
2481
     * @return $this
2482
     */
2483
    public function withQuestion($value)
2484
    {
2485
        $this->data['Question'] = $value;
2486
        $this->options['form_params']['Question'] = $value;
2487
2488
        return $this;
2489
    }
2490
2491
    /**
2492
     * @param string $value
2493
     *
2494
     * @return $this
2495
     */
2496
    public function withParams($value)
2497
    {
2498
        $this->data['Params'] = $value;
2499
        $this->options['form_params']['Params'] = $value;
2500
2501
        return $this;
2502
    }
2503
2504
    /**
2505
     * @param string $value
2506
     *
2507
     * @return $this
2508
     */
2509
    public function withServiceCode($value)
2510
    {
2511
        $this->data['ServiceCode'] = $value;
2512
        $this->options['form_params']['ServiceCode'] = $value;
2513
2514
        return $this;
2515
    }
2516
2517
    /**
2518
     * @param string $value
2519
     *
2520
     * @return $this
2521
     */
2522
    public function withBotId($value)
2523
    {
2524
        $this->data['BotId'] = $value;
2525
        $this->options['form_params']['BotId'] = $value;
2526
2527
        return $this;
2528
    }
2529
}
2530