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 ( ee897c...69d6ba )
by
unknown
10:05 queued 12s
created

AddStoryFiles::withObjectId()   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\Imm\V20200930;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AddStoryFiles addStoryFiles(array $options = [])
9
 * @method AttachOSSBucket attachOSSBucket(array $options = [])
10
 * @method BatchDeleteFileMeta batchDeleteFileMeta(array $options = [])
11
 * @method BatchGetFileMeta batchGetFileMeta(array $options = [])
12
 * @method BatchIndexFileMeta batchIndexFileMeta(array $options = [])
13
 * @method BatchUpdateFileMeta batchUpdateFileMeta(array $options = [])
14
 * @method CreateBinding createBinding(array $options = [])
15
 * @method CreateDataset createDataset(array $options = [])
16
 * @method CreateDetectVideoLabelsTask createDetectVideoLabelsTask(array $options = [])
17
 * @method CreateFigureClusteringTask createFigureClusteringTask(array $options = [])
18
 * @method CreateFigureClustersMergingTask createFigureClustersMergingTask(array $options = [])
19
 * @method CreateImageModerationTask createImageModerationTask(array $options = [])
20
 * @method CreateImageSplicingTask createImageSplicingTask(array $options = [])
21
 * @method CreateMediaConvertTask createMediaConvertTask(array $options = [])
22
 * @method CreateOfficeConversionTask createOfficeConversionTask(array $options = [])
23
 * @method CreateProject createProject(array $options = [])
24
 * @method CreateStory createStory(array $options = [])
25
 * @method CreateVideoModerationTask createVideoModerationTask(array $options = [])
26
 * @method DeleteBinding deleteBinding(array $options = [])
27
 * @method DeleteDataset deleteDataset(array $options = [])
28
 * @method DeleteFileMeta deleteFileMeta(array $options = [])
29
 * @method DeleteProject deleteProject(array $options = [])
30
 * @method DeleteStory deleteStory(array $options = [])
31
 * @method DetachOSSBucket detachOSSBucket(array $options = [])
32
 * @method DetectImageBodies detectImageBodies(array $options = [])
33
 * @method DetectImageCodes detectImageCodes(array $options = [])
34
 * @method DetectImageCropping detectImageCropping(array $options = [])
35
 * @method DetectImageFaces detectImageFaces(array $options = [])
36
 * @method DetectImageLabels detectImageLabels(array $options = [])
37
 * @method DetectImageScore detectImageScore(array $options = [])
38
 * @method DetectTextAnomaly detectTextAnomaly(array $options = [])
39
 * @method FuzzyQuery fuzzyQuery(array $options = [])
40
 * @method GetBinding getBinding(array $options = [])
41
 * @method GetDataset getDataset(array $options = [])
42
 * @method GetDetectVideoLabelsResult getDetectVideoLabelsResult(array $options = [])
43
 * @method GetFigureCluster getFigureCluster(array $options = [])
44
 * @method GetFileMeta getFileMeta(array $options = [])
45
 * @method GetMediaMeta getMediaMeta(array $options = [])
46
 * @method GetOSSBucketAttachment getOSSBucketAttachment(array $options = [])
47
 * @method GetProject getProject(array $options = [])
48
 * @method GetStory getStory(array $options = [])
49
 * @method GetTask getTask(array $options = [])
50
 * @method GetWebofficeURL getWebofficeURL(array $options = [])
51
 * @method IndexFileMeta indexFileMeta(array $options = [])
52
 * @method ListBindings listBindings(array $options = [])
53
 * @method ListDatasets listDatasets(array $options = [])
54
 * @method ListProjects listProjects(array $options = [])
55
 * @method ListRegions listRegions(array $options = [])
56
 * @method ListTasks listTasks(array $options = [])
57
 * @method MergeFigureClusters mergeFigureClusters(array $options = [])
58
 * @method QueryFigureClusters queryFigureClusters(array $options = [])
59
 * @method QueryStories queryStories(array $options = [])
60
 * @method RefreshWebofficeToken refreshWebofficeToken(array $options = [])
61
 * @method RemoveStoryFiles removeStoryFiles(array $options = [])
62
 * @method ResumeBinding resumeBinding(array $options = [])
63
 * @method SemanticQuery semanticQuery(array $options = [])
64
 * @method SimpleQuery simpleQuery(array $options = [])
65
 * @method StopBinding stopBinding(array $options = [])
66
 * @method UpdateDataset updateDataset(array $options = [])
67
 * @method UpdateFigureCluster updateFigureCluster(array $options = [])
68
 * @method UpdateFileMeta updateFileMeta(array $options = [])
69
 * @method UpdateProject updateProject(array $options = [])
70
 * @method UpdateStory updateStory(array $options = [])
71
 */
72
class ImmApiResolver extends ApiResolver
73
{
74
}
75
76
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
77
{
78
    /** @var string */
79
    public $product = 'imm';
80
81
    /** @var string */
82
    public $version = '2020-09-30';
83
84
    /** @var string */
85
    public $method = 'POST';
86
87
    /** @var string */
88
    public $serviceCode = 'imm';
89
}
90
91
/**
92
 * @method string getDatasetName()
93
 * @method string getProjectName()
94
 * @method string getFiles()
95
 * @method string getObjectId()
96
 */
97
class AddStoryFiles extends Rpc
98
{
99
100
    /**
101
     * @param string $value
102
     *
103
     * @return $this
104
     */
105
    public function withDatasetName($value)
106
    {
107
        $this->data['DatasetName'] = $value;
108
        $this->options['form_params']['DatasetName'] = $value;
109
110
        return $this;
111
    }
112
113
    /**
114
     * @param string $value
115
     *
116
     * @return $this
117
     */
118
    public function withProjectName($value)
119
    {
120
        $this->data['ProjectName'] = $value;
121
        $this->options['form_params']['ProjectName'] = $value;
122
123
        return $this;
124
    }
125
126
    /**
127
     * @param string $value
128
     *
129
     * @return $this
130
     */
131
    public function withFiles($value)
132
    {
133
        $this->data['Files'] = $value;
134
        $this->options['form_params']['Files'] = $value;
135
136
        return $this;
137
    }
138
139
    /**
140
     * @param string $value
141
     *
142
     * @return $this
143
     */
144
    public function withObjectId($value)
145
    {
146
        $this->data['ObjectId'] = $value;
147
        $this->options['form_params']['ObjectId'] = $value;
148
149
        return $this;
150
    }
151
}
152
153
/**
154
 * @method string getProjectName()
155
 * @method $this withProjectName($value)
156
 * @method string getOSSBucket()
157
 * @method $this withOSSBucket($value)
158
 */
159
class AttachOSSBucket extends Rpc
160
{
161
}
162
163
/**
164
 * @method string getDatasetName()
165
 * @method $this withDatasetName($value)
166
 * @method string getProjectName()
167
 * @method $this withProjectName($value)
168
 * @method string getURIs()
169
 * @method $this withURIs($value)
170
 */
171
class BatchDeleteFileMeta extends Rpc
172
{
173
}
174
175
/**
176
 * @method string getDatasetName()
177
 * @method $this withDatasetName($value)
178
 * @method string getProjectName()
179
 * @method $this withProjectName($value)
180
 * @method string getURIs()
181
 * @method $this withURIs($value)
182
 */
183
class BatchGetFileMeta extends Rpc
184
{
185
}
186
187
/**
188
 * @method string getNotifyEndpoint()
189
 * @method $this withNotifyEndpoint($value)
190
 * @method string getDatasetName()
191
 * @method $this withDatasetName($value)
192
 * @method string getProjectName()
193
 * @method $this withProjectName($value)
194
 * @method string getNotifyTopicName()
195
 * @method $this withNotifyTopicName($value)
196
 * @method string getFiles()
197
 * @method $this withFiles($value)
198
 */
199
class BatchIndexFileMeta extends Rpc
200
{
201
}
202
203
/**
204
 * @method string getDatasetName()
205
 * @method $this withDatasetName($value)
206
 * @method string getProjectName()
207
 * @method $this withProjectName($value)
208
 * @method string getFiles()
209
 * @method $this withFiles($value)
210
 */
211
class BatchUpdateFileMeta extends Rpc
212
{
213
}
214
215
/**
216
 * @method string getBucketOwnerId()
217
 * @method $this withBucketOwnerId($value)
218
 * @method string getDatasetName()
219
 * @method $this withDatasetName($value)
220
 * @method string getProjectName()
221
 * @method $this withProjectName($value)
222
 * @method string getURI()
223
 * @method $this withURI($value)
224
 */
225
class CreateBinding extends Rpc
226
{
227
}
228
229
/**
230
 * @method string getDatasetMaxBindCount()
231
 * @method $this withDatasetMaxBindCount($value)
232
 * @method string getDescription()
233
 * @method $this withDescription($value)
234
 * @method string getDatasetMaxRelationCount()
235
 * @method $this withDatasetMaxRelationCount($value)
236
 * @method string getDatasetName()
237
 * @method $this withDatasetName($value)
238
 * @method string getDatasetMaxFileCount()
239
 * @method $this withDatasetMaxFileCount($value)
240
 * @method string getProjectName()
241
 * @method $this withProjectName($value)
242
 * @method string getDatasetMaxEntityCount()
243
 * @method $this withDatasetMaxEntityCount($value)
244
 * @method string getTemplateId()
245
 * @method $this withTemplateId($value)
246
 * @method string getDatasetMaxTotalFileSize()
247
 * @method $this withDatasetMaxTotalFileSize($value)
248
 */
249
class CreateDataset extends Rpc
250
{
251
}
252
253
/**
254
 * @method string getUserData()
255
 * @method $this withUserData($value)
256
 * @method string getNotifyEndpoint()
257
 * @method $this withNotifyEndpoint($value)
258
 * @method string getProjectName()
259
 * @method $this withProjectName($value)
260
 * @method string getNotifyTopicName()
261
 * @method $this withNotifyTopicName($value)
262
 * @method string getCredentialConfig()
263
 * @method $this withCredentialConfig($value)
264
 * @method string getTags()
265
 * @method $this withTags($value)
266
 * @method string getSourceURI()
267
 * @method $this withSourceURI($value)
268
 */
269
class CreateDetectVideoLabelsTask extends Rpc
270
{
271
}
272
273
/**
274
 * @method string getUserData()
275
 * @method $this withUserData($value)
276
 * @method string getNotifyEndpoint()
277
 * @method $this withNotifyEndpoint($value)
278
 * @method string getDatasetName()
279
 * @method $this withDatasetName($value)
280
 * @method string getProjectName()
281
 * @method $this withProjectName($value)
282
 * @method string getNotifyTopicName()
283
 * @method $this withNotifyTopicName($value)
284
 * @method string getTags()
285
 * @method $this withTags($value)
286
 */
287
class CreateFigureClusteringTask extends Rpc
288
{
289
}
290
291
/**
292
 * @method string getUserData()
293
 * @method $this withUserData($value)
294
 * @method string getNotifyEndpoint()
295
 * @method $this withNotifyEndpoint($value)
296
 * @method string getDatasetName()
297
 * @method $this withDatasetName($value)
298
 * @method string getFrom()
299
 * @method $this withFrom($value)
300
 * @method string getProjectName()
301
 * @method $this withProjectName($value)
302
 * @method string getNotifyTopicName()
303
 * @method $this withNotifyTopicName($value)
304
 * @method string getTags()
305
 * @method $this withTags($value)
306
 * @method string getTo()
307
 * @method $this withTo($value)
308
 */
309
class CreateFigureClustersMergingTask extends Rpc
310
{
311
}
312
313
/**
314
 * @method string getUserData()
315
 * @method $this withUserData($value)
316
 * @method string getNotifyEndpoint()
317
 * @method $this withNotifyEndpoint($value)
318
 * @method string getProjectName()
319
 * @method $this withProjectName($value)
320
 * @method string getNotifyTopicName()
321
 * @method $this withNotifyTopicName($value)
322
 * @method string getMaxFrames()
323
 * @method $this withMaxFrames($value)
324
 * @method string getCredentialConfig()
325
 * @method $this withCredentialConfig($value)
326
 * @method string getReviewer()
327
 * @method $this withReviewer($value)
328
 * @method string getTags()
329
 * @method $this withTags($value)
330
 * @method string getSourceURI()
331
 * @method $this withSourceURI($value)
332
 * @method string getScenes()
333
 * @method $this withScenes($value)
334
 * @method string getInterval()
335
 * @method $this withInterval($value)
336
 */
337
class CreateImageModerationTask extends Rpc
338
{
339
}
340
341
/**
342
 * @method string getAlign()
343
 * @method $this withAlign($value)
344
 * @method string getBackgroundColor()
345
 * @method $this withBackgroundColor($value)
346
 * @method string getNotifyEndpoint()
347
 * @method $this withNotifyEndpoint($value)
348
 * @method string getScaleType()
349
 * @method $this withScaleType($value)
350
 * @method string getProjectName()
351
 * @method $this withProjectName($value)
352
 * @method string getMargin()
353
 * @method $this withMargin($value)
354
 * @method string getNotifyTopicName()
355
 * @method $this withNotifyTopicName($value)
356
 * @method string getQuality()
357
 * @method $this withQuality($value)
358
 * @method string getTags()
359
 * @method $this withTags($value)
360
 * @method string getSources()
361
 * @method $this withSources($value)
362
 * @method string getUserData()
363
 * @method $this withUserData($value)
364
 * @method string getTargetURI()
365
 * @method $this withTargetURI($value)
366
 * @method string getImageFormat()
367
 * @method $this withImageFormat($value)
368
 * @method string getDirection()
369
 * @method $this withDirection($value)
370
 * @method string getPadding()
371
 * @method $this withPadding($value)
372
 * @method string getCredentialConfig()
373
 * @method $this withCredentialConfig($value)
374
 */
375
class CreateImageSplicingTask extends Rpc
376
{
377
}
378
379
/**
380
 * @method string getSources()
381
 * @method $this withSources($value)
382
 * @method string getTargets()
383
 * @method $this withTargets($value)
384
 * @method string getUserData()
385
 * @method $this withUserData($value)
386
 * @method string getNotifyEndpoint()
387
 * @method $this withNotifyEndpoint($value)
388
 * @method string getProjectName()
389
 * @method $this withProjectName($value)
390
 * @method string getNotifyTopicName()
391
 * @method $this withNotifyTopicName($value)
392
 * @method string getCredentialConfig()
393
 * @method $this withCredentialConfig($value)
394
 * @method string getTags()
395
 * @method $this withTags($value)
396
 */
397
class CreateMediaConvertTask extends Rpc
398
{
399
}
400
401
/**
402
 * @method string getSheetCount()
403
 * @method $this withSheetCount($value)
404
 * @method string getShowComments()
405
 * @method $this withShowComments($value)
406
 * @method string getPassword()
407
 * @method $this withPassword($value)
408
 * @method string getPages()
409
 * @method $this withPages($value)
410
 * @method string getNotifyEndpoint()
411
 * @method $this withNotifyEndpoint($value)
412
 * @method string getSourceType()
413
 * @method $this withSourceType($value)
414
 * @method string getProjectName()
415
 * @method $this withProjectName($value)
416
 * @method string getNotifyTopicName()
417
 * @method $this withNotifyTopicName($value)
418
 * @method string getFitToHeight()
419
 * @method $this withFitToHeight($value)
420
 * @method string getEndPage()
421
 * @method $this withEndPage($value)
422
 * @method string getFitToWidth()
423
 * @method $this withFitToWidth($value)
424
 * @method string getQuality()
425
 * @method $this withQuality($value)
426
 * @method string getTags()
427
 * @method $this withTags($value)
428
 * @method string getSourceURI()
429
 * @method $this withSourceURI($value)
430
 * @method string getSheetIndex()
431
 * @method $this withSheetIndex($value)
432
 * @method string getHoldLineFeed()
433
 * @method $this withHoldLineFeed($value)
434
 * @method string getLongText()
435
 * @method $this withLongText($value)
436
 * @method string getTargetType()
437
 * @method $this withTargetType($value)
438
 * @method string getTrimPolicy()
439
 * @method $this withTrimPolicy($value)
440
 * @method string getMaxSheetColumn()
441
 * @method $this withMaxSheetColumn($value)
442
 * @method string getFirstPage()
443
 * @method $this withFirstPage($value)
444
 * @method string getPaperHorizontal()
445
 * @method $this withPaperHorizontal($value)
446
 * @method string getUserData()
447
 * @method $this withUserData($value)
448
 * @method string getScalePercentage()
449
 * @method $this withScalePercentage($value)
450
 * @method string getStartPage()
451
 * @method $this withStartPage($value)
452
 * @method string getTargetURIPrefix()
453
 * @method $this withTargetURIPrefix($value)
454
 * @method string getTargetURI()
455
 * @method $this withTargetURI($value)
456
 * @method string getPaperSize()
457
 * @method $this withPaperSize($value)
458
 * @method string getImageDPI()
459
 * @method $this withImageDPI($value)
460
 * @method string getLongPicture()
461
 * @method $this withLongPicture($value)
462
 * @method string getMaxSheetRow()
463
 * @method $this withMaxSheetRow($value)
464
 * @method string getCredentialConfig()
465
 * @method $this withCredentialConfig($value)
466
 */
467
class CreateOfficeConversionTask extends Rpc
468
{
469
}
470
471
/**
472
 * @method string getEngineConcurrency()
473
 * @method $this withEngineConcurrency($value)
474
 * @method string getDatasetMaxBindCount()
475
 * @method $this withDatasetMaxBindCount($value)
476
 * @method string getDescription()
477
 * @method $this withDescription($value)
478
 * @method string getProjectQueriesPerSecond()
479
 * @method $this withProjectQueriesPerSecond($value)
480
 * @method string getDatasetMaxRelationCount()
481
 * @method $this withDatasetMaxRelationCount($value)
482
 * @method string getDatasetMaxFileCount()
483
 * @method $this withDatasetMaxFileCount($value)
484
 * @method string getProjectName()
485
 * @method $this withProjectName($value)
486
 * @method string getProjectMaxDatasetCount()
487
 * @method $this withProjectMaxDatasetCount($value)
488
 * @method string getDatasetMaxEntityCount()
489
 * @method $this withDatasetMaxEntityCount($value)
490
 * @method string getTemplateId()
491
 * @method $this withTemplateId($value)
492
 * @method string getDatasetMaxTotalFileSize()
493
 * @method $this withDatasetMaxTotalFileSize($value)
494
 * @method string getServiceRole()
495
 * @method $this withServiceRole($value)
496
 */
497
class CreateProject extends Rpc
498
{
499
}
500
501
/**
502
 * @method string getCustomLabels()
503
 * @method string getNotifyEndpoint()
504
 * @method string getProjectName()
505
 * @method string getNotifyTopicName()
506
 * @method string getStoryType()
507
 * @method string getTags()
508
 * @method $this withTags($value)
509
 * @method string getStorySubType()
510
 * @method string getMinFileCount()
511
 * @method string getUserData()
512
 * @method $this withUserData($value)
513
 * @method string getMaxFileCount()
514
 * @method string getDatasetName()
515
 * @method string getStoryStartTime()
516
 * @method string getCustomId()
517
 * @method string getStoryEndTime()
518
 * @method string getObjectId()
519
 * @method string getStoryName()
520
 */
521
class CreateStory extends Rpc
522
{
523
524
    /**
525
     * @param string $value
526
     *
527
     * @return $this
528
     */
529
    public function withCustomLabels($value)
530
    {
531
        $this->data['CustomLabels'] = $value;
532
        $this->options['form_params']['CustomLabels'] = $value;
533
534
        return $this;
535
    }
536
537
    /**
538
     * @param string $value
539
     *
540
     * @return $this
541
     */
542
    public function withNotifyEndpoint($value)
543
    {
544
        $this->data['NotifyEndpoint'] = $value;
545
        $this->options['form_params']['NotifyEndpoint'] = $value;
546
547
        return $this;
548
    }
549
550
    /**
551
     * @param string $value
552
     *
553
     * @return $this
554
     */
555
    public function withProjectName($value)
556
    {
557
        $this->data['ProjectName'] = $value;
558
        $this->options['form_params']['ProjectName'] = $value;
559
560
        return $this;
561
    }
562
563
    /**
564
     * @param string $value
565
     *
566
     * @return $this
567
     */
568
    public function withNotifyTopicName($value)
569
    {
570
        $this->data['NotifyTopicName'] = $value;
571
        $this->options['form_params']['NotifyTopicName'] = $value;
572
573
        return $this;
574
    }
575
576
    /**
577
     * @param string $value
578
     *
579
     * @return $this
580
     */
581
    public function withStoryType($value)
582
    {
583
        $this->data['StoryType'] = $value;
584
        $this->options['form_params']['StoryType'] = $value;
585
586
        return $this;
587
    }
588
589
    /**
590
     * @param string $value
591
     *
592
     * @return $this
593
     */
594
    public function withStorySubType($value)
595
    {
596
        $this->data['StorySubType'] = $value;
597
        $this->options['form_params']['StorySubType'] = $value;
598
599
        return $this;
600
    }
601
602
    /**
603
     * @param string $value
604
     *
605
     * @return $this
606
     */
607
    public function withMinFileCount($value)
608
    {
609
        $this->data['MinFileCount'] = $value;
610
        $this->options['form_params']['MinFileCount'] = $value;
611
612
        return $this;
613
    }
614
615
    /**
616
     * @param string $value
617
     *
618
     * @return $this
619
     */
620
    public function withMaxFileCount($value)
621
    {
622
        $this->data['MaxFileCount'] = $value;
623
        $this->options['form_params']['MaxFileCount'] = $value;
624
625
        return $this;
626
    }
627
628
    /**
629
     * @param string $value
630
     *
631
     * @return $this
632
     */
633
    public function withDatasetName($value)
634
    {
635
        $this->data['DatasetName'] = $value;
636
        $this->options['form_params']['DatasetName'] = $value;
637
638
        return $this;
639
    }
640
641
    /**
642
     * @param string $value
643
     *
644
     * @return $this
645
     */
646
    public function withStoryStartTime($value)
647
    {
648
        $this->data['StoryStartTime'] = $value;
649
        $this->options['form_params']['StoryStartTime'] = $value;
650
651
        return $this;
652
    }
653
654
    /**
655
     * @param string $value
656
     *
657
     * @return $this
658
     */
659
    public function withCustomId($value)
660
    {
661
        $this->data['CustomId'] = $value;
662
        $this->options['form_params']['CustomId'] = $value;
663
664
        return $this;
665
    }
666
667
    /**
668
     * @param string $value
669
     *
670
     * @return $this
671
     */
672
    public function withStoryEndTime($value)
673
    {
674
        $this->data['StoryEndTime'] = $value;
675
        $this->options['form_params']['StoryEndTime'] = $value;
676
677
        return $this;
678
    }
679
680
    /**
681
     * @param string $value
682
     *
683
     * @return $this
684
     */
685
    public function withObjectId($value)
686
    {
687
        $this->data['ObjectId'] = $value;
688
        $this->options['form_params']['ObjectId'] = $value;
689
690
        return $this;
691
    }
692
693
    /**
694
     * @param string $value
695
     *
696
     * @return $this
697
     */
698
    public function withStoryName($value)
699
    {
700
        $this->data['StoryName'] = $value;
701
        $this->options['form_params']['StoryName'] = $value;
702
703
        return $this;
704
    }
705
}
706
707
/**
708
 * @method string getUserData()
709
 * @method $this withUserData($value)
710
 * @method string getNotifyEndpoint()
711
 * @method $this withNotifyEndpoint($value)
712
 * @method string getProjectName()
713
 * @method $this withProjectName($value)
714
 * @method string getNotifyTopicName()
715
 * @method $this withNotifyTopicName($value)
716
 * @method string getMaxFrames()
717
 * @method $this withMaxFrames($value)
718
 * @method string getCredentialConfig()
719
 * @method $this withCredentialConfig($value)
720
 * @method string getReviewer()
721
 * @method $this withReviewer($value)
722
 * @method string getTags()
723
 * @method $this withTags($value)
724
 * @method string getSourceURI()
725
 * @method $this withSourceURI($value)
726
 * @method string getScenes()
727
 * @method $this withScenes($value)
728
 * @method string getInterval()
729
 * @method $this withInterval($value)
730
 */
731
class CreateVideoModerationTask extends Rpc
732
{
733
}
734
735
/**
736
 * @method string getDatasetName()
737
 * @method $this withDatasetName($value)
738
 * @method string getProjectName()
739
 * @method $this withProjectName($value)
740
 * @method string getURI()
741
 * @method $this withURI($value)
742
 * @method string getCleanup()
743
 * @method $this withCleanup($value)
744
 */
745
class DeleteBinding extends Rpc
746
{
747
}
748
749
/**
750
 * @method string getDatasetName()
751
 * @method $this withDatasetName($value)
752
 * @method string getProjectName()
753
 * @method $this withProjectName($value)
754
 */
755
class DeleteDataset extends Rpc
756
{
757
}
758
759
/**
760
 * @method string getDatasetName()
761
 * @method $this withDatasetName($value)
762
 * @method string getProjectName()
763
 * @method $this withProjectName($value)
764
 * @method string getURI()
765
 * @method $this withURI($value)
766
 */
767
class DeleteFileMeta extends Rpc
768
{
769
}
770
771
/**
772
 * @method string getProjectName()
773
 * @method $this withProjectName($value)
774
 */
775
class DeleteProject extends Rpc
776
{
777
}
778
779
/**
780
 * @method string getDatasetName()
781
 * @method $this withDatasetName($value)
782
 * @method string getProjectName()
783
 * @method $this withProjectName($value)
784
 * @method string getObjectId()
785
 * @method $this withObjectId($value)
786
 */
787
class DeleteStory extends Rpc
788
{
789
}
790
791
/**
792
 * @method string getOSSBucket()
793
 * @method $this withOSSBucket($value)
794
 */
795
class DetachOSSBucket extends Rpc
796
{
797
}
798
799
/**
800
 * @method string getProjectName()
801
 * @method $this withProjectName($value)
802
 * @method string getCredentialConfig()
803
 * @method $this withCredentialConfig($value)
804
 * @method string getSourceURI()
805
 * @method $this withSourceURI($value)
806
 * @method string getSensitivity()
807
 * @method $this withSensitivity($value)
808
 */
809
class DetectImageBodies extends Rpc
810
{
811
}
812
813
/**
814
 * @method string getProjectName()
815
 * @method $this withProjectName($value)
816
 * @method string getCredentialConfig()
817
 * @method $this withCredentialConfig($value)
818
 * @method string getSourceURI()
819
 * @method $this withSourceURI($value)
820
 */
821
class DetectImageCodes extends Rpc
822
{
823
}
824
825
/**
826
 * @method string getAspectRatios()
827
 * @method $this withAspectRatios($value)
828
 * @method string getProjectName()
829
 * @method $this withProjectName($value)
830
 * @method string getCredentialConfig()
831
 * @method $this withCredentialConfig($value)
832
 * @method string getSourceURI()
833
 * @method $this withSourceURI($value)
834
 */
835
class DetectImageCropping extends Rpc
836
{
837
}
838
839
/**
840
 * @method string getProjectName()
841
 * @method $this withProjectName($value)
842
 * @method string getCredentialConfig()
843
 * @method $this withCredentialConfig($value)
844
 * @method string getSourceURI()
845
 * @method $this withSourceURI($value)
846
 */
847
class DetectImageFaces extends Rpc
848
{
849
}
850
851
/**
852
 * @method string getThreshold()
853
 * @method $this withThreshold($value)
854
 * @method string getProjectName()
855
 * @method $this withProjectName($value)
856
 * @method string getCredentialConfig()
857
 * @method $this withCredentialConfig($value)
858
 * @method string getSourceURI()
859
 * @method $this withSourceURI($value)
860
 */
861
class DetectImageLabels extends Rpc
862
{
863
}
864
865
/**
866
 * @method string getProjectName()
867
 * @method $this withProjectName($value)
868
 * @method string getCredentialConfig()
869
 * @method $this withCredentialConfig($value)
870
 * @method string getSourceURI()
871
 * @method $this withSourceURI($value)
872
 */
873
class DetectImageScore extends Rpc
874
{
875
}
876
877
/**
878
 * @method string getContent()
879
 * @method $this withContent($value)
880
 * @method string getProjectName()
881
 * @method $this withProjectName($value)
882
 */
883
class DetectTextAnomaly extends Rpc
884
{
885
}
886
887
/**
888
 * @method string getNextToken()
889
 * @method $this withNextToken($value)
890
 * @method string getDatasetName()
891
 * @method $this withDatasetName($value)
892
 * @method string getProjectName()
893
 * @method $this withProjectName($value)
894
 * @method string getQuery()
895
 * @method $this withQuery($value)
896
 * @method string getMaxResults()
897
 * @method $this withMaxResults($value)
898
 */
899
class FuzzyQuery extends Rpc
900
{
901
}
902
903
/**
904
 * @method string getDatasetName()
905
 * @method $this withDatasetName($value)
906
 * @method string getOwner()
907
 * @method $this withOwner($value)
908
 * @method string getProjectName()
909
 * @method $this withProjectName($value)
910
 * @method string getURI()
911
 * @method $this withURI($value)
912
 */
913
class GetBinding extends Rpc
914
{
915
}
916
917
/**
918
 * @method string getDatasetName()
919
 * @method $this withDatasetName($value)
920
 * @method string getProjectName()
921
 * @method $this withProjectName($value)
922
 * @method string getWithStatistics()
923
 * @method $this withWithStatistics($value)
924
 */
925
class GetDataset extends Rpc
926
{
927
}
928
929
/**
930
 * @method string getTaskId()
931
 * @method $this withTaskId($value)
932
 * @method string getProjectName()
933
 * @method $this withProjectName($value)
934
 * @method string getTaskType()
935
 * @method $this withTaskType($value)
936
 */
937
class GetDetectVideoLabelsResult extends Rpc
938
{
939
}
940
941
/**
942
 * @method string getDatasetName()
943
 * @method $this withDatasetName($value)
944
 * @method string getProjectName()
945
 * @method $this withProjectName($value)
946
 * @method string getObjectId()
947
 * @method $this withObjectId($value)
948
 */
949
class GetFigureCluster extends Rpc
950
{
951
}
952
953
/**
954
 * @method string getDatasetName()
955
 * @method $this withDatasetName($value)
956
 * @method string getProjectName()
957
 * @method $this withProjectName($value)
958
 * @method string getURI()
959
 * @method $this withURI($value)
960
 */
961
class GetFileMeta extends Rpc
962
{
963
}
964
965
/**
966
 * @method string getProjectName()
967
 * @method $this withProjectName($value)
968
 * @method string getCredentialConfig()
969
 * @method $this withCredentialConfig($value)
970
 * @method string getSourceURI()
971
 * @method $this withSourceURI($value)
972
 */
973
class GetMediaMeta extends Rpc
974
{
975
}
976
977
/**
978
 * @method string getOSSBucket()
979
 * @method $this withOSSBucket($value)
980
 */
981
class GetOSSBucketAttachment extends Rpc
982
{
983
}
984
985
/**
986
 * @method string getProjectName()
987
 * @method $this withProjectName($value)
988
 * @method string getWithStatistics()
989
 * @method $this withWithStatistics($value)
990
 */
991
class GetProject extends Rpc
992
{
993
}
994
995
/**
996
 * @method string getDatasetName()
997
 * @method $this withDatasetName($value)
998
 * @method string getProjectName()
999
 * @method $this withProjectName($value)
1000
 * @method string getObjectId()
1001
 * @method $this withObjectId($value)
1002
 */
1003
class GetStory extends Rpc
1004
{
1005
}
1006
1007
/**
1008
 * @method string getTaskId()
1009
 * @method $this withTaskId($value)
1010
 * @method string getProjectName()
1011
 * @method $this withProjectName($value)
1012
 * @method string getTaskType()
1013
 * @method $this withTaskType($value)
1014
 */
1015
class GetTask extends Rpc
1016
{
1017
}
1018
1019
/**
1020
 * @method string getReferer()
1021
 * @method $this withReferer($value)
1022
 * @method string getPassword()
1023
 * @method $this withPassword($value)
1024
 * @method string getNotifyEndpoint()
1025
 * @method $this withNotifyEndpoint($value)
1026
 * @method string getProjectName()
1027
 * @method $this withProjectName($value)
1028
 * @method string getWatermark()
1029
 * @method $this withWatermark($value)
1030
 * @method string getNotifyTopicName()
1031
 * @method $this withNotifyTopicName($value)
1032
 * @method string getFilename()
1033
 * @method $this withFilename($value)
1034
 * @method string getSourceURI()
1035
 * @method $this withSourceURI($value)
1036
 * @method string getExternalUploaded()
1037
 * @method $this withExternalUploaded($value)
1038
 * @method string getUserData()
1039
 * @method $this withUserData($value)
1040
 * @method string getPreviewPages()
1041
 * @method $this withPreviewPages($value)
1042
 * @method string getHidecmb()
1043
 * @method $this withHidecmb($value)
1044
 * @method string getCachePreview()
1045
 * @method $this withCachePreview($value)
1046
 * @method string getPermission()
1047
 * @method $this withPermission($value)
1048
 * @method string getCredentialConfig()
1049
 * @method $this withCredentialConfig($value)
1050
 * @method string getUser()
1051
 * @method $this withUser($value)
1052
 */
1053
class GetWebofficeURL extends Rpc
1054
{
1055
}
1056
1057
/**
1058
 * @method string getFile()
1059
 * @method $this withFile($value)
1060
 * @method string getNotifyEndpoint()
1061
 * @method $this withNotifyEndpoint($value)
1062
 * @method string getDatasetName()
1063
 * @method $this withDatasetName($value)
1064
 * @method string getProjectName()
1065
 * @method $this withProjectName($value)
1066
 * @method string getNotifyTopicName()
1067
 * @method $this withNotifyTopicName($value)
1068
 */
1069
class IndexFileMeta extends Rpc
1070
{
1071
}
1072
1073
/**
1074
 * @method string getNextToken()
1075
 * @method $this withNextToken($value)
1076
 * @method string getDatasetName()
1077
 * @method $this withDatasetName($value)
1078
 * @method string getProjectName()
1079
 * @method $this withProjectName($value)
1080
 * @method string getMaxResults()
1081
 * @method $this withMaxResults($value)
1082
 */
1083
class ListBindings extends Rpc
1084
{
1085
}
1086
1087
/**
1088
 * @method string getPrefix()
1089
 * @method $this withPrefix($value)
1090
 * @method string getNextToken()
1091
 * @method $this withNextToken($value)
1092
 * @method string getProjectName()
1093
 * @method $this withProjectName($value)
1094
 * @method string getMaxResults()
1095
 * @method $this withMaxResults($value)
1096
 */
1097
class ListDatasets extends Rpc
1098
{
1099
}
1100
1101
/**
1102
 * @method string getPrefix()
1103
 * @method $this withPrefix($value)
1104
 * @method string getNextToken()
1105
 * @method $this withNextToken($value)
1106
 * @method string getMaxResults()
1107
 * @method $this withMaxResults($value)
1108
 */
1109
class ListProjects extends Rpc
1110
{
1111
}
1112
1113
/**
1114
 * @method string getAcceptLanguage()
1115
 * @method $this withAcceptLanguage($value)
1116
 */
1117
class ListRegions extends Rpc
1118
{
1119
}
1120
1121
/**
1122
 * @method string getStartTimeRange()
1123
 * @method $this withStartTimeRange($value)
1124
 * @method string getNextToken()
1125
 * @method $this withNextToken($value)
1126
 * @method string getOrder()
1127
 * @method $this withOrder($value)
1128
 * @method string getProjectName()
1129
 * @method $this withProjectName($value)
1130
 * @method string getTaskTypes()
1131
 * @method $this withTaskTypes($value)
1132
 * @method string getEndTimeRange()
1133
 * @method $this withEndTimeRange($value)
1134
 * @method string getSort()
1135
 * @method $this withSort($value)
1136
 * @method string getMaxResults()
1137
 * @method $this withMaxResults($value)
1138
 * @method string getTagSelector()
1139
 * @method $this withTagSelector($value)
1140
 * @method string getStatus()
1141
 * @method $this withStatus($value)
1142
 */
1143
class ListTasks extends Rpc
1144
{
1145
}
1146
1147
/**
1148
 * @method string getNotifyTopicEndpoint()
1149
 * @method $this withNotifyTopicEndpoint($value)
1150
 * @method string getDatasetName()
1151
 * @method $this withDatasetName($value)
1152
 * @method string getCustomMessage()
1153
 * @method $this withCustomMessage($value)
1154
 * @method string getClusterIdFrom()
1155
 * @method $this withClusterIdFrom($value)
1156
 * @method string getProjectName()
1157
 * @method $this withProjectName($value)
1158
 * @method string getNotifyTopicName()
1159
 * @method $this withNotifyTopicName($value)
1160
 * @method string getFigureType()
1161
 * @method $this withFigureType($value)
1162
 * @method string getClusterIdTo()
1163
 * @method $this withClusterIdTo($value)
1164
 */
1165
class MergeFigureClusters extends Rpc
1166
{
1167
}
1168
1169
/**
1170
 * @method string getCustomLabels()
1171
 * @method $this withCustomLabels($value)
1172
 * @method string getNextToken()
1173
 * @method $this withNextToken($value)
1174
 * @method string getDatasetName()
1175
 * @method $this withDatasetName($value)
1176
 * @method string getOrder()
1177
 * @method $this withOrder($value)
1178
 * @method string getProjectName()
1179
 * @method $this withProjectName($value)
1180
 * @method string getSort()
1181
 * @method $this withSort($value)
1182
 * @method string getMaxResults()
1183
 * @method $this withMaxResults($value)
1184
 */
1185
class QueryFigureClusters extends Rpc
1186
{
1187
}
1188
1189
/**
1190
 * @method string getFigureClusterIds()
1191
 * @method $this withFigureClusterIds($value)
1192
 * @method string getCustomLabels()
1193
 * @method $this withCustomLabels($value)
1194
 * @method string getWithEmptyStories()
1195
 * @method $this withWithEmptyStories($value)
1196
 * @method string getOrder()
1197
 * @method $this withOrder($value)
1198
 * @method string getProjectName()
1199
 * @method $this withProjectName($value)
1200
 * @method string getSort()
1201
 * @method $this withSort($value)
1202
 * @method string getStoryType()
1203
 * @method $this withStoryType($value)
1204
 * @method string getStoryStartTimeRange()
1205
 * @method $this withStoryStartTimeRange($value)
1206
 * @method string getStorySubType()
1207
 * @method $this withStorySubType($value)
1208
 * @method string getMaxResults()
1209
 * @method $this withMaxResults($value)
1210
 * @method string getNextToken()
1211
 * @method $this withNextToken($value)
1212
 * @method string getDatasetName()
1213
 * @method $this withDatasetName($value)
1214
 * @method string getStoryEndTimeRange()
1215
 * @method $this withStoryEndTimeRange($value)
1216
 * @method string getCreateTimeRange()
1217
 * @method $this withCreateTimeRange($value)
1218
 * @method string getObjectId()
1219
 * @method $this withObjectId($value)
1220
 * @method string getStoryName()
1221
 * @method $this withStoryName($value)
1222
 */
1223
class QueryStories extends Rpc
1224
{
1225
}
1226
1227
/**
1228
 * @method string getAccessToken()
1229
 * @method $this withAccessToken($value)
1230
 * @method string getRefreshToken()
1231
 * @method $this withRefreshToken($value)
1232
 * @method string getProjectName()
1233
 * @method $this withProjectName($value)
1234
 * @method string getCredentialConfig()
1235
 * @method $this withCredentialConfig($value)
1236
 */
1237
class RefreshWebofficeToken extends Rpc
1238
{
1239
}
1240
1241
/**
1242
 * @method string getDatasetName()
1243
 * @method string getProjectName()
1244
 * @method string getFiles()
1245
 * @method string getObjectId()
1246
 */
1247
class RemoveStoryFiles extends Rpc
1248
{
1249
1250
    /**
1251
     * @param string $value
1252
     *
1253
     * @return $this
1254
     */
1255
    public function withDatasetName($value)
1256
    {
1257
        $this->data['DatasetName'] = $value;
1258
        $this->options['form_params']['DatasetName'] = $value;
1259
1260
        return $this;
1261
    }
1262
1263
    /**
1264
     * @param string $value
1265
     *
1266
     * @return $this
1267
     */
1268
    public function withProjectName($value)
1269
    {
1270
        $this->data['ProjectName'] = $value;
1271
        $this->options['form_params']['ProjectName'] = $value;
1272
1273
        return $this;
1274
    }
1275
1276
    /**
1277
     * @param string $value
1278
     *
1279
     * @return $this
1280
     */
1281
    public function withFiles($value)
1282
    {
1283
        $this->data['Files'] = $value;
1284
        $this->options['form_params']['Files'] = $value;
1285
1286
        return $this;
1287
    }
1288
1289
    /**
1290
     * @param string $value
1291
     *
1292
     * @return $this
1293
     */
1294
    public function withObjectId($value)
1295
    {
1296
        $this->data['ObjectId'] = $value;
1297
        $this->options['form_params']['ObjectId'] = $value;
1298
1299
        return $this;
1300
    }
1301
}
1302
1303
/**
1304
 * @method string getDatasetName()
1305
 * @method $this withDatasetName($value)
1306
 * @method string getProjectName()
1307
 * @method $this withProjectName($value)
1308
 * @method string getURI()
1309
 * @method $this withURI($value)
1310
 */
1311
class ResumeBinding extends Rpc
1312
{
1313
}
1314
1315
/**
1316
 * @method string getNextToken()
1317
 * @method $this withNextToken($value)
1318
 * @method string getDatasetName()
1319
 * @method $this withDatasetName($value)
1320
 * @method string getProjectName()
1321
 * @method $this withProjectName($value)
1322
 * @method string getQuery()
1323
 * @method $this withQuery($value)
1324
 * @method string getMaxResults()
1325
 * @method $this withMaxResults($value)
1326
 */
1327
class SemanticQuery extends Rpc
1328
{
1329
}
1330
1331
/**
1332
 * @method string getNextToken()
1333
 * @method $this withNextToken($value)
1334
 * @method string getDatasetName()
1335
 * @method $this withDatasetName($value)
1336
 * @method string getOrder()
1337
 * @method $this withOrder($value)
1338
 * @method string getProjectName()
1339
 * @method $this withProjectName($value)
1340
 * @method string getQuery()
1341
 * @method $this withQuery($value)
1342
 * @method string getSort()
1343
 * @method $this withSort($value)
1344
 * @method string getWithFields()
1345
 * @method $this withWithFields($value)
1346
 * @method string getMaxResults()
1347
 * @method $this withMaxResults($value)
1348
 * @method string getAggregations()
1349
 * @method $this withAggregations($value)
1350
 */
1351
class SimpleQuery extends Rpc
1352
{
1353
}
1354
1355
/**
1356
 * @method string getReason()
1357
 * @method $this withReason($value)
1358
 * @method string getDatasetName()
1359
 * @method $this withDatasetName($value)
1360
 * @method string getProjectName()
1361
 * @method $this withProjectName($value)
1362
 * @method string getURI()
1363
 * @method $this withURI($value)
1364
 */
1365
class StopBinding extends Rpc
1366
{
1367
}
1368
1369
/**
1370
 * @method string getDatasetMaxBindCount()
1371
 * @method $this withDatasetMaxBindCount($value)
1372
 * @method string getDescription()
1373
 * @method $this withDescription($value)
1374
 * @method string getDatasetMaxRelationCount()
1375
 * @method $this withDatasetMaxRelationCount($value)
1376
 * @method string getDatasetName()
1377
 * @method $this withDatasetName($value)
1378
 * @method string getDatasetMaxFileCount()
1379
 * @method $this withDatasetMaxFileCount($value)
1380
 * @method string getProjectName()
1381
 * @method $this withProjectName($value)
1382
 * @method string getDatasetMaxEntityCount()
1383
 * @method $this withDatasetMaxEntityCount($value)
1384
 * @method string getTemplateId()
1385
 * @method $this withTemplateId($value)
1386
 * @method string getDatasetMaxTotalFileSize()
1387
 * @method $this withDatasetMaxTotalFileSize($value)
1388
 */
1389
class UpdateDataset extends Rpc
1390
{
1391
}
1392
1393
/**
1394
 * @method string getDatasetName()
1395
 * @method $this withDatasetName($value)
1396
 * @method string getProjectName()
1397
 * @method $this withProjectName($value)
1398
 * @method string getFigureCluster()
1399
 * @method $this withFigureCluster($value)
1400
 */
1401
class UpdateFigureCluster extends Rpc
1402
{
1403
}
1404
1405
/**
1406
 * @method string getFile()
1407
 * @method $this withFile($value)
1408
 * @method string getDatasetName()
1409
 * @method $this withDatasetName($value)
1410
 * @method string getProjectName()
1411
 * @method $this withProjectName($value)
1412
 */
1413
class UpdateFileMeta extends Rpc
1414
{
1415
}
1416
1417
/**
1418
 * @method string getEngineConcurrency()
1419
 * @method $this withEngineConcurrency($value)
1420
 * @method string getDatasetMaxBindCount()
1421
 * @method $this withDatasetMaxBindCount($value)
1422
 * @method string getDescription()
1423
 * @method $this withDescription($value)
1424
 * @method string getProjectQueriesPerSecond()
1425
 * @method $this withProjectQueriesPerSecond($value)
1426
 * @method string getDatasetMaxRelationCount()
1427
 * @method $this withDatasetMaxRelationCount($value)
1428
 * @method string getDatasetMaxFileCount()
1429
 * @method $this withDatasetMaxFileCount($value)
1430
 * @method string getProjectName()
1431
 * @method $this withProjectName($value)
1432
 * @method string getProjectMaxDatasetCount()
1433
 * @method $this withProjectMaxDatasetCount($value)
1434
 * @method string getDatasetMaxEntityCount()
1435
 * @method $this withDatasetMaxEntityCount($value)
1436
 * @method string getTemplateId()
1437
 * @method $this withTemplateId($value)
1438
 * @method string getDatasetMaxTotalFileSize()
1439
 * @method $this withDatasetMaxTotalFileSize($value)
1440
 * @method string getServiceRole()
1441
 * @method $this withServiceRole($value)
1442
 */
1443
class UpdateProject extends Rpc
1444
{
1445
}
1446
1447
/**
1448
 * @method string getCustomLabels()
1449
 * @method string getCover()
1450
 * @method string getDatasetName()
1451
 * @method string getProjectName()
1452
 * @method string getCustomId()
1453
 * @method string getObjectId()
1454
 * @method string getStoryName()
1455
 */
1456
class UpdateStory extends Rpc
1457
{
1458
1459
    /**
1460
     * @param string $value
1461
     *
1462
     * @return $this
1463
     */
1464
    public function withCustomLabels($value)
1465
    {
1466
        $this->data['CustomLabels'] = $value;
1467
        $this->options['form_params']['CustomLabels'] = $value;
1468
1469
        return $this;
1470
    }
1471
1472
    /**
1473
     * @param string $value
1474
     *
1475
     * @return $this
1476
     */
1477
    public function withCover($value)
1478
    {
1479
        $this->data['Cover'] = $value;
1480
        $this->options['form_params']['Cover'] = $value;
1481
1482
        return $this;
1483
    }
1484
1485
    /**
1486
     * @param string $value
1487
     *
1488
     * @return $this
1489
     */
1490
    public function withDatasetName($value)
1491
    {
1492
        $this->data['DatasetName'] = $value;
1493
        $this->options['form_params']['DatasetName'] = $value;
1494
1495
        return $this;
1496
    }
1497
1498
    /**
1499
     * @param string $value
1500
     *
1501
     * @return $this
1502
     */
1503
    public function withProjectName($value)
1504
    {
1505
        $this->data['ProjectName'] = $value;
1506
        $this->options['form_params']['ProjectName'] = $value;
1507
1508
        return $this;
1509
    }
1510
1511
    /**
1512
     * @param string $value
1513
     *
1514
     * @return $this
1515
     */
1516
    public function withCustomId($value)
1517
    {
1518
        $this->data['CustomId'] = $value;
1519
        $this->options['form_params']['CustomId'] = $value;
1520
1521
        return $this;
1522
    }
1523
1524
    /**
1525
     * @param string $value
1526
     *
1527
     * @return $this
1528
     */
1529
    public function withObjectId($value)
1530
    {
1531
        $this->data['ObjectId'] = $value;
1532
        $this->options['form_params']['ObjectId'] = $value;
1533
1534
        return $this;
1535
    }
1536
1537
    /**
1538
     * @param string $value
1539
     *
1540
     * @return $this
1541
     */
1542
    public function withStoryName($value)
1543
    {
1544
        $this->data['StoryName'] = $value;
1545
        $this->options['form_params']['StoryName'] = $value;
1546
1547
        return $this;
1548
    }
1549
}
1550