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 ( c8b8a2...1f1cfd )
by
unknown
14:57 queued 05:41
created

GenerateUploadUrl::withProxyOriginalSourceIp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\VoiceNavigator\V20180612;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AssociateChatbotInstance associateChatbotInstance(array $options = [])
9
 * @method AuditTTSVoice auditTTSVoice(array $options = [])
10
 * @method BeginDialogue beginDialogue(array $options = [])
11
 * @method CollectedNumber collectedNumber(array $options = [])
12
 * @method CreateDownloadUrl createDownloadUrl(array $options = [])
13
 * @method CreateInstance createInstance(array $options = [])
14
 * @method DebugBeginDialogue debugBeginDialogue(array $options = [])
15
 * @method DebugCollectedNumber debugCollectedNumber(array $options = [])
16
 * @method DebugDialogue debugDialogue(array $options = [])
17
 * @method DeleteInstance deleteInstance(array $options = [])
18
 * @method DescribeConversation describeConversation(array $options = [])
19
 * @method DescribeConversationContext describeConversationContext(array $options = [])
20
 * @method DescribeExportProgress describeExportProgress(array $options = [])
21
 * @method DescribeInstance describeInstance(array $options = [])
22
 * @method DescribeNavigationConfig describeNavigationConfig(array $options = [])
23
 * @method DescribeRecording describeRecording(array $options = [])
24
 * @method DescribeStatisticalData describeStatisticalData(array $options = [])
25
 * @method DescribeTTSConfig describeTTSConfig(array $options = [])
26
 * @method Dialogue dialogue(array $options = [])
27
 * @method DisableInstance disableInstance(array $options = [])
28
 * @method EnableInstance enableInstance(array $options = [])
29
 * @method EndDialogue endDialogue(array $options = [])
30
 * @method ExportConversationDetails exportConversationDetails(array $options = [])
31
 * @method ExportStatisticalData exportStatisticalData(array $options = [])
32
 * @method GenerateUploadUrl generateUploadUrl(array $options = [])
33
 * @method GetAsrConfig getAsrConfig(array $options = [])
34
 * @method ListChatbotInstances listChatbotInstances(array $options = [])
35
 * @method ListConversationDetails listConversationDetails(array $options = [])
36
 * @method ListConversations listConversations(array $options = [])
37
 * @method ListDownloadTasks listDownloadTasks(array $options = [])
38
 * @method ListInstances listInstances(array $options = [])
39
 * @method ModifyAsrConfig modifyAsrConfig(array $options = [])
40
 * @method ModifyGreetingConfig modifyGreetingConfig(array $options = [])
41
 * @method ModifyInstance modifyInstance(array $options = [])
42
 * @method ModifySilenceTimeoutConfig modifySilenceTimeoutConfig(array $options = [])
43
 * @method ModifyTTSConfig modifyTTSConfig(array $options = [])
44
 * @method ModifyUnrecognizingConfig modifyUnrecognizingConfig(array $options = [])
45
 * @method QueryConversations queryConversations(array $options = [])
46
 * @method SaveRecording saveRecording(array $options = [])
47
 * @method SilenceTimeout silenceTimeout(array $options = [])
48
 */
49
class VoiceNavigatorApiResolver extends ApiResolver
50
{
51
}
52
53
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
54
{
55
    /** @var string */
56
    public $product = 'VoiceNavigator';
57
58
    /** @var string */
59
    public $version = '2018-06-12';
60
61
    /** @var string */
62
    public $method = 'POST';
63
64
    /** @var string */
65
    public $serviceCode = 'voicebot';
66
}
67
68
/**
69
 * @method string getInstanceId()
70
 * @method $this withInstanceId($value)
71
 * @method string getChatbotInstanceId()
72
 * @method $this withChatbotInstanceId($value)
73
 * @method string getChatbotName()
74
 * @method $this withChatbotName($value)
75
 */
76
class AssociateChatbotInstance extends Rpc
77
{
78
}
79
80
/**
81
 * @method string getVoice()
82
 * @method $this withVoice($value)
83
 * @method string getVolume()
84
 * @method $this withVolume($value)
85
 * @method string getInstanceId()
86
 * @method $this withInstanceId($value)
87
 * @method string getText()
88
 * @method $this withText($value)
89
 * @method string getSpeechRate()
90
 * @method $this withSpeechRate($value)
91
 */
92
class AuditTTSVoice extends Rpc
93
{
94
}
95
96
/**
97
 * @method string getConversationId()
98
 * @method $this withConversationId($value)
99
 * @method string getInitialContext()
100
 * @method $this withInitialContext($value)
101
 * @method string getCallingNumber()
102
 * @method $this withCallingNumber($value)
103
 * @method string getInstanceId()
104
 * @method $this withInstanceId($value)
105
 * @method string getCalledNumber()
106
 * @method $this withCalledNumber($value)
107
 * @method string getInstanceOwnerId()
108
 * @method $this withInstanceOwnerId($value)
109
 */
110
class BeginDialogue extends Rpc
111
{
112
}
113
114
/**
115
 * @method string getConversationId()
116
 * @method $this withConversationId($value)
117
 * @method string getNumber()
118
 * @method $this withNumber($value)
119
 * @method string getInstanceId()
120
 * @method $this withInstanceId($value)
121
 * @method string getInstanceOwnerId()
122
 * @method $this withInstanceOwnerId($value)
123
 */
124
class CollectedNumber extends Rpc
125
{
126
}
127
128
/**
129
 * @method string getDownloadTaskId()
130
 * @method $this withDownloadTaskId($value)
131
 * @method string getFileId()
132
 * @method $this withFileId($value)
133
 */
134
class CreateDownloadUrl extends Rpc
135
{
136
137
    /** @var string */
138
    public $method = 'GET';
139
}
140
141
/**
142
 * @method string getDescription()
143
 * @method $this withDescription($value)
144
 * @method string getConcurrency()
145
 * @method $this withConcurrency($value)
146
 * @method string getChatbotInstanceId()
147
 * @method $this withChatbotInstanceId($value)
148
 * @method string getName()
149
 * @method $this withName($value)
150
 * @method string getNluServiceType()
151
 * @method $this withNluServiceType($value)
152
 * @method string getChatbotName()
153
 * @method $this withChatbotName($value)
154
 */
155
class CreateInstance extends Rpc
156
{
157
}
158
159
/**
160
 * @method string getConversationId()
161
 * @method $this withConversationId($value)
162
 * @method string getInitialContext()
163
 * @method $this withInitialContext($value)
164
 * @method string getCallingNumber()
165
 * @method $this withCallingNumber($value)
166
 * @method string getInstanceId()
167
 * @method $this withInstanceId($value)
168
 * @method string getCalledNumber()
169
 * @method $this withCalledNumber($value)
170
 */
171
class DebugBeginDialogue extends Rpc
172
{
173
}
174
175
/**
176
 * @method string getConversationId()
177
 * @method $this withConversationId($value)
178
 * @method string getNumber()
179
 * @method $this withNumber($value)
180
 * @method string getInstanceId()
181
 * @method $this withInstanceId($value)
182
 */
183
class DebugCollectedNumber extends Rpc
184
{
185
}
186
187
/**
188
 * @method string getConversationId()
189
 * @method $this withConversationId($value)
190
 * @method string getInstanceId()
191
 * @method $this withInstanceId($value)
192
 * @method string getAdditionalContext()
193
 * @method $this withAdditionalContext($value)
194
 * @method string getUtterance()
195
 * @method $this withUtterance($value)
196
 */
197
class DebugDialogue extends Rpc
198
{
199
}
200
201
/**
202
 * @method string getInstanceId()
203
 * @method $this withInstanceId($value)
204
 */
205
class DeleteInstance extends Rpc
206
{
207
}
208
209
/**
210
 * @method string getConversationId()
211
 * @method $this withConversationId($value)
212
 * @method string getInstanceId()
213
 * @method $this withInstanceId($value)
214
 */
215
class DescribeConversation extends Rpc
216
{
217
218
    /** @var string */
219
    public $method = 'GET';
220
}
221
222
/**
223
 * @method string getConversationId()
224
 * @method $this withConversationId($value)
225
 * @method string getInstanceId()
226
 * @method $this withInstanceId($value)
227
 */
228
class DescribeConversationContext extends Rpc
229
{
230
231
    /** @var string */
232
    public $method = 'GET';
233
}
234
235
/**
236
 * @method string getInstanceId()
237
 * @method $this withInstanceId($value)
238
 * @method string getExportTaskId()
239
 * @method $this withExportTaskId($value)
240
 */
241
class DescribeExportProgress extends Rpc
242
{
243
244
    /** @var string */
245
    public $method = 'GET';
246
}
247
248
/**
249
 * @method string getInstanceId()
250
 * @method $this withInstanceId($value)
251
 */
252
class DescribeInstance extends Rpc
253
{
254
255
    /** @var string */
256
    public $method = 'GET';
257
}
258
259
/**
260
 * @method string getInstanceId()
261
 * @method $this withInstanceId($value)
262
 */
263
class DescribeNavigationConfig extends Rpc
264
{
265
266
    /** @var string */
267
    public $method = 'GET';
268
}
269
270
/**
271
 * @method string getConversationId()
272
 * @method $this withConversationId($value)
273
 * @method string getInstanceId()
274
 * @method $this withInstanceId($value)
275
 */
276
class DescribeRecording extends Rpc
277
{
278
279
    /** @var string */
280
    public $method = 'GET';
281
}
282
283
/**
284
 * @method string getBeginTimeLeftRange()
285
 * @method $this withBeginTimeLeftRange($value)
286
 * @method string getTimeUnit()
287
 * @method $this withTimeUnit($value)
288
 * @method string getInstanceId()
289
 * @method $this withInstanceId($value)
290
 * @method string getBeginTimeRightRange()
291
 * @method $this withBeginTimeRightRange($value)
292
 */
293
class DescribeStatisticalData extends Rpc
294
{
295
296
    /** @var string */
297
    public $method = 'GET';
298
}
299
300
/**
301
 * @method string getInstanceId()
302
 * @method $this withInstanceId($value)
303
 * @method string getInstanceOwnerId()
304
 * @method $this withInstanceOwnerId($value)
305
 */
306
class DescribeTTSConfig extends Rpc
307
{
308
309
    /** @var string */
310
    public $method = 'GET';
311
}
312
313
/**
314
 * @method string getConversationId()
315
 * @method $this withConversationId($value)
316
 * @method string getCallingNumber()
317
 * @method $this withCallingNumber($value)
318
 * @method string getInstanceId()
319
 * @method $this withInstanceId($value)
320
 * @method string getCalledNumber()
321
 * @method $this withCalledNumber($value)
322
 * @method string getAdditionalContext()
323
 * @method $this withAdditionalContext($value)
324
 * @method string getInstanceOwnerId()
325
 * @method $this withInstanceOwnerId($value)
326
 * @method string getUtterance()
327
 * @method $this withUtterance($value)
328
 */
329
class Dialogue extends Rpc
330
{
331
}
332
333
/**
334
 * @method string getInstanceId()
335
 * @method $this withInstanceId($value)
336
 */
337
class DisableInstance extends Rpc
338
{
339
}
340
341
/**
342
 * @method string getInstanceId()
343
 * @method $this withInstanceId($value)
344
 */
345
class EnableInstance extends Rpc
346
{
347
}
348
349
/**
350
 * @method string getConversationId()
351
 * @method $this withConversationId($value)
352
 * @method string getHangUpParams()
353
 * @method $this withHangUpParams($value)
354
 * @method string getInstanceId()
355
 * @method $this withInstanceId($value)
356
 * @method string getInstanceOwnerId()
357
 * @method $this withInstanceOwnerId($value)
358
 */
359
class EndDialogue extends Rpc
360
{
361
}
362
363
/**
364
 * @method string getBeginTimeLeftRange()
365
 * @method $this withBeginTimeLeftRange($value)
366
 * @method string getCallingNumber()
367
 * @method $this withCallingNumber($value)
368
 * @method string getInstanceId()
369
 * @method $this withInstanceId($value)
370
 * @method string getBeginTimeRightRange()
371
 * @method $this withBeginTimeRightRange($value)
372
 * @method array getOptions()
373
 */
374
class ExportConversationDetails extends Rpc
375
{
376
377
    /**
378
     * @param array $options
379
     *
380
     * @return $this
381
     */
382
	public function withOptions(array $options)
383
	{
384
	    $this->data['Options'] = $options;
385
		foreach ($options as $i => $iValue) {
386
			$this->options['query']['Options.' . ($i + 1)] = $iValue;
387
		}
388
389
		return $this;
390
    }
391
}
392
393
/**
394
 * @method string getBeginTimeLeftRange()
395
 * @method $this withBeginTimeLeftRange($value)
396
 * @method string getExportType()
397
 * @method $this withExportType($value)
398
 * @method string getTimeUnit()
399
 * @method $this withTimeUnit($value)
400
 * @method string getInstanceId()
401
 * @method $this withInstanceId($value)
402
 * @method string getBeginTimeRightRange()
403
 * @method $this withBeginTimeRightRange($value)
404
 */
405
class ExportStatisticalData extends Rpc
406
{
407
}
408
409
/**
410
 * @method string getCallerParentId()
411
 * @method string getSecurityTransport()
412
 * @method string getProxyOriginalSecurityTransport()
413
 * @method string getUserId()
414
 * @method string getCallerType()
415
 * @method string getCallerIp()
416
 * @method string getSecurityToken()
417
 * @method string getInstanceOwnerId()
418
 * @method string getClientIp()
419
 * @method string getTenantId()
420
 * @method string getProxyOriginalSourceIp()
421
 * @method string getKey()
422
 * @method string getCallerUid()
423
 * @method string getCallerBid()
424
 * @method string getXspaceTenantBuId()
425
 * @method string getMfaPresent()
426
 * @method string getEnvironment()
427
 * @method string getFileName()
428
 * @method string getInstanceId()
429
 * @method string getRequestId()
430
 * @method string getXspaceServicerId()
431
 * @method string getTenantName()
432
 * @method string getProxyTrustTransportInfo()
433
 * @method string getUserName()
434
 */
435
class GenerateUploadUrl extends Rpc
436
{
437
438
    /**
439
     * @param string $value
440
     *
441
     * @return $this
442
     */
443
    public function withCallerParentId($value)
444
    {
445
        $this->data['CallerParentId'] = $value;
446
        $this->options['form_params']['CallerParentId'] = $value;
447
448
        return $this;
449
    }
450
451
    /**
452
     * @param string $value
453
     *
454
     * @return $this
455
     */
456
    public function withSecurityTransport($value)
457
    {
458
        $this->data['SecurityTransport'] = $value;
459
        $this->options['form_params']['SecurityTransport'] = $value;
460
461
        return $this;
462
    }
463
464
    /**
465
     * @param string $value
466
     *
467
     * @return $this
468
     */
469
    public function withProxyOriginalSecurityTransport($value)
470
    {
471
        $this->data['ProxyOriginalSecurityTransport'] = $value;
472
        $this->options['form_params']['ProxyOriginalSecurityTransport'] = $value;
473
474
        return $this;
475
    }
476
477
    /**
478
     * @param string $value
479
     *
480
     * @return $this
481
     */
482
    public function withUserId($value)
483
    {
484
        $this->data['UserId'] = $value;
485
        $this->options['form_params']['UserId'] = $value;
486
487
        return $this;
488
    }
489
490
    /**
491
     * @param string $value
492
     *
493
     * @return $this
494
     */
495
    public function withCallerType($value)
496
    {
497
        $this->data['CallerType'] = $value;
498
        $this->options['form_params']['CallerType'] = $value;
499
500
        return $this;
501
    }
502
503
    /**
504
     * @param string $value
505
     *
506
     * @return $this
507
     */
508
    public function withCallerIp($value)
509
    {
510
        $this->data['CallerIp'] = $value;
511
        $this->options['form_params']['CallerIp'] = $value;
512
513
        return $this;
514
    }
515
516
    /**
517
     * @param string $value
518
     *
519
     * @return $this
520
     */
521
    public function withSecurityToken($value)
522
    {
523
        $this->data['SecurityToken'] = $value;
524
        $this->options['form_params']['SecurityToken'] = $value;
525
526
        return $this;
527
    }
528
529
    /**
530
     * @param string $value
531
     *
532
     * @return $this
533
     */
534
    public function withInstanceOwnerId($value)
535
    {
536
        $this->data['InstanceOwnerId'] = $value;
537
        $this->options['form_params']['InstanceOwnerId'] = $value;
538
539
        return $this;
540
    }
541
542
    /**
543
     * @param string $value
544
     *
545
     * @return $this
546
     */
547
    public function withClientIp($value)
548
    {
549
        $this->data['ClientIp'] = $value;
550
        $this->options['form_params']['ClientIp'] = $value;
551
552
        return $this;
553
    }
554
555
    /**
556
     * @param string $value
557
     *
558
     * @return $this
559
     */
560
    public function withTenantId($value)
561
    {
562
        $this->data['TenantId'] = $value;
563
        $this->options['form_params']['TenantId'] = $value;
564
565
        return $this;
566
    }
567
568
    /**
569
     * @param string $value
570
     *
571
     * @return $this
572
     */
573
    public function withProxyOriginalSourceIp($value)
574
    {
575
        $this->data['ProxyOriginalSourceIp'] = $value;
576
        $this->options['form_params']['ProxyOriginalSourceIp'] = $value;
577
578
        return $this;
579
    }
580
581
    /**
582
     * @param string $value
583
     *
584
     * @return $this
585
     */
586
    public function withKey($value)
587
    {
588
        $this->data['Key'] = $value;
589
        $this->options['form_params']['Key'] = $value;
590
591
        return $this;
592
    }
593
594
    /**
595
     * @param string $value
596
     *
597
     * @return $this
598
     */
599
    public function withCallerUid($value)
600
    {
601
        $this->data['CallerUid'] = $value;
602
        $this->options['form_params']['CallerUid'] = $value;
603
604
        return $this;
605
    }
606
607
    /**
608
     * @param string $value
609
     *
610
     * @return $this
611
     */
612
    public function withCallerBid($value)
613
    {
614
        $this->data['CallerBid'] = $value;
615
        $this->options['form_params']['CallerBid'] = $value;
616
617
        return $this;
618
    }
619
620
    /**
621
     * @param string $value
622
     *
623
     * @return $this
624
     */
625
    public function withXspaceTenantBuId($value)
626
    {
627
        $this->data['XspaceTenantBuId'] = $value;
628
        $this->options['form_params']['XspaceTenantBuId'] = $value;
629
630
        return $this;
631
    }
632
633
    /**
634
     * @param string $value
635
     *
636
     * @return $this
637
     */
638
    public function withMfaPresent($value)
639
    {
640
        $this->data['MfaPresent'] = $value;
641
        $this->options['form_params']['MfaPresent'] = $value;
642
643
        return $this;
644
    }
645
646
    /**
647
     * @param string $value
648
     *
649
     * @return $this
650
     */
651
    public function withEnvironment($value)
652
    {
653
        $this->data['Environment'] = $value;
654
        $this->options['form_params']['Environment'] = $value;
655
656
        return $this;
657
    }
658
659
    /**
660
     * @param string $value
661
     *
662
     * @return $this
663
     */
664
    public function withFileName($value)
665
    {
666
        $this->data['FileName'] = $value;
667
        $this->options['form_params']['FileName'] = $value;
668
669
        return $this;
670
    }
671
672
    /**
673
     * @param string $value
674
     *
675
     * @return $this
676
     */
677
    public function withInstanceId($value)
678
    {
679
        $this->data['InstanceId'] = $value;
680
        $this->options['form_params']['InstanceId'] = $value;
681
682
        return $this;
683
    }
684
685
    /**
686
     * @param string $value
687
     *
688
     * @return $this
689
     */
690
    public function withRequestId($value)
691
    {
692
        $this->data['RequestId'] = $value;
693
        $this->options['form_params']['RequestId'] = $value;
694
695
        return $this;
696
    }
697
698
    /**
699
     * @param string $value
700
     *
701
     * @return $this
702
     */
703
    public function withXspaceServicerId($value)
704
    {
705
        $this->data['XspaceServicerId'] = $value;
706
        $this->options['form_params']['XspaceServicerId'] = $value;
707
708
        return $this;
709
    }
710
711
    /**
712
     * @param string $value
713
     *
714
     * @return $this
715
     */
716
    public function withTenantName($value)
717
    {
718
        $this->data['TenantName'] = $value;
719
        $this->options['form_params']['TenantName'] = $value;
720
721
        return $this;
722
    }
723
724
    /**
725
     * @param string $value
726
     *
727
     * @return $this
728
     */
729
    public function withProxyTrustTransportInfo($value)
730
    {
731
        $this->data['ProxyTrustTransportInfo'] = $value;
732
        $this->options['form_params']['ProxyTrustTransportInfo'] = $value;
733
734
        return $this;
735
    }
736
737
    /**
738
     * @param string $value
739
     *
740
     * @return $this
741
     */
742
    public function withUserName($value)
743
    {
744
        $this->data['UserName'] = $value;
745
        $this->options['form_params']['UserName'] = $value;
746
747
        return $this;
748
    }
749
}
750
751
/**
752
 * @method string getEntryId()
753
 * @method $this withEntryId($value)
754
 * @method string getConfigLevel()
755
 * @method $this withConfigLevel($value)
756
 */
757
class GetAsrConfig extends Rpc
758
{
759
}
760
761
/**
762
 * @method string getPageNumber()
763
 * @method $this withPageNumber($value)
764
 * @method string getInstanceId()
765
 * @method $this withInstanceId($value)
766
 * @method string getPageSize()
767
 * @method $this withPageSize($value)
768
 */
769
class ListChatbotInstances extends Rpc
770
{
771
772
    /** @var string */
773
    public $method = 'GET';
774
}
775
776
/**
777
 * @method string getConversationId()
778
 * @method $this withConversationId($value)
779
 * @method string getInstanceId()
780
 * @method $this withInstanceId($value)
781
 */
782
class ListConversationDetails extends Rpc
783
{
784
785
    /** @var string */
786
    public $method = 'GET';
787
}
788
789
/**
790
 * @method string getBeginTimeLeftRange()
791
 * @method $this withBeginTimeLeftRange($value)
792
 * @method string getQuery()
793
 * @method $this withQuery($value)
794
 * @method string getPageNumber()
795
 * @method $this withPageNumber($value)
796
 * @method string getResult()
797
 * @method $this withResult($value)
798
 * @method string getCallingNumber()
799
 * @method $this withCallingNumber($value)
800
 * @method string getInstanceId()
801
 * @method $this withInstanceId($value)
802
 * @method string getBeginTimeRightRange()
803
 * @method $this withBeginTimeRightRange($value)
804
 * @method string getIsSandBox()
805
 * @method $this withIsSandBox($value)
806
 * @method string getPageSize()
807
 * @method $this withPageSize($value)
808
 */
809
class ListConversations extends Rpc
810
{
811
812
    /** @var string */
813
    public $method = 'GET';
814
}
815
816
/**
817
 * @method string getPageNumber()
818
 * @method $this withPageNumber($value)
819
 * @method string getPageSize()
820
 * @method $this withPageSize($value)
821
 */
822
class ListDownloadTasks extends Rpc
823
{
824
825
    /** @var string */
826
    public $method = 'GET';
827
}
828
829
/**
830
 * @method string getPageNumber()
831
 * @method $this withPageNumber($value)
832
 * @method string getNluServiceTypeListJsonString()
833
 * @method $this withNluServiceTypeListJsonString($value)
834
 * @method string getPageSize()
835
 * @method $this withPageSize($value)
836
 */
837
class ListInstances extends Rpc
838
{
839
840
    /** @var string */
841
    public $method = 'GET';
842
}
843
844
/**
845
 * @method string getAsrVocabularyId()
846
 * @method $this withAsrVocabularyId($value)
847
 * @method string getAsrClassVocabularyId()
848
 * @method $this withAsrClassVocabularyId($value)
849
 * @method string getEntryId()
850
 * @method $this withEntryId($value)
851
 * @method string getAsrCustomizationId()
852
 * @method $this withAsrCustomizationId($value)
853
 * @method string getConfigLevel()
854
 * @method $this withConfigLevel($value)
855
 * @method string getAsrAcousticModelId()
856
 * @method $this withAsrAcousticModelId($value)
857
 */
858
class ModifyAsrConfig extends Rpc
859
{
860
}
861
862
/**
863
 * @method string getGreetingWords()
864
 * @method $this withGreetingWords($value)
865
 * @method string getIntentTrigger()
866
 * @method $this withIntentTrigger($value)
867
 * @method string getInstanceId()
868
 * @method $this withInstanceId($value)
869
 * @method string getSourceType()
870
 * @method $this withSourceType($value)
871
 */
872
class ModifyGreetingConfig extends Rpc
873
{
874
}
875
876
/**
877
 * @method string getDescription()
878
 * @method $this withDescription($value)
879
 * @method string getConcurrency()
880
 * @method $this withConcurrency($value)
881
 * @method string getInstanceId()
882
 * @method $this withInstanceId($value)
883
 * @method string getChatbotInstanceId()
884
 * @method $this withChatbotInstanceId($value)
885
 */
886
class ModifyInstance extends Rpc
887
{
888
}
889
890
/**
891
 * @method string getFinalAction()
892
 * @method $this withFinalAction($value)
893
 * @method string getFinalPrompt()
894
 * @method $this withFinalPrompt($value)
895
 * @method string getThreshold()
896
 * @method $this withThreshold($value)
897
 * @method string getIntentTrigger()
898
 * @method $this withIntentTrigger($value)
899
 * @method string getTimeout()
900
 * @method $this withTimeout($value)
901
 * @method string getInstanceId()
902
 * @method $this withInstanceId($value)
903
 * @method string getSourceType()
904
 * @method $this withSourceType($value)
905
 * @method string getFinalActionParams()
906
 * @method $this withFinalActionParams($value)
907
 * @method string getPrompt()
908
 * @method $this withPrompt($value)
909
 */
910
class ModifySilenceTimeoutConfig extends Rpc
911
{
912
}
913
914
/**
915
 * @method string getVoice()
916
 * @method $this withVoice($value)
917
 * @method string getVolume()
918
 * @method $this withVolume($value)
919
 * @method string getInstanceId()
920
 * @method $this withInstanceId($value)
921
 * @method string getSpeechRate()
922
 * @method $this withSpeechRate($value)
923
 */
924
class ModifyTTSConfig extends Rpc
925
{
926
}
927
928
/**
929
 * @method string getFinalAction()
930
 * @method $this withFinalAction($value)
931
 * @method string getFinalPrompt()
932
 * @method $this withFinalPrompt($value)
933
 * @method string getThreshold()
934
 * @method $this withThreshold($value)
935
 * @method string getInstanceId()
936
 * @method $this withInstanceId($value)
937
 * @method string getFinalActionParams()
938
 * @method $this withFinalActionParams($value)
939
 * @method string getPrompt()
940
 * @method $this withPrompt($value)
941
 */
942
class ModifyUnrecognizingConfig extends Rpc
943
{
944
}
945
946
/**
947
 * @method string getBeginTimeLeftRange()
948
 * @method $this withBeginTimeLeftRange($value)
949
 * @method string getPageNumber()
950
 * @method $this withPageNumber($value)
951
 * @method string getCallingNumber()
952
 * @method $this withCallingNumber($value)
953
 * @method string getInstanceId()
954
 * @method $this withInstanceId($value)
955
 * @method string getBeginTimeRightRange()
956
 * @method $this withBeginTimeRightRange($value)
957
 * @method string getPageSize()
958
 * @method $this withPageSize($value)
959
 */
960
class QueryConversations extends Rpc
961
{
962
963
    /** @var string */
964
    public $method = 'GET';
965
}
966
967
/**
968
 * @method string getConversationId()
969
 * @method $this withConversationId($value)
970
 * @method string getStartTime()
971
 * @method $this withStartTime($value)
972
 * @method string getType()
973
 * @method $this withType($value)
974
 * @method string getDuration()
975
 * @method $this withDuration($value)
976
 * @method string getInstanceId()
977
 * @method $this withInstanceId($value)
978
 * @method string getFileName()
979
 * @method $this withFileName($value)
980
 * @method string getFilePath()
981
 * @method $this withFilePath($value)
982
 * @method string getInstanceOwnerId()
983
 * @method $this withInstanceOwnerId($value)
984
 */
985
class SaveRecording extends Rpc
986
{
987
}
988
989
/**
990
 * @method string getConversationId()
991
 * @method $this withConversationId($value)
992
 * @method string getInitialContext()
993
 * @method $this withInitialContext($value)
994
 * @method string getInstanceId()
995
 * @method $this withInstanceId($value)
996
 * @method string getInstanceOwnerId()
997
 * @method $this withInstanceOwnerId($value)
998
 */
999
class SilenceTimeout extends Rpc
1000
{
1001
}
1002