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 ( efc6fb...66a01b )
by
unknown
07:50
created

ListDevopsProjects::withPageToken()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\DevopsRdc\V20200303;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method BatchInsertMembers batchInsertMembers(array $options = [])
9
 * @method CancelPipeline cancelPipeline(array $options = [])
10
 * @method CheckAliyunAccountExists checkAliyunAccountExists(array $options = [])
11
 * @method CreateCommonGroup createCommonGroup(array $options = [])
12
 * @method CreateCredential createCredential(array $options = [])
13
 * @method CreateDevopsOrganization createDevopsOrganization(array $options = [])
14
 * @method CreateDevopsProject createDevopsProject(array $options = [])
15
 * @method CreateDevopsProjectSprint createDevopsProjectSprint(array $options = [])
16
 * @method CreateDevopsProjectTask createDevopsProjectTask(array $options = [])
17
 * @method CreatePipeline createPipeline(array $options = [])
18
 * @method CreateServiceConnection createServiceConnection(array $options = [])
19
 * @method DeleteCommonGroup deleteCommonGroup(array $options = [])
20
 * @method DeleteDevopsOrganization deleteDevopsOrganization(array $options = [])
21
 * @method DeleteDevopsOrganizationMembers deleteDevopsOrganizationMembers(array $options = [])
22
 * @method DeleteDevopsProject deleteDevopsProject(array $options = [])
23
 * @method DeleteDevopsProjectMembers deleteDevopsProjectMembers(array $options = [])
24
 * @method DeleteDevopsProjectSprint deleteDevopsProjectSprint(array $options = [])
25
 * @method DeleteDevopsProjectTask deleteDevopsProjectTask(array $options = [])
26
 * @method DeletePipelineMember deletePipelineMember(array $options = [])
27
 * @method ExecutePipeline executePipeline(array $options = [])
28
 * @method GetDevopsOrganizationMembers getDevopsOrganizationMembers(array $options = [])
29
 * @method GetDevopsProjectInfo getDevopsProjectInfo(array $options = [])
30
 * @method GetDevopsProjectMembers getDevopsProjectMembers(array $options = [])
31
 * @method GetDevopsProjectSprintInfo getDevopsProjectSprintInfo(array $options = [])
32
 * @method GetDevopsProjectTaskInfo getDevopsProjectTaskInfo(array $options = [])
33
 * @method GetLastWorkspace getLastWorkspace(array $options = [])
34
 * @method GetPipelineInstanceBuildNumberStatus getPipelineInstanceBuildNumberStatus(array $options = [])
35
 * @method GetPipelineInstanceGroupStatus getPipelineInstanceGroupStatus(array $options = [])
36
 * @method GetPipelineInstanceInfo getPipelineInstanceInfo(array $options = [])
37
 * @method GetPipelineInstanceStatus getPipelineInstanceStatus(array $options = [])
38
 * @method GetPipelineInstHistory getPipelineInstHistory(array $options = [])
39
 * @method GetPipelineLog getPipelineLog(array $options = [])
40
 * @method GetPipelineStepLog getPipelineStepLog(array $options = [])
41
 * @method GetPipleineLatestInstanceStatus getPipleineLatestInstanceStatus(array $options = [])
42
 * @method GetProjectOption getProjectOption(array $options = [])
43
 * @method GetTaskDetailActivity getTaskDetailActivity(array $options = [])
44
 * @method GetTaskDetailBase getTaskDetailBase(array $options = [])
45
 * @method GetTaskListFilter getTaskListFilter(array $options = [])
46
 * @method GetUserByAliyunUid getUserByAliyunUid(array $options = [])
47
 * @method GetUserName getUserName(array $options = [])
48
 * @method InsertDevopsUser insertDevopsUser(array $options = [])
49
 * @method InsertPipelineMember insertPipelineMember(array $options = [])
50
 * @method InsertProjectMembers insertProjectMembers(array $options = [])
51
 * @method ListCommonGroup listCommonGroup(array $options = [])
52
 * @method ListCredentials listCredentials(array $options = [])
53
 * @method ListDevopsProjects listDevopsProjects(array $options = [])
54
 * @method ListDevopsProjectSprints listDevopsProjectSprints(array $options = [])
55
 * @method ListDevopsProjectTaskFlow listDevopsProjectTaskFlow(array $options = [])
56
 * @method ListDevopsProjectTaskFlowStatus listDevopsProjectTaskFlowStatus(array $options = [])
57
 * @method ListDevopsProjectTaskList listDevopsProjectTaskList(array $options = [])
58
 * @method ListDevopsProjectTasks listDevopsProjectTasks(array $options = [])
59
 * @method ListDevopsScenarioFieldConfig listDevopsScenarioFieldConfig(array $options = [])
60
 * @method ListPipelines listPipelines(array $options = [])
61
 * @method ListProjectCustomFields listProjectCustomFields(array $options = [])
62
 * @method ListServiceConnections listServiceConnections(array $options = [])
63
 * @method ListSmartGroup listSmartGroup(array $options = [])
64
 * @method ListUserOrganization listUserOrganization(array $options = [])
65
 * @method TransferPipelineOwner transferPipelineOwner(array $options = [])
66
 * @method UpdateCommonGroup updateCommonGroup(array $options = [])
67
 * @method UpdateDevopsProject updateDevopsProject(array $options = [])
68
 * @method UpdateDevopsProjectSprint updateDevopsProjectSprint(array $options = [])
69
 * @method UpdateDevopsProjectTask updateDevopsProjectTask(array $options = [])
70
 * @method UpdatePipelineMember updatePipelineMember(array $options = [])
71
 * @method UpdateTaskDetail updateTaskDetail(array $options = [])
72
 */
73
class DevopsRdcApiResolver extends ApiResolver
74
{
75
}
76
77
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
78
{
79
    /** @var string */
80
    public $product = 'devops-rdc';
81
82
    /** @var string */
83
    public $version = '2020-03-03';
84
85
    /** @var string */
86
    public $method = 'POST';
87
}
88
89
/**
90
 * @method string getMembers()
91
 * @method string getRealPk()
92
 * @method string getOrgId()
93
 */
94
class BatchInsertMembers extends Rpc
95
{
96
97
    /**
98
     * @param string $value
99
     *
100
     * @return $this
101
     */
102
    public function withMembers($value)
103
    {
104
        $this->data['Members'] = $value;
105
        $this->options['form_params']['Members'] = $value;
106
107
        return $this;
108
    }
109
110
    /**
111
     * @param string $value
112
     *
113
     * @return $this
114
     */
115
    public function withRealPk($value)
116
    {
117
        $this->data['RealPk'] = $value;
118
        $this->options['form_params']['RealPk'] = $value;
119
120
        return $this;
121
    }
122
123
    /**
124
     * @param string $value
125
     *
126
     * @return $this
127
     */
128
    public function withOrgId($value)
129
    {
130
        $this->data['OrgId'] = $value;
131
        $this->options['form_params']['OrgId'] = $value;
132
133
        return $this;
134
    }
135
}
136
137
/**
138
 * @method string getFlowInstanceId()
139
 * @method string getUserPk()
140
 * @method string getOrgId()
141
 * @method string getPipelineId()
142
 */
143
class CancelPipeline extends Rpc
144
{
145
146
    /**
147
     * @param string $value
148
     *
149
     * @return $this
150
     */
151
    public function withFlowInstanceId($value)
152
    {
153
        $this->data['FlowInstanceId'] = $value;
154
        $this->options['form_params']['FlowInstanceId'] = $value;
155
156
        return $this;
157
    }
158
159
    /**
160
     * @param string $value
161
     *
162
     * @return $this
163
     */
164
    public function withUserPk($value)
165
    {
166
        $this->data['UserPk'] = $value;
167
        $this->options['form_params']['UserPk'] = $value;
168
169
        return $this;
170
    }
171
172
    /**
173
     * @param string $value
174
     *
175
     * @return $this
176
     */
177
    public function withOrgId($value)
178
    {
179
        $this->data['OrgId'] = $value;
180
        $this->options['form_params']['OrgId'] = $value;
181
182
        return $this;
183
    }
184
185
    /**
186
     * @param string $value
187
     *
188
     * @return $this
189
     */
190
    public function withPipelineId($value)
191
    {
192
        $this->data['PipelineId'] = $value;
193
        $this->options['form_params']['PipelineId'] = $value;
194
195
        return $this;
196
    }
197
}
198
199
/**
200
 * @method string getUserPk()
201
 */
202
class CheckAliyunAccountExists extends Rpc
203
{
204
205
    /**
206
     * @param string $value
207
     *
208
     * @return $this
209
     */
210
    public function withUserPk($value)
211
    {
212
        $this->data['UserPk'] = $value;
213
        $this->options['form_params']['UserPk'] = $value;
214
215
        return $this;
216
    }
217
}
218
219
/**
220
 * @method string getSmartGroupId()
221
 * @method string getName()
222
 * @method string getDescription()
223
 * @method string getProjectId()
224
 * @method string getOrgId()
225
 */
226
class CreateCommonGroup extends Rpc
227
{
228
229
    /**
230
     * @param string $value
231
     *
232
     * @return $this
233
     */
234
    public function withSmartGroupId($value)
235
    {
236
        $this->data['SmartGroupId'] = $value;
237
        $this->options['form_params']['SmartGroupId'] = $value;
238
239
        return $this;
240
    }
241
242
    /**
243
     * @param string $value
244
     *
245
     * @return $this
246
     */
247
    public function withName($value)
248
    {
249
        $this->data['Name'] = $value;
250
        $this->options['form_params']['Name'] = $value;
251
252
        return $this;
253
    }
254
255
    /**
256
     * @param string $value
257
     *
258
     * @return $this
259
     */
260
    public function withDescription($value)
261
    {
262
        $this->data['Description'] = $value;
263
        $this->options['form_params']['Description'] = $value;
264
265
        return $this;
266
    }
267
268
    /**
269
     * @param string $value
270
     *
271
     * @return $this
272
     */
273
    public function withProjectId($value)
274
    {
275
        $this->data['ProjectId'] = $value;
276
        $this->options['form_params']['ProjectId'] = $value;
277
278
        return $this;
279
    }
280
281
    /**
282
     * @param string $value
283
     *
284
     * @return $this
285
     */
286
    public function withOrgId($value)
287
    {
288
        $this->data['OrgId'] = $value;
289
        $this->options['form_params']['OrgId'] = $value;
290
291
        return $this;
292
    }
293
}
294
295
/**
296
 * @method string getType()
297
 * @method string getUserPk()
298
 * @method string getOrgId()
299
 * @method string getPassword()
300
 * @method string getName()
301
 * @method string getUserName()
302
 */
303
class CreateCredential extends Rpc
304
{
305
306
    /**
307
     * @param string $value
308
     *
309
     * @return $this
310
     */
311
    public function withType($value)
312
    {
313
        $this->data['Type'] = $value;
314
        $this->options['form_params']['Type'] = $value;
315
316
        return $this;
317
    }
318
319
    /**
320
     * @param string $value
321
     *
322
     * @return $this
323
     */
324
    public function withUserPk($value)
325
    {
326
        $this->data['UserPk'] = $value;
327
        $this->options['form_params']['UserPk'] = $value;
328
329
        return $this;
330
    }
331
332
    /**
333
     * @param string $value
334
     *
335
     * @return $this
336
     */
337
    public function withOrgId($value)
338
    {
339
        $this->data['OrgId'] = $value;
340
        $this->options['form_params']['OrgId'] = $value;
341
342
        return $this;
343
    }
344
345
    /**
346
     * @param string $value
347
     *
348
     * @return $this
349
     */
350
    public function withPassword($value)
351
    {
352
        $this->data['Password'] = $value;
353
        $this->options['form_params']['Password'] = $value;
354
355
        return $this;
356
    }
357
358
    /**
359
     * @param string $value
360
     *
361
     * @return $this
362
     */
363
    public function withName($value)
364
    {
365
        $this->data['Name'] = $value;
366
        $this->options['form_params']['Name'] = $value;
367
368
        return $this;
369
    }
370
371
    /**
372
     * @param string $value
373
     *
374
     * @return $this
375
     */
376
    public function withUserName($value)
377
    {
378
        $this->data['UserName'] = $value;
379
        $this->options['form_params']['UserName'] = $value;
380
381
        return $this;
382
    }
383
}
384
385
/**
386
 * @method string getOrgName()
387
 * @method string getSource()
388
 * @method string getRealPk()
389
 * @method string getDesiredMemberCount()
390
 */
391
class CreateDevopsOrganization extends Rpc
392
{
393
394
    /**
395
     * @param string $value
396
     *
397
     * @return $this
398
     */
399
    public function withOrgName($value)
400
    {
401
        $this->data['OrgName'] = $value;
402
        $this->options['form_params']['OrgName'] = $value;
403
404
        return $this;
405
    }
406
407
    /**
408
     * @param string $value
409
     *
410
     * @return $this
411
     */
412
    public function withSource($value)
413
    {
414
        $this->data['Source'] = $value;
415
        $this->options['form_params']['Source'] = $value;
416
417
        return $this;
418
    }
419
420
    /**
421
     * @param string $value
422
     *
423
     * @return $this
424
     */
425
    public function withRealPk($value)
426
    {
427
        $this->data['RealPk'] = $value;
428
        $this->options['form_params']['RealPk'] = $value;
429
430
        return $this;
431
    }
432
433
    /**
434
     * @param string $value
435
     *
436
     * @return $this
437
     */
438
    public function withDesiredMemberCount($value)
439
    {
440
        $this->data['DesiredMemberCount'] = $value;
441
        $this->options['form_params']['DesiredMemberCount'] = $value;
442
443
        return $this;
444
    }
445
}
446
447
/**
448
 * @method string getName()
449
 * @method string getDescription()
450
 * @method string getOrgId()
451
 */
452
class CreateDevopsProject extends Rpc
453
{
454
455
    /**
456
     * @param string $value
457
     *
458
     * @return $this
459
     */
460
    public function withName($value)
461
    {
462
        $this->data['Name'] = $value;
463
        $this->options['form_params']['Name'] = $value;
464
465
        return $this;
466
    }
467
468
    /**
469
     * @param string $value
470
     *
471
     * @return $this
472
     */
473
    public function withDescription($value)
474
    {
475
        $this->data['Description'] = $value;
476
        $this->options['form_params']['Description'] = $value;
477
478
        return $this;
479
    }
480
481
    /**
482
     * @param string $value
483
     *
484
     * @return $this
485
     */
486
    public function withOrgId($value)
487
    {
488
        $this->data['OrgId'] = $value;
489
        $this->options['form_params']['OrgId'] = $value;
490
491
        return $this;
492
    }
493
}
494
495
/**
496
 * @method string getExecutorId()
497
 * @method string getDescription()
498
 * @method string getStartDate()
499
 * @method string getOrgId()
500
 * @method string getDueDate()
501
 * @method string getName()
502
 * @method string getProjectId()
503
 */
504
class CreateDevopsProjectSprint extends Rpc
505
{
506
507
    /**
508
     * @param string $value
509
     *
510
     * @return $this
511
     */
512
    public function withExecutorId($value)
513
    {
514
        $this->data['ExecutorId'] = $value;
515
        $this->options['form_params']['ExecutorId'] = $value;
516
517
        return $this;
518
    }
519
520
    /**
521
     * @param string $value
522
     *
523
     * @return $this
524
     */
525
    public function withDescription($value)
526
    {
527
        $this->data['Description'] = $value;
528
        $this->options['form_params']['Description'] = $value;
529
530
        return $this;
531
    }
532
533
    /**
534
     * @param string $value
535
     *
536
     * @return $this
537
     */
538
    public function withStartDate($value)
539
    {
540
        $this->data['StartDate'] = $value;
541
        $this->options['form_params']['StartDate'] = $value;
542
543
        return $this;
544
    }
545
546
    /**
547
     * @param string $value
548
     *
549
     * @return $this
550
     */
551
    public function withOrgId($value)
552
    {
553
        $this->data['OrgId'] = $value;
554
        $this->options['form_params']['OrgId'] = $value;
555
556
        return $this;
557
    }
558
559
    /**
560
     * @param string $value
561
     *
562
     * @return $this
563
     */
564
    public function withDueDate($value)
565
    {
566
        $this->data['DueDate'] = $value;
567
        $this->options['form_params']['DueDate'] = $value;
568
569
        return $this;
570
    }
571
572
    /**
573
     * @param string $value
574
     *
575
     * @return $this
576
     */
577
    public function withName($value)
578
    {
579
        $this->data['Name'] = $value;
580
        $this->options['form_params']['Name'] = $value;
581
582
        return $this;
583
    }
584
585
    /**
586
     * @param string $value
587
     *
588
     * @return $this
589
     */
590
    public function withProjectId($value)
591
    {
592
        $this->data['ProjectId'] = $value;
593
        $this->options['form_params']['ProjectId'] = $value;
594
595
        return $this;
596
    }
597
}
598
599
/**
600
 * @method string getNote()
601
 * @method string getVisible()
602
 * @method string getExecutorId()
603
 * @method string getTaskFlowStatusId()
604
 * @method string getStartDate()
605
 * @method string getPriority()
606
 * @method string getParentTaskId()
607
 * @method string getOrgId()
608
 * @method string getContent()
609
 * @method string getSprintId()
610
 * @method string getDueDate()
611
 * @method string getScenarioFieldConfigId()
612
 * @method string getProjectId()
613
 * @method string getTaskListId()
614
 */
615
class CreateDevopsProjectTask extends Rpc
616
{
617
618
    /**
619
     * @param string $value
620
     *
621
     * @return $this
622
     */
623
    public function withNote($value)
624
    {
625
        $this->data['Note'] = $value;
626
        $this->options['form_params']['Note'] = $value;
627
628
        return $this;
629
    }
630
631
    /**
632
     * @param string $value
633
     *
634
     * @return $this
635
     */
636
    public function withVisible($value)
637
    {
638
        $this->data['Visible'] = $value;
639
        $this->options['form_params']['Visible'] = $value;
640
641
        return $this;
642
    }
643
644
    /**
645
     * @param string $value
646
     *
647
     * @return $this
648
     */
649
    public function withExecutorId($value)
650
    {
651
        $this->data['ExecutorId'] = $value;
652
        $this->options['form_params']['ExecutorId'] = $value;
653
654
        return $this;
655
    }
656
657
    /**
658
     * @param string $value
659
     *
660
     * @return $this
661
     */
662
    public function withTaskFlowStatusId($value)
663
    {
664
        $this->data['TaskFlowStatusId'] = $value;
665
        $this->options['form_params']['TaskFlowStatusId'] = $value;
666
667
        return $this;
668
    }
669
670
    /**
671
     * @param string $value
672
     *
673
     * @return $this
674
     */
675
    public function withStartDate($value)
676
    {
677
        $this->data['StartDate'] = $value;
678
        $this->options['form_params']['StartDate'] = $value;
679
680
        return $this;
681
    }
682
683
    /**
684
     * @param string $value
685
     *
686
     * @return $this
687
     */
688
    public function withPriority($value)
689
    {
690
        $this->data['Priority'] = $value;
691
        $this->options['form_params']['Priority'] = $value;
692
693
        return $this;
694
    }
695
696
    /**
697
     * @param string $value
698
     *
699
     * @return $this
700
     */
701
    public function withParentTaskId($value)
702
    {
703
        $this->data['ParentTaskId'] = $value;
704
        $this->options['form_params']['ParentTaskId'] = $value;
705
706
        return $this;
707
    }
708
709
    /**
710
     * @param string $value
711
     *
712
     * @return $this
713
     */
714
    public function withOrgId($value)
715
    {
716
        $this->data['OrgId'] = $value;
717
        $this->options['form_params']['OrgId'] = $value;
718
719
        return $this;
720
    }
721
722
    /**
723
     * @param string $value
724
     *
725
     * @return $this
726
     */
727
    public function withContent($value)
728
    {
729
        $this->data['Content'] = $value;
730
        $this->options['form_params']['Content'] = $value;
731
732
        return $this;
733
    }
734
735
    /**
736
     * @param string $value
737
     *
738
     * @return $this
739
     */
740
    public function withSprintId($value)
741
    {
742
        $this->data['SprintId'] = $value;
743
        $this->options['form_params']['SprintId'] = $value;
744
745
        return $this;
746
    }
747
748
    /**
749
     * @param string $value
750
     *
751
     * @return $this
752
     */
753
    public function withDueDate($value)
754
    {
755
        $this->data['DueDate'] = $value;
756
        $this->options['form_params']['DueDate'] = $value;
757
758
        return $this;
759
    }
760
761
    /**
762
     * @param string $value
763
     *
764
     * @return $this
765
     */
766
    public function withScenarioFieldConfigId($value)
767
    {
768
        $this->data['ScenarioFieldConfigId'] = $value;
769
        $this->options['form_params']['ScenarioFieldConfigId'] = $value;
770
771
        return $this;
772
    }
773
774
    /**
775
     * @param string $value
776
     *
777
     * @return $this
778
     */
779
    public function withProjectId($value)
780
    {
781
        $this->data['ProjectId'] = $value;
782
        $this->options['form_params']['ProjectId'] = $value;
783
784
        return $this;
785
    }
786
787
    /**
788
     * @param string $value
789
     *
790
     * @return $this
791
     */
792
    public function withTaskListId($value)
793
    {
794
        $this->data['TaskListId'] = $value;
795
        $this->options['form_params']['TaskListId'] = $value;
796
797
        return $this;
798
    }
799
}
800
801
/**
802
 * @method string getPipeline()
803
 * @method string getUserPk()
804
 * @method string getOrgId()
805
 */
806
class CreatePipeline extends Rpc
807
{
808
809
    /**
810
     * @param string $value
811
     *
812
     * @return $this
813
     */
814
    public function withPipeline($value)
815
    {
816
        $this->data['Pipeline'] = $value;
817
        $this->options['form_params']['Pipeline'] = $value;
818
819
        return $this;
820
    }
821
822
    /**
823
     * @param string $value
824
     *
825
     * @return $this
826
     */
827
    public function withUserPk($value)
828
    {
829
        $this->data['UserPk'] = $value;
830
        $this->options['form_params']['UserPk'] = $value;
831
832
        return $this;
833
    }
834
835
    /**
836
     * @param string $value
837
     *
838
     * @return $this
839
     */
840
    public function withOrgId($value)
841
    {
842
        $this->data['OrgId'] = $value;
843
        $this->options['form_params']['OrgId'] = $value;
844
845
        return $this;
846
    }
847
}
848
849
/**
850
 * @method string getServiceConnectionType()
851
 * @method string getUserPk()
852
 * @method string getOrgId()
853
 */
854
class CreateServiceConnection extends Rpc
855
{
856
857
    /**
858
     * @param string $value
859
     *
860
     * @return $this
861
     */
862
    public function withServiceConnectionType($value)
863
    {
864
        $this->data['ServiceConnectionType'] = $value;
865
        $this->options['form_params']['ServiceConnectionType'] = $value;
866
867
        return $this;
868
    }
869
870
    /**
871
     * @param string $value
872
     *
873
     * @return $this
874
     */
875
    public function withUserPk($value)
876
    {
877
        $this->data['UserPk'] = $value;
878
        $this->options['form_params']['UserPk'] = $value;
879
880
        return $this;
881
    }
882
883
    /**
884
     * @param string $value
885
     *
886
     * @return $this
887
     */
888
    public function withOrgId($value)
889
    {
890
        $this->data['OrgId'] = $value;
891
        $this->options['form_params']['OrgId'] = $value;
892
893
        return $this;
894
    }
895
}
896
897
/**
898
 * @method string getProjectId()
899
 * @method string getCommonGroupId()
900
 * @method string getOrgId()
901
 */
902
class DeleteCommonGroup extends Rpc
903
{
904
905
    /**
906
     * @param string $value
907
     *
908
     * @return $this
909
     */
910
    public function withProjectId($value)
911
    {
912
        $this->data['ProjectId'] = $value;
913
        $this->options['form_params']['ProjectId'] = $value;
914
915
        return $this;
916
    }
917
918
    /**
919
     * @param string $value
920
     *
921
     * @return $this
922
     */
923
    public function withCommonGroupId($value)
924
    {
925
        $this->data['CommonGroupId'] = $value;
926
        $this->options['form_params']['CommonGroupId'] = $value;
927
928
        return $this;
929
    }
930
931
    /**
932
     * @param string $value
933
     *
934
     * @return $this
935
     */
936
    public function withOrgId($value)
937
    {
938
        $this->data['OrgId'] = $value;
939
        $this->options['form_params']['OrgId'] = $value;
940
941
        return $this;
942
    }
943
}
944
945
/**
946
 * @method string getOrgId()
947
 */
948
class DeleteDevopsOrganization extends Rpc
949
{
950
951
    /**
952
     * @param string $value
953
     *
954
     * @return $this
955
     */
956
    public function withOrgId($value)
957
    {
958
        $this->data['OrgId'] = $value;
959
        $this->options['form_params']['OrgId'] = $value;
960
961
        return $this;
962
    }
963
}
964
965
/**
966
 * @method string getRealPk()
967
 * @method string getUserId()
968
 * @method string getOrgId()
969
 */
970
class DeleteDevopsOrganizationMembers extends Rpc
971
{
972
973
    /**
974
     * @param string $value
975
     *
976
     * @return $this
977
     */
978
    public function withRealPk($value)
979
    {
980
        $this->data['RealPk'] = $value;
981
        $this->options['form_params']['RealPk'] = $value;
982
983
        return $this;
984
    }
985
986
    /**
987
     * @param string $value
988
     *
989
     * @return $this
990
     */
991
    public function withUserId($value)
992
    {
993
        $this->data['UserId'] = $value;
994
        $this->options['form_params']['UserId'] = $value;
995
996
        return $this;
997
    }
998
999
    /**
1000
     * @param string $value
1001
     *
1002
     * @return $this
1003
     */
1004
    public function withOrgId($value)
1005
    {
1006
        $this->data['OrgId'] = $value;
1007
        $this->options['form_params']['OrgId'] = $value;
1008
1009
        return $this;
1010
    }
1011
}
1012
1013
/**
1014
 * @method string getProjectId()
1015
 * @method string getOrgId()
1016
 */
1017
class DeleteDevopsProject extends Rpc
1018
{
1019
1020
    /**
1021
     * @param string $value
1022
     *
1023
     * @return $this
1024
     */
1025
    public function withProjectId($value)
1026
    {
1027
        $this->data['ProjectId'] = $value;
1028
        $this->options['form_params']['ProjectId'] = $value;
1029
1030
        return $this;
1031
    }
1032
1033
    /**
1034
     * @param string $value
1035
     *
1036
     * @return $this
1037
     */
1038
    public function withOrgId($value)
1039
    {
1040
        $this->data['OrgId'] = $value;
1041
        $this->options['form_params']['OrgId'] = $value;
1042
1043
        return $this;
1044
    }
1045
}
1046
1047
/**
1048
 * @method string getUserIds()
1049
 * @method string getProjectId()
1050
 * @method string getOrgId()
1051
 */
1052
class DeleteDevopsProjectMembers extends Rpc
1053
{
1054
1055
    /**
1056
     * @param string $value
1057
     *
1058
     * @return $this
1059
     */
1060
    public function withUserIds($value)
1061
    {
1062
        $this->data['UserIds'] = $value;
1063
        $this->options['form_params']['UserIds'] = $value;
1064
1065
        return $this;
1066
    }
1067
1068
    /**
1069
     * @param string $value
1070
     *
1071
     * @return $this
1072
     */
1073
    public function withProjectId($value)
1074
    {
1075
        $this->data['ProjectId'] = $value;
1076
        $this->options['form_params']['ProjectId'] = $value;
1077
1078
        return $this;
1079
    }
1080
1081
    /**
1082
     * @param string $value
1083
     *
1084
     * @return $this
1085
     */
1086
    public function withOrgId($value)
1087
    {
1088
        $this->data['OrgId'] = $value;
1089
        $this->options['form_params']['OrgId'] = $value;
1090
1091
        return $this;
1092
    }
1093
}
1094
1095
/**
1096
 * @method string getSprintId()
1097
 * @method string getOrgId()
1098
 */
1099
class DeleteDevopsProjectSprint extends Rpc
1100
{
1101
1102
    /**
1103
     * @param string $value
1104
     *
1105
     * @return $this
1106
     */
1107
    public function withSprintId($value)
1108
    {
1109
        $this->data['SprintId'] = $value;
1110
        $this->options['form_params']['SprintId'] = $value;
1111
1112
        return $this;
1113
    }
1114
1115
    /**
1116
     * @param string $value
1117
     *
1118
     * @return $this
1119
     */
1120
    public function withOrgId($value)
1121
    {
1122
        $this->data['OrgId'] = $value;
1123
        $this->options['form_params']['OrgId'] = $value;
1124
1125
        return $this;
1126
    }
1127
}
1128
1129
/**
1130
 * @method string getOrgId()
1131
 * @method string getTaskId()
1132
 */
1133
class DeleteDevopsProjectTask extends Rpc
1134
{
1135
1136
    /**
1137
     * @param string $value
1138
     *
1139
     * @return $this
1140
     */
1141
    public function withOrgId($value)
1142
    {
1143
        $this->data['OrgId'] = $value;
1144
        $this->options['form_params']['OrgId'] = $value;
1145
1146
        return $this;
1147
    }
1148
1149
    /**
1150
     * @param string $value
1151
     *
1152
     * @return $this
1153
     */
1154
    public function withTaskId($value)
1155
    {
1156
        $this->data['TaskId'] = $value;
1157
        $this->options['form_params']['TaskId'] = $value;
1158
1159
        return $this;
1160
    }
1161
}
1162
1163
/**
1164
 * @method string getUserPk()
1165
 * @method string getUserId()
1166
 * @method string getOrgId()
1167
 * @method $this withOrgId($value)
1168
 * @method string getPipelineId()
1169
 * @method $this withPipelineId($value)
1170
 */
1171
class DeletePipelineMember extends Rpc
1172
{
1173
1174
    /**
1175
     * @param string $value
1176
     *
1177
     * @return $this
1178
     */
1179
    public function withUserPk($value)
1180
    {
1181
        $this->data['UserPk'] = $value;
1182
        $this->options['form_params']['UserPk'] = $value;
1183
1184
        return $this;
1185
    }
1186
1187
    /**
1188
     * @param string $value
1189
     *
1190
     * @return $this
1191
     */
1192
    public function withUserId($value)
1193
    {
1194
        $this->data['UserId'] = $value;
1195
        $this->options['form_params']['UserId'] = $value;
1196
1197
        return $this;
1198
    }
1199
}
1200
1201
/**
1202
 * @method string getParameters()
1203
 * @method string getUserPk()
1204
 * @method string getOrgId()
1205
 * @method string getPipelineId()
1206
 */
1207
class ExecutePipeline extends Rpc
1208
{
1209
1210
    /**
1211
     * @param string $value
1212
     *
1213
     * @return $this
1214
     */
1215
    public function withParameters($value)
1216
    {
1217
        $this->data['Parameters'] = $value;
1218
        $this->options['form_params']['Parameters'] = $value;
1219
1220
        return $this;
1221
    }
1222
1223
    /**
1224
     * @param string $value
1225
     *
1226
     * @return $this
1227
     */
1228
    public function withUserPk($value)
1229
    {
1230
        $this->data['UserPk'] = $value;
1231
        $this->options['form_params']['UserPk'] = $value;
1232
1233
        return $this;
1234
    }
1235
1236
    /**
1237
     * @param string $value
1238
     *
1239
     * @return $this
1240
     */
1241
    public function withOrgId($value)
1242
    {
1243
        $this->data['OrgId'] = $value;
1244
        $this->options['form_params']['OrgId'] = $value;
1245
1246
        return $this;
1247
    }
1248
1249
    /**
1250
     * @param string $value
1251
     *
1252
     * @return $this
1253
     */
1254
    public function withPipelineId($value)
1255
    {
1256
        $this->data['PipelineId'] = $value;
1257
        $this->options['form_params']['PipelineId'] = $value;
1258
1259
        return $this;
1260
    }
1261
}
1262
1263
/**
1264
 * @method string getOrgId()
1265
 */
1266
class GetDevopsOrganizationMembers extends Rpc
1267
{
1268
1269
    /**
1270
     * @param string $value
1271
     *
1272
     * @return $this
1273
     */
1274
    public function withOrgId($value)
1275
    {
1276
        $this->data['OrgId'] = $value;
1277
        $this->options['form_params']['OrgId'] = $value;
1278
1279
        return $this;
1280
    }
1281
}
1282
1283
/**
1284
 * @method string getProjectId()
1285
 * @method string getOrgId()
1286
 */
1287
class GetDevopsProjectInfo extends Rpc
1288
{
1289
1290
    /**
1291
     * @param string $value
1292
     *
1293
     * @return $this
1294
     */
1295
    public function withProjectId($value)
1296
    {
1297
        $this->data['ProjectId'] = $value;
1298
        $this->options['form_params']['ProjectId'] = $value;
1299
1300
        return $this;
1301
    }
1302
1303
    /**
1304
     * @param string $value
1305
     *
1306
     * @return $this
1307
     */
1308
    public function withOrgId($value)
1309
    {
1310
        $this->data['OrgId'] = $value;
1311
        $this->options['form_params']['OrgId'] = $value;
1312
1313
        return $this;
1314
    }
1315
}
1316
1317
/**
1318
 * @method string getPageSize()
1319
 * @method string getProjectId()
1320
 * @method string getOrgId()
1321
 * @method string getPageToken()
1322
 */
1323
class GetDevopsProjectMembers extends Rpc
1324
{
1325
1326
    /**
1327
     * @param string $value
1328
     *
1329
     * @return $this
1330
     */
1331
    public function withPageSize($value)
1332
    {
1333
        $this->data['PageSize'] = $value;
1334
        $this->options['form_params']['PageSize'] = $value;
1335
1336
        return $this;
1337
    }
1338
1339
    /**
1340
     * @param string $value
1341
     *
1342
     * @return $this
1343
     */
1344
    public function withProjectId($value)
1345
    {
1346
        $this->data['ProjectId'] = $value;
1347
        $this->options['form_params']['ProjectId'] = $value;
1348
1349
        return $this;
1350
    }
1351
1352
    /**
1353
     * @param string $value
1354
     *
1355
     * @return $this
1356
     */
1357
    public function withOrgId($value)
1358
    {
1359
        $this->data['OrgId'] = $value;
1360
        $this->options['form_params']['OrgId'] = $value;
1361
1362
        return $this;
1363
    }
1364
1365
    /**
1366
     * @param string $value
1367
     *
1368
     * @return $this
1369
     */
1370
    public function withPageToken($value)
1371
    {
1372
        $this->data['PageToken'] = $value;
1373
        $this->options['form_params']['PageToken'] = $value;
1374
1375
        return $this;
1376
    }
1377
}
1378
1379
/**
1380
 * @method string getSprintId()
1381
 * @method string getOrgId()
1382
 */
1383
class GetDevopsProjectSprintInfo extends Rpc
1384
{
1385
1386
    /**
1387
     * @param string $value
1388
     *
1389
     * @return $this
1390
     */
1391
    public function withSprintId($value)
1392
    {
1393
        $this->data['SprintId'] = $value;
1394
        $this->options['form_params']['SprintId'] = $value;
1395
1396
        return $this;
1397
    }
1398
1399
    /**
1400
     * @param string $value
1401
     *
1402
     * @return $this
1403
     */
1404
    public function withOrgId($value)
1405
    {
1406
        $this->data['OrgId'] = $value;
1407
        $this->options['form_params']['OrgId'] = $value;
1408
1409
        return $this;
1410
    }
1411
}
1412
1413
/**
1414
 * @method string getOrgId()
1415
 * @method string getTaskId()
1416
 */
1417
class GetDevopsProjectTaskInfo extends Rpc
1418
{
1419
1420
    /**
1421
     * @param string $value
1422
     *
1423
     * @return $this
1424
     */
1425
    public function withOrgId($value)
1426
    {
1427
        $this->data['OrgId'] = $value;
1428
        $this->options['form_params']['OrgId'] = $value;
1429
1430
        return $this;
1431
    }
1432
1433
    /**
1434
     * @param string $value
1435
     *
1436
     * @return $this
1437
     */
1438
    public function withTaskId($value)
1439
    {
1440
        $this->data['TaskId'] = $value;
1441
        $this->options['form_params']['TaskId'] = $value;
1442
1443
        return $this;
1444
    }
1445
}
1446
1447
/**
1448
 * @method string getRealPk()
1449
 * @method string getOrgId()
1450
 */
1451
class GetLastWorkspace extends Rpc
1452
{
1453
1454
    /**
1455
     * @param string $value
1456
     *
1457
     * @return $this
1458
     */
1459
    public function withRealPk($value)
1460
    {
1461
        $this->data['RealPk'] = $value;
1462
        $this->options['form_params']['RealPk'] = $value;
1463
1464
        return $this;
1465
    }
1466
1467
    /**
1468
     * @param string $value
1469
     *
1470
     * @return $this
1471
     */
1472
    public function withOrgId($value)
1473
    {
1474
        $this->data['OrgId'] = $value;
1475
        $this->options['form_params']['OrgId'] = $value;
1476
1477
        return $this;
1478
    }
1479
}
1480
1481
/**
1482
 * @method string getBuildNum()
1483
 * @method string getUserPk()
1484
 * @method string getOrgId()
1485
 * @method $this withOrgId($value)
1486
 * @method string getPipelineId()
1487
 * @method $this withPipelineId($value)
1488
 */
1489
class GetPipelineInstanceBuildNumberStatus extends Rpc
1490
{
1491
1492
    /**
1493
     * @param string $value
1494
     *
1495
     * @return $this
1496
     */
1497
    public function withBuildNum($value)
1498
    {
1499
        $this->data['BuildNum'] = $value;
1500
        $this->options['form_params']['BuildNum'] = $value;
1501
1502
        return $this;
1503
    }
1504
1505
    /**
1506
     * @param string $value
1507
     *
1508
     * @return $this
1509
     */
1510
    public function withUserPk($value)
1511
    {
1512
        $this->data['UserPk'] = $value;
1513
        $this->options['form_params']['UserPk'] = $value;
1514
1515
        return $this;
1516
    }
1517
}
1518
1519
/**
1520
 * @method string getFlowInstanceId()
1521
 * @method string getUserPk()
1522
 * @method string getOrgId()
1523
 * @method $this withOrgId($value)
1524
 * @method string getPipelineId()
1525
 * @method $this withPipelineId($value)
1526
 */
1527
class GetPipelineInstanceGroupStatus extends Rpc
1528
{
1529
1530
    /**
1531
     * @param string $value
1532
     *
1533
     * @return $this
1534
     */
1535
    public function withFlowInstanceId($value)
1536
    {
1537
        $this->data['FlowInstanceId'] = $value;
1538
        $this->options['form_params']['FlowInstanceId'] = $value;
1539
1540
        return $this;
1541
    }
1542
1543
    /**
1544
     * @param string $value
1545
     *
1546
     * @return $this
1547
     */
1548
    public function withUserPk($value)
1549
    {
1550
        $this->data['UserPk'] = $value;
1551
        $this->options['form_params']['UserPk'] = $value;
1552
1553
        return $this;
1554
    }
1555
}
1556
1557
/**
1558
 * @method string getFlowInstanceId()
1559
 * @method string getUserPk()
1560
 * @method string getOrgId()
1561
 * @method string getPipelineId()
1562
 */
1563
class GetPipelineInstanceInfo extends Rpc
1564
{
1565
1566
    /**
1567
     * @param string $value
1568
     *
1569
     * @return $this
1570
     */
1571
    public function withFlowInstanceId($value)
1572
    {
1573
        $this->data['FlowInstanceId'] = $value;
1574
        $this->options['form_params']['FlowInstanceId'] = $value;
1575
1576
        return $this;
1577
    }
1578
1579
    /**
1580
     * @param string $value
1581
     *
1582
     * @return $this
1583
     */
1584
    public function withUserPk($value)
1585
    {
1586
        $this->data['UserPk'] = $value;
1587
        $this->options['form_params']['UserPk'] = $value;
1588
1589
        return $this;
1590
    }
1591
1592
    /**
1593
     * @param string $value
1594
     *
1595
     * @return $this
1596
     */
1597
    public function withOrgId($value)
1598
    {
1599
        $this->data['OrgId'] = $value;
1600
        $this->options['form_params']['OrgId'] = $value;
1601
1602
        return $this;
1603
    }
1604
1605
    /**
1606
     * @param string $value
1607
     *
1608
     * @return $this
1609
     */
1610
    public function withPipelineId($value)
1611
    {
1612
        $this->data['PipelineId'] = $value;
1613
        $this->options['form_params']['PipelineId'] = $value;
1614
1615
        return $this;
1616
    }
1617
}
1618
1619
/**
1620
 * @method string getFlowInstanceId()
1621
 * @method $this withFlowInstanceId($value)
1622
 * @method string getUserPk()
1623
 * @method string getOrgId()
1624
 * @method $this withOrgId($value)
1625
 * @method string getPipelineId()
1626
 * @method $this withPipelineId($value)
1627
 */
1628
class GetPipelineInstanceStatus extends Rpc
1629
{
1630
1631
    /**
1632
     * @param string $value
1633
     *
1634
     * @return $this
1635
     */
1636
    public function withUserPk($value)
1637
    {
1638
        $this->data['UserPk'] = $value;
1639
        $this->options['form_params']['UserPk'] = $value;
1640
1641
        return $this;
1642
    }
1643
}
1644
1645
/**
1646
 * @method string getEndTime()
1647
 * @method string getStartTime()
1648
 * @method string getUserPk()
1649
 * @method string getOrgId()
1650
 * @method string getPipelineId()
1651
 * @method string getPageSize()
1652
 * @method string getPageStart()
1653
 */
1654
class GetPipelineInstHistory extends Rpc
1655
{
1656
1657
    /**
1658
     * @param string $value
1659
     *
1660
     * @return $this
1661
     */
1662
    public function withEndTime($value)
1663
    {
1664
        $this->data['EndTime'] = $value;
1665
        $this->options['form_params']['EndTime'] = $value;
1666
1667
        return $this;
1668
    }
1669
1670
    /**
1671
     * @param string $value
1672
     *
1673
     * @return $this
1674
     */
1675
    public function withStartTime($value)
1676
    {
1677
        $this->data['StartTime'] = $value;
1678
        $this->options['form_params']['StartTime'] = $value;
1679
1680
        return $this;
1681
    }
1682
1683
    /**
1684
     * @param string $value
1685
     *
1686
     * @return $this
1687
     */
1688
    public function withUserPk($value)
1689
    {
1690
        $this->data['UserPk'] = $value;
1691
        $this->options['form_params']['UserPk'] = $value;
1692
1693
        return $this;
1694
    }
1695
1696
    /**
1697
     * @param string $value
1698
     *
1699
     * @return $this
1700
     */
1701
    public function withOrgId($value)
1702
    {
1703
        $this->data['OrgId'] = $value;
1704
        $this->options['form_params']['OrgId'] = $value;
1705
1706
        return $this;
1707
    }
1708
1709
    /**
1710
     * @param string $value
1711
     *
1712
     * @return $this
1713
     */
1714
    public function withPipelineId($value)
1715
    {
1716
        $this->data['PipelineId'] = $value;
1717
        $this->options['form_params']['PipelineId'] = $value;
1718
1719
        return $this;
1720
    }
1721
1722
    /**
1723
     * @param string $value
1724
     *
1725
     * @return $this
1726
     */
1727
    public function withPageSize($value)
1728
    {
1729
        $this->data['PageSize'] = $value;
1730
        $this->options['form_params']['PageSize'] = $value;
1731
1732
        return $this;
1733
    }
1734
1735
    /**
1736
     * @param string $value
1737
     *
1738
     * @return $this
1739
     */
1740
    public function withPageStart($value)
1741
    {
1742
        $this->data['PageStart'] = $value;
1743
        $this->options['form_params']['PageStart'] = $value;
1744
1745
        return $this;
1746
    }
1747
}
1748
1749
/**
1750
 * @method string getUserPk()
1751
 * @method string getOrgId()
1752
 * @method string getPipelineId()
1753
 * @method string getJobId()
1754
 */
1755
class GetPipelineLog extends Rpc
1756
{
1757
1758
    /**
1759
     * @param string $value
1760
     *
1761
     * @return $this
1762
     */
1763
    public function withUserPk($value)
1764
    {
1765
        $this->data['UserPk'] = $value;
1766
        $this->options['form_params']['UserPk'] = $value;
1767
1768
        return $this;
1769
    }
1770
1771
    /**
1772
     * @param string $value
1773
     *
1774
     * @return $this
1775
     */
1776
    public function withOrgId($value)
1777
    {
1778
        $this->data['OrgId'] = $value;
1779
        $this->options['form_params']['OrgId'] = $value;
1780
1781
        return $this;
1782
    }
1783
1784
    /**
1785
     * @param string $value
1786
     *
1787
     * @return $this
1788
     */
1789
    public function withPipelineId($value)
1790
    {
1791
        $this->data['PipelineId'] = $value;
1792
        $this->options['form_params']['PipelineId'] = $value;
1793
1794
        return $this;
1795
    }
1796
1797
    /**
1798
     * @param string $value
1799
     *
1800
     * @return $this
1801
     */
1802
    public function withJobId($value)
1803
    {
1804
        $this->data['JobId'] = $value;
1805
        $this->options['form_params']['JobId'] = $value;
1806
1807
        return $this;
1808
    }
1809
}
1810
1811
/**
1812
 * @method string getOffset()
1813
 * @method string getUserPk()
1814
 * @method string getOrgId()
1815
 * @method string getPipelineId()
1816
 * @method string getJobId()
1817
 * @method string getStepIndex()
1818
 * @method string getLimit()
1819
 */
1820
class GetPipelineStepLog extends Rpc
1821
{
1822
1823
    /**
1824
     * @param string $value
1825
     *
1826
     * @return $this
1827
     */
1828
    public function withOffset($value)
1829
    {
1830
        $this->data['Offset'] = $value;
1831
        $this->options['form_params']['Offset'] = $value;
1832
1833
        return $this;
1834
    }
1835
1836
    /**
1837
     * @param string $value
1838
     *
1839
     * @return $this
1840
     */
1841
    public function withUserPk($value)
1842
    {
1843
        $this->data['UserPk'] = $value;
1844
        $this->options['form_params']['UserPk'] = $value;
1845
1846
        return $this;
1847
    }
1848
1849
    /**
1850
     * @param string $value
1851
     *
1852
     * @return $this
1853
     */
1854
    public function withOrgId($value)
1855
    {
1856
        $this->data['OrgId'] = $value;
1857
        $this->options['form_params']['OrgId'] = $value;
1858
1859
        return $this;
1860
    }
1861
1862
    /**
1863
     * @param string $value
1864
     *
1865
     * @return $this
1866
     */
1867
    public function withPipelineId($value)
1868
    {
1869
        $this->data['PipelineId'] = $value;
1870
        $this->options['form_params']['PipelineId'] = $value;
1871
1872
        return $this;
1873
    }
1874
1875
    /**
1876
     * @param string $value
1877
     *
1878
     * @return $this
1879
     */
1880
    public function withJobId($value)
1881
    {
1882
        $this->data['JobId'] = $value;
1883
        $this->options['form_params']['JobId'] = $value;
1884
1885
        return $this;
1886
    }
1887
1888
    /**
1889
     * @param string $value
1890
     *
1891
     * @return $this
1892
     */
1893
    public function withStepIndex($value)
1894
    {
1895
        $this->data['StepIndex'] = $value;
1896
        $this->options['form_params']['StepIndex'] = $value;
1897
1898
        return $this;
1899
    }
1900
1901
    /**
1902
     * @param string $value
1903
     *
1904
     * @return $this
1905
     */
1906
    public function withLimit($value)
1907
    {
1908
        $this->data['Limit'] = $value;
1909
        $this->options['form_params']['Limit'] = $value;
1910
1911
        return $this;
1912
    }
1913
}
1914
1915
/**
1916
 * @method string getUserPk()
1917
 * @method string getOrgId()
1918
 * @method $this withOrgId($value)
1919
 * @method string getPipelineId()
1920
 * @method $this withPipelineId($value)
1921
 */
1922
class GetPipleineLatestInstanceStatus extends Rpc
1923
{
1924
1925
    /**
1926
     * @param string $value
1927
     *
1928
     * @return $this
1929
     */
1930
    public function withUserPk($value)
1931
    {
1932
        $this->data['UserPk'] = $value;
1933
        $this->options['form_params']['UserPk'] = $value;
1934
1935
        return $this;
1936
    }
1937
}
1938
1939
/**
1940
 * @method string getQuery()
1941
 * @method string getType()
1942
 * @method string getProjectId()
1943
 * @method string getOrgId()
1944
 */
1945
class GetProjectOption extends Rpc
1946
{
1947
1948
    /**
1949
     * @param string $value
1950
     *
1951
     * @return $this
1952
     */
1953
    public function withQuery($value)
1954
    {
1955
        $this->data['Query'] = $value;
1956
        $this->options['form_params']['Query'] = $value;
1957
1958
        return $this;
1959
    }
1960
1961
    /**
1962
     * @param string $value
1963
     *
1964
     * @return $this
1965
     */
1966
    public function withType($value)
1967
    {
1968
        $this->data['Type'] = $value;
1969
        $this->options['form_params']['Type'] = $value;
1970
1971
        return $this;
1972
    }
1973
1974
    /**
1975
     * @param string $value
1976
     *
1977
     * @return $this
1978
     */
1979
    public function withProjectId($value)
1980
    {
1981
        $this->data['ProjectId'] = $value;
1982
        $this->options['form_params']['ProjectId'] = $value;
1983
1984
        return $this;
1985
    }
1986
1987
    /**
1988
     * @param string $value
1989
     *
1990
     * @return $this
1991
     */
1992
    public function withOrgId($value)
1993
    {
1994
        $this->data['OrgId'] = $value;
1995
        $this->options['form_params']['OrgId'] = $value;
1996
1997
        return $this;
1998
    }
1999
}
2000
2001
/**
2002
 * @method string getProjectId()
2003
 * @method string getOrgId()
2004
 * @method string getTaskId()
2005
 */
2006
class GetTaskDetailActivity extends Rpc
2007
{
2008
2009
    /**
2010
     * @param string $value
2011
     *
2012
     * @return $this
2013
     */
2014
    public function withProjectId($value)
2015
    {
2016
        $this->data['ProjectId'] = $value;
2017
        $this->options['form_params']['ProjectId'] = $value;
2018
2019
        return $this;
2020
    }
2021
2022
    /**
2023
     * @param string $value
2024
     *
2025
     * @return $this
2026
     */
2027
    public function withOrgId($value)
2028
    {
2029
        $this->data['OrgId'] = $value;
2030
        $this->options['form_params']['OrgId'] = $value;
2031
2032
        return $this;
2033
    }
2034
2035
    /**
2036
     * @param string $value
2037
     *
2038
     * @return $this
2039
     */
2040
    public function withTaskId($value)
2041
    {
2042
        $this->data['TaskId'] = $value;
2043
        $this->options['form_params']['TaskId'] = $value;
2044
2045
        return $this;
2046
    }
2047
}
2048
2049
/**
2050
 * @method string getProjectId()
2051
 * @method string getOrgId()
2052
 * @method string getTaskId()
2053
 */
2054
class GetTaskDetailBase extends Rpc
2055
{
2056
2057
    /**
2058
     * @param string $value
2059
     *
2060
     * @return $this
2061
     */
2062
    public function withProjectId($value)
2063
    {
2064
        $this->data['ProjectId'] = $value;
2065
        $this->options['form_params']['ProjectId'] = $value;
2066
2067
        return $this;
2068
    }
2069
2070
    /**
2071
     * @param string $value
2072
     *
2073
     * @return $this
2074
     */
2075
    public function withOrgId($value)
2076
    {
2077
        $this->data['OrgId'] = $value;
2078
        $this->options['form_params']['OrgId'] = $value;
2079
2080
        return $this;
2081
    }
2082
2083
    /**
2084
     * @param string $value
2085
     *
2086
     * @return $this
2087
     */
2088
    public function withTaskId($value)
2089
    {
2090
        $this->data['TaskId'] = $value;
2091
        $this->options['form_params']['TaskId'] = $value;
2092
2093
        return $this;
2094
    }
2095
}
2096
2097
/**
2098
 * @method string getInvolveMembers()
2099
 * @method string getExecutorId()
2100
 * @method string getOrderCondition()
2101
 * @method string getSprintId()
2102
 * @method string getExtra()
2103
 * @method string getPageSize()
2104
 * @method string getScenarioFieldConfigId()
2105
 * @method string getIsDone()
2106
 * @method string getObjectType()
2107
 * @method string getProjectId()
2108
 * @method string getPageToken()
2109
 * @method string getOrder()
2110
 * @method string getTagId()
2111
 * @method string getTaskFlowStatusId()
2112
 * @method string getDueDateStart()
2113
 * @method string getCreatorId()
2114
 * @method string getPriority()
2115
 * @method string getDueDateEnd()
2116
 * @method string getOrgId()
2117
 * @method string getName()
2118
 */
2119
class GetTaskListFilter extends Rpc
2120
{
2121
2122
    /**
2123
     * @param string $value
2124
     *
2125
     * @return $this
2126
     */
2127
    public function withInvolveMembers($value)
2128
    {
2129
        $this->data['InvolveMembers'] = $value;
2130
        $this->options['form_params']['InvolveMembers'] = $value;
2131
2132
        return $this;
2133
    }
2134
2135
    /**
2136
     * @param string $value
2137
     *
2138
     * @return $this
2139
     */
2140
    public function withExecutorId($value)
2141
    {
2142
        $this->data['ExecutorId'] = $value;
2143
        $this->options['form_params']['ExecutorId'] = $value;
2144
2145
        return $this;
2146
    }
2147
2148
    /**
2149
     * @param string $value
2150
     *
2151
     * @return $this
2152
     */
2153
    public function withOrderCondition($value)
2154
    {
2155
        $this->data['OrderCondition'] = $value;
2156
        $this->options['form_params']['OrderCondition'] = $value;
2157
2158
        return $this;
2159
    }
2160
2161
    /**
2162
     * @param string $value
2163
     *
2164
     * @return $this
2165
     */
2166
    public function withSprintId($value)
2167
    {
2168
        $this->data['SprintId'] = $value;
2169
        $this->options['form_params']['SprintId'] = $value;
2170
2171
        return $this;
2172
    }
2173
2174
    /**
2175
     * @param string $value
2176
     *
2177
     * @return $this
2178
     */
2179
    public function withExtra($value)
2180
    {
2181
        $this->data['Extra'] = $value;
2182
        $this->options['form_params']['Extra'] = $value;
2183
2184
        return $this;
2185
    }
2186
2187
    /**
2188
     * @param string $value
2189
     *
2190
     * @return $this
2191
     */
2192
    public function withPageSize($value)
2193
    {
2194
        $this->data['PageSize'] = $value;
2195
        $this->options['form_params']['PageSize'] = $value;
2196
2197
        return $this;
2198
    }
2199
2200
    /**
2201
     * @param string $value
2202
     *
2203
     * @return $this
2204
     */
2205
    public function withScenarioFieldConfigId($value)
2206
    {
2207
        $this->data['ScenarioFieldConfigId'] = $value;
2208
        $this->options['form_params']['ScenarioFieldConfigId'] = $value;
2209
2210
        return $this;
2211
    }
2212
2213
    /**
2214
     * @param string $value
2215
     *
2216
     * @return $this
2217
     */
2218
    public function withIsDone($value)
2219
    {
2220
        $this->data['IsDone'] = $value;
2221
        $this->options['form_params']['IsDone'] = $value;
2222
2223
        return $this;
2224
    }
2225
2226
    /**
2227
     * @param string $value
2228
     *
2229
     * @return $this
2230
     */
2231
    public function withObjectType($value)
2232
    {
2233
        $this->data['ObjectType'] = $value;
2234
        $this->options['form_params']['ObjectType'] = $value;
2235
2236
        return $this;
2237
    }
2238
2239
    /**
2240
     * @param string $value
2241
     *
2242
     * @return $this
2243
     */
2244
    public function withProjectId($value)
2245
    {
2246
        $this->data['ProjectId'] = $value;
2247
        $this->options['form_params']['ProjectId'] = $value;
2248
2249
        return $this;
2250
    }
2251
2252
    /**
2253
     * @param string $value
2254
     *
2255
     * @return $this
2256
     */
2257
    public function withPageToken($value)
2258
    {
2259
        $this->data['PageToken'] = $value;
2260
        $this->options['form_params']['PageToken'] = $value;
2261
2262
        return $this;
2263
    }
2264
2265
    /**
2266
     * @param string $value
2267
     *
2268
     * @return $this
2269
     */
2270
    public function withOrder($value)
2271
    {
2272
        $this->data['Order'] = $value;
2273
        $this->options['form_params']['Order'] = $value;
2274
2275
        return $this;
2276
    }
2277
2278
    /**
2279
     * @param string $value
2280
     *
2281
     * @return $this
2282
     */
2283
    public function withTagId($value)
2284
    {
2285
        $this->data['TagId'] = $value;
2286
        $this->options['form_params']['TagId'] = $value;
2287
2288
        return $this;
2289
    }
2290
2291
    /**
2292
     * @param string $value
2293
     *
2294
     * @return $this
2295
     */
2296
    public function withTaskFlowStatusId($value)
2297
    {
2298
        $this->data['TaskFlowStatusId'] = $value;
2299
        $this->options['form_params']['TaskFlowStatusId'] = $value;
2300
2301
        return $this;
2302
    }
2303
2304
    /**
2305
     * @param string $value
2306
     *
2307
     * @return $this
2308
     */
2309
    public function withDueDateStart($value)
2310
    {
2311
        $this->data['DueDateStart'] = $value;
2312
        $this->options['form_params']['DueDateStart'] = $value;
2313
2314
        return $this;
2315
    }
2316
2317
    /**
2318
     * @param string $value
2319
     *
2320
     * @return $this
2321
     */
2322
    public function withCreatorId($value)
2323
    {
2324
        $this->data['CreatorId'] = $value;
2325
        $this->options['form_params']['CreatorId'] = $value;
2326
2327
        return $this;
2328
    }
2329
2330
    /**
2331
     * @param string $value
2332
     *
2333
     * @return $this
2334
     */
2335
    public function withPriority($value)
2336
    {
2337
        $this->data['Priority'] = $value;
2338
        $this->options['form_params']['Priority'] = $value;
2339
2340
        return $this;
2341
    }
2342
2343
    /**
2344
     * @param string $value
2345
     *
2346
     * @return $this
2347
     */
2348
    public function withDueDateEnd($value)
2349
    {
2350
        $this->data['DueDateEnd'] = $value;
2351
        $this->options['form_params']['DueDateEnd'] = $value;
2352
2353
        return $this;
2354
    }
2355
2356
    /**
2357
     * @param string $value
2358
     *
2359
     * @return $this
2360
     */
2361
    public function withOrgId($value)
2362
    {
2363
        $this->data['OrgId'] = $value;
2364
        $this->options['form_params']['OrgId'] = $value;
2365
2366
        return $this;
2367
    }
2368
2369
    /**
2370
     * @param string $value
2371
     *
2372
     * @return $this
2373
     */
2374
    public function withName($value)
2375
    {
2376
        $this->data['Name'] = $value;
2377
        $this->options['form_params']['Name'] = $value;
2378
2379
        return $this;
2380
    }
2381
}
2382
2383
/**
2384
 * @method string getUserPk()
2385
 * @method string getOrgId()
2386
 */
2387
class GetUserByAliyunUid extends Rpc
2388
{
2389
2390
    /**
2391
     * @param string $value
2392
     *
2393
     * @return $this
2394
     */
2395
    public function withUserPk($value)
2396
    {
2397
        $this->data['UserPk'] = $value;
2398
        $this->options['form_params']['UserPk'] = $value;
2399
2400
        return $this;
2401
    }
2402
2403
    /**
2404
     * @param string $value
2405
     *
2406
     * @return $this
2407
     */
2408
    public function withOrgId($value)
2409
    {
2410
        $this->data['OrgId'] = $value;
2411
        $this->options['form_params']['OrgId'] = $value;
2412
2413
        return $this;
2414
    }
2415
}
2416
2417
/**
2418
 * @method string getUserId()
2419
 * @method string getOrgId()
2420
 */
2421
class GetUserName extends Rpc
2422
{
2423
2424
    /**
2425
     * @param string $value
2426
     *
2427
     * @return $this
2428
     */
2429
    public function withUserId($value)
2430
    {
2431
        $this->data['UserId'] = $value;
2432
        $this->options['form_params']['UserId'] = $value;
2433
2434
        return $this;
2435
    }
2436
2437
    /**
2438
     * @param string $value
2439
     *
2440
     * @return $this
2441
     */
2442
    public function withOrgId($value)
2443
    {
2444
        $this->data['OrgId'] = $value;
2445
        $this->options['form_params']['OrgId'] = $value;
2446
2447
        return $this;
2448
    }
2449
}
2450
2451
/**
2452
 * @method string getPhone()
2453
 * @method string getUserPk()
2454
 * @method string getEmail()
2455
 * @method string getUserName()
2456
 */
2457
class InsertDevopsUser extends Rpc
2458
{
2459
2460
    /**
2461
     * @param string $value
2462
     *
2463
     * @return $this
2464
     */
2465
    public function withPhone($value)
2466
    {
2467
        $this->data['Phone'] = $value;
2468
        $this->options['form_params']['Phone'] = $value;
2469
2470
        return $this;
2471
    }
2472
2473
    /**
2474
     * @param string $value
2475
     *
2476
     * @return $this
2477
     */
2478
    public function withUserPk($value)
2479
    {
2480
        $this->data['UserPk'] = $value;
2481
        $this->options['form_params']['UserPk'] = $value;
2482
2483
        return $this;
2484
    }
2485
2486
    /**
2487
     * @param string $value
2488
     *
2489
     * @return $this
2490
     */
2491
    public function withEmail($value)
2492
    {
2493
        $this->data['Email'] = $value;
2494
        $this->options['form_params']['Email'] = $value;
2495
2496
        return $this;
2497
    }
2498
2499
    /**
2500
     * @param string $value
2501
     *
2502
     * @return $this
2503
     */
2504
    public function withUserName($value)
2505
    {
2506
        $this->data['UserName'] = $value;
2507
        $this->options['form_params']['UserName'] = $value;
2508
2509
        return $this;
2510
    }
2511
}
2512
2513
/**
2514
 * @method string getRoleName()
2515
 * @method string getUserPk()
2516
 * @method string getUserId()
2517
 * @method string getOrgId()
2518
 * @method $this withOrgId($value)
2519
 * @method string getPipelineId()
2520
 * @method $this withPipelineId($value)
2521
 */
2522
class InsertPipelineMember extends Rpc
2523
{
2524
2525
    /**
2526
     * @param string $value
2527
     *
2528
     * @return $this
2529
     */
2530
    public function withRoleName($value)
2531
    {
2532
        $this->data['RoleName'] = $value;
2533
        $this->options['form_params']['RoleName'] = $value;
2534
2535
        return $this;
2536
    }
2537
2538
    /**
2539
     * @param string $value
2540
     *
2541
     * @return $this
2542
     */
2543
    public function withUserPk($value)
2544
    {
2545
        $this->data['UserPk'] = $value;
2546
        $this->options['form_params']['UserPk'] = $value;
2547
2548
        return $this;
2549
    }
2550
2551
    /**
2552
     * @param string $value
2553
     *
2554
     * @return $this
2555
     */
2556
    public function withUserId($value)
2557
    {
2558
        $this->data['UserId'] = $value;
2559
        $this->options['form_params']['UserId'] = $value;
2560
2561
        return $this;
2562
    }
2563
}
2564
2565
/**
2566
 * @method string getMembers()
2567
 * @method string getProjectId()
2568
 * @method string getOrgId()
2569
 */
2570
class InsertProjectMembers extends Rpc
2571
{
2572
2573
    /**
2574
     * @param string $value
2575
     *
2576
     * @return $this
2577
     */
2578
    public function withMembers($value)
2579
    {
2580
        $this->data['Members'] = $value;
2581
        $this->options['form_params']['Members'] = $value;
2582
2583
        return $this;
2584
    }
2585
2586
    /**
2587
     * @param string $value
2588
     *
2589
     * @return $this
2590
     */
2591
    public function withProjectId($value)
2592
    {
2593
        $this->data['ProjectId'] = $value;
2594
        $this->options['form_params']['ProjectId'] = $value;
2595
2596
        return $this;
2597
    }
2598
2599
    /**
2600
     * @param string $value
2601
     *
2602
     * @return $this
2603
     */
2604
    public function withOrgId($value)
2605
    {
2606
        $this->data['OrgId'] = $value;
2607
        $this->options['form_params']['OrgId'] = $value;
2608
2609
        return $this;
2610
    }
2611
}
2612
2613
/**
2614
 * @method string getAll()
2615
 * @method string getSmartGroupId()
2616
 * @method string getProjectId()
2617
 * @method string getOrgId()
2618
 */
2619
class ListCommonGroup extends Rpc
2620
{
2621
2622
    /**
2623
     * @param string $value
2624
     *
2625
     * @return $this
2626
     */
2627
    public function withAll($value)
2628
    {
2629
        $this->data['All'] = $value;
2630
        $this->options['form_params']['All'] = $value;
2631
2632
        return $this;
2633
    }
2634
2635
    /**
2636
     * @param string $value
2637
     *
2638
     * @return $this
2639
     */
2640
    public function withSmartGroupId($value)
2641
    {
2642
        $this->data['SmartGroupId'] = $value;
2643
        $this->options['form_params']['SmartGroupId'] = $value;
2644
2645
        return $this;
2646
    }
2647
2648
    /**
2649
     * @param string $value
2650
     *
2651
     * @return $this
2652
     */
2653
    public function withProjectId($value)
2654
    {
2655
        $this->data['ProjectId'] = $value;
2656
        $this->options['form_params']['ProjectId'] = $value;
2657
2658
        return $this;
2659
    }
2660
2661
    /**
2662
     * @param string $value
2663
     *
2664
     * @return $this
2665
     */
2666
    public function withOrgId($value)
2667
    {
2668
        $this->data['OrgId'] = $value;
2669
        $this->options['form_params']['OrgId'] = $value;
2670
2671
        return $this;
2672
    }
2673
}
2674
2675
/**
2676
 * @method string getUserPk()
2677
 * @method string getOrgId()
2678
 */
2679
class ListCredentials extends Rpc
2680
{
2681
2682
    /**
2683
     * @param string $value
2684
     *
2685
     * @return $this
2686
     */
2687
    public function withUserPk($value)
2688
    {
2689
        $this->data['UserPk'] = $value;
2690
        $this->options['form_params']['UserPk'] = $value;
2691
2692
        return $this;
2693
    }
2694
2695
    /**
2696
     * @param string $value
2697
     *
2698
     * @return $this
2699
     */
2700
    public function withOrgId($value)
2701
    {
2702
        $this->data['OrgId'] = $value;
2703
        $this->options['form_params']['OrgId'] = $value;
2704
2705
        return $this;
2706
    }
2707
}
2708
2709
/**
2710
 * @method string getSelectBy()
2711
 * @method string getPageSize()
2712
 * @method string getOrderBy()
2713
 * @method string getOrgId()
2714
 * @method string getPageToken()
2715
 */
2716
class ListDevopsProjects extends Rpc
2717
{
2718
2719
    /**
2720
     * @param string $value
2721
     *
2722
     * @return $this
2723
     */
2724
    public function withSelectBy($value)
2725
    {
2726
        $this->data['SelectBy'] = $value;
2727
        $this->options['form_params']['SelectBy'] = $value;
2728
2729
        return $this;
2730
    }
2731
2732
    /**
2733
     * @param string $value
2734
     *
2735
     * @return $this
2736
     */
2737
    public function withPageSize($value)
2738
    {
2739
        $this->data['PageSize'] = $value;
2740
        $this->options['form_params']['PageSize'] = $value;
2741
2742
        return $this;
2743
    }
2744
2745
    /**
2746
     * @param string $value
2747
     *
2748
     * @return $this
2749
     */
2750
    public function withOrderBy($value)
2751
    {
2752
        $this->data['OrderBy'] = $value;
2753
        $this->options['form_params']['OrderBy'] = $value;
2754
2755
        return $this;
2756
    }
2757
2758
    /**
2759
     * @param string $value
2760
     *
2761
     * @return $this
2762
     */
2763
    public function withOrgId($value)
2764
    {
2765
        $this->data['OrgId'] = $value;
2766
        $this->options['form_params']['OrgId'] = $value;
2767
2768
        return $this;
2769
    }
2770
2771
    /**
2772
     * @param string $value
2773
     *
2774
     * @return $this
2775
     */
2776
    public function withPageToken($value)
2777
    {
2778
        $this->data['PageToken'] = $value;
2779
        $this->options['form_params']['PageToken'] = $value;
2780
2781
        return $this;
2782
    }
2783
}
2784
2785
/**
2786
 * @method string getProjectId()
2787
 * @method string getOrgId()
2788
 */
2789
class ListDevopsProjectSprints extends Rpc
2790
{
2791
2792
    /**
2793
     * @param string $value
2794
     *
2795
     * @return $this
2796
     */
2797
    public function withProjectId($value)
2798
    {
2799
        $this->data['ProjectId'] = $value;
2800
        $this->options['form_params']['ProjectId'] = $value;
2801
2802
        return $this;
2803
    }
2804
2805
    /**
2806
     * @param string $value
2807
     *
2808
     * @return $this
2809
     */
2810
    public function withOrgId($value)
2811
    {
2812
        $this->data['OrgId'] = $value;
2813
        $this->options['form_params']['OrgId'] = $value;
2814
2815
        return $this;
2816
    }
2817
}
2818
2819
/**
2820
 * @method string getProjectId()
2821
 * @method string getOrgId()
2822
 */
2823
class ListDevopsProjectTaskFlow extends Rpc
2824
{
2825
2826
    /**
2827
     * @param string $value
2828
     *
2829
     * @return $this
2830
     */
2831
    public function withProjectId($value)
2832
    {
2833
        $this->data['ProjectId'] = $value;
2834
        $this->options['form_params']['ProjectId'] = $value;
2835
2836
        return $this;
2837
    }
2838
2839
    /**
2840
     * @param string $value
2841
     *
2842
     * @return $this
2843
     */
2844
    public function withOrgId($value)
2845
    {
2846
        $this->data['OrgId'] = $value;
2847
        $this->options['form_params']['OrgId'] = $value;
2848
2849
        return $this;
2850
    }
2851
}
2852
2853
/**
2854
 * @method string getTaskFlowId()
2855
 * @method string getOrgId()
2856
 */
2857
class ListDevopsProjectTaskFlowStatus extends Rpc
2858
{
2859
2860
    /**
2861
     * @param string $value
2862
     *
2863
     * @return $this
2864
     */
2865
    public function withTaskFlowId($value)
2866
    {
2867
        $this->data['TaskFlowId'] = $value;
2868
        $this->options['form_params']['TaskFlowId'] = $value;
2869
2870
        return $this;
2871
    }
2872
2873
    /**
2874
     * @param string $value
2875
     *
2876
     * @return $this
2877
     */
2878
    public function withOrgId($value)
2879
    {
2880
        $this->data['OrgId'] = $value;
2881
        $this->options['form_params']['OrgId'] = $value;
2882
2883
        return $this;
2884
    }
2885
}
2886
2887
/**
2888
 * @method string getProjectId()
2889
 * @method string getOrgId()
2890
 */
2891
class ListDevopsProjectTaskList extends Rpc
2892
{
2893
2894
    /**
2895
     * @param string $value
2896
     *
2897
     * @return $this
2898
     */
2899
    public function withProjectId($value)
2900
    {
2901
        $this->data['ProjectId'] = $value;
2902
        $this->options['form_params']['ProjectId'] = $value;
2903
2904
        return $this;
2905
    }
2906
2907
    /**
2908
     * @param string $value
2909
     *
2910
     * @return $this
2911
     */
2912
    public function withOrgId($value)
2913
    {
2914
        $this->data['OrgId'] = $value;
2915
        $this->options['form_params']['OrgId'] = $value;
2916
2917
        return $this;
2918
    }
2919
}
2920
2921
/**
2922
 * @method string getProjectIds()
2923
 * @method string getOrgId()
2924
 */
2925
class ListDevopsProjectTasks extends Rpc
2926
{
2927
2928
    /**
2929
     * @param string $value
2930
     *
2931
     * @return $this
2932
     */
2933
    public function withProjectIds($value)
2934
    {
2935
        $this->data['ProjectIds'] = $value;
2936
        $this->options['form_params']['ProjectIds'] = $value;
2937
2938
        return $this;
2939
    }
2940
2941
    /**
2942
     * @param string $value
2943
     *
2944
     * @return $this
2945
     */
2946
    public function withOrgId($value)
2947
    {
2948
        $this->data['OrgId'] = $value;
2949
        $this->options['form_params']['OrgId'] = $value;
2950
2951
        return $this;
2952
    }
2953
}
2954
2955
/**
2956
 * @method string getProjectId()
2957
 * @method string getOrgId()
2958
 */
2959
class ListDevopsScenarioFieldConfig extends Rpc
2960
{
2961
2962
    /**
2963
     * @param string $value
2964
     *
2965
     * @return $this
2966
     */
2967
    public function withProjectId($value)
2968
    {
2969
        $this->data['ProjectId'] = $value;
2970
        $this->options['form_params']['ProjectId'] = $value;
2971
2972
        return $this;
2973
    }
2974
2975
    /**
2976
     * @param string $value
2977
     *
2978
     * @return $this
2979
     */
2980
    public function withOrgId($value)
2981
    {
2982
        $this->data['OrgId'] = $value;
2983
        $this->options['form_params']['OrgId'] = $value;
2984
2985
        return $this;
2986
    }
2987
}
2988
2989
/**
2990
 * @method string getPipelineName()
2991
 * @method string getResultStatusList()
2992
 * @method string getCreators()
2993
 * @method string getExecuteEndTime()
2994
 * @method string getUserPk()
2995
 * @method string getOrgId()
2996
 * @method $this withOrgId($value)
2997
 * @method string getCreateStartTime()
2998
 * @method string getOperators()
2999
 * @method string getPageSize()
3000
 * @method string getExecuteStartTime()
3001
 * @method string getPageStart()
3002
 * @method string getCreateEndTime()
3003
 */
3004
class ListPipelines extends Rpc
3005
{
3006
3007
    /**
3008
     * @param string $value
3009
     *
3010
     * @return $this
3011
     */
3012
    public function withPipelineName($value)
3013
    {
3014
        $this->data['PipelineName'] = $value;
3015
        $this->options['form_params']['PipelineName'] = $value;
3016
3017
        return $this;
3018
    }
3019
3020
    /**
3021
     * @param string $value
3022
     *
3023
     * @return $this
3024
     */
3025
    public function withResultStatusList($value)
3026
    {
3027
        $this->data['ResultStatusList'] = $value;
3028
        $this->options['form_params']['ResultStatusList'] = $value;
3029
3030
        return $this;
3031
    }
3032
3033
    /**
3034
     * @param string $value
3035
     *
3036
     * @return $this
3037
     */
3038
    public function withCreators($value)
3039
    {
3040
        $this->data['Creators'] = $value;
3041
        $this->options['form_params']['Creators'] = $value;
3042
3043
        return $this;
3044
    }
3045
3046
    /**
3047
     * @param string $value
3048
     *
3049
     * @return $this
3050
     */
3051
    public function withExecuteEndTime($value)
3052
    {
3053
        $this->data['ExecuteEndTime'] = $value;
3054
        $this->options['form_params']['ExecuteEndTime'] = $value;
3055
3056
        return $this;
3057
    }
3058
3059
    /**
3060
     * @param string $value
3061
     *
3062
     * @return $this
3063
     */
3064
    public function withUserPk($value)
3065
    {
3066
        $this->data['UserPk'] = $value;
3067
        $this->options['form_params']['UserPk'] = $value;
3068
3069
        return $this;
3070
    }
3071
3072
    /**
3073
     * @param string $value
3074
     *
3075
     * @return $this
3076
     */
3077
    public function withCreateStartTime($value)
3078
    {
3079
        $this->data['CreateStartTime'] = $value;
3080
        $this->options['form_params']['CreateStartTime'] = $value;
3081
3082
        return $this;
3083
    }
3084
3085
    /**
3086
     * @param string $value
3087
     *
3088
     * @return $this
3089
     */
3090
    public function withOperators($value)
3091
    {
3092
        $this->data['Operators'] = $value;
3093
        $this->options['form_params']['Operators'] = $value;
3094
3095
        return $this;
3096
    }
3097
3098
    /**
3099
     * @param string $value
3100
     *
3101
     * @return $this
3102
     */
3103
    public function withPageSize($value)
3104
    {
3105
        $this->data['PageSize'] = $value;
3106
        $this->options['form_params']['PageSize'] = $value;
3107
3108
        return $this;
3109
    }
3110
3111
    /**
3112
     * @param string $value
3113
     *
3114
     * @return $this
3115
     */
3116
    public function withExecuteStartTime($value)
3117
    {
3118
        $this->data['ExecuteStartTime'] = $value;
3119
        $this->options['form_params']['ExecuteStartTime'] = $value;
3120
3121
        return $this;
3122
    }
3123
3124
    /**
3125
     * @param string $value
3126
     *
3127
     * @return $this
3128
     */
3129
    public function withPageStart($value)
3130
    {
3131
        $this->data['PageStart'] = $value;
3132
        $this->options['form_params']['PageStart'] = $value;
3133
3134
        return $this;
3135
    }
3136
3137
    /**
3138
     * @param string $value
3139
     *
3140
     * @return $this
3141
     */
3142
    public function withCreateEndTime($value)
3143
    {
3144
        $this->data['CreateEndTime'] = $value;
3145
        $this->options['form_params']['CreateEndTime'] = $value;
3146
3147
        return $this;
3148
    }
3149
}
3150
3151
/**
3152
 * @method string getProjectId()
3153
 * @method string getOrgId()
3154
 */
3155
class ListProjectCustomFields extends Rpc
3156
{
3157
3158
    /**
3159
     * @param string $value
3160
     *
3161
     * @return $this
3162
     */
3163
    public function withProjectId($value)
3164
    {
3165
        $this->data['ProjectId'] = $value;
3166
        $this->options['form_params']['ProjectId'] = $value;
3167
3168
        return $this;
3169
    }
3170
3171
    /**
3172
     * @param string $value
3173
     *
3174
     * @return $this
3175
     */
3176
    public function withOrgId($value)
3177
    {
3178
        $this->data['OrgId'] = $value;
3179
        $this->options['form_params']['OrgId'] = $value;
3180
3181
        return $this;
3182
    }
3183
}
3184
3185
/**
3186
 * @method string getScType()
3187
 * @method string getUserPk()
3188
 * @method string getOrgId()
3189
 */
3190
class ListServiceConnections extends Rpc
3191
{
3192
3193
    /**
3194
     * @param string $value
3195
     *
3196
     * @return $this
3197
     */
3198
    public function withScType($value)
3199
    {
3200
        $this->data['ScType'] = $value;
3201
        $this->options['form_params']['ScType'] = $value;
3202
3203
        return $this;
3204
    }
3205
3206
    /**
3207
     * @param string $value
3208
     *
3209
     * @return $this
3210
     */
3211
    public function withUserPk($value)
3212
    {
3213
        $this->data['UserPk'] = $value;
3214
        $this->options['form_params']['UserPk'] = $value;
3215
3216
        return $this;
3217
    }
3218
3219
    /**
3220
     * @param string $value
3221
     *
3222
     * @return $this
3223
     */
3224
    public function withOrgId($value)
3225
    {
3226
        $this->data['OrgId'] = $value;
3227
        $this->options['form_params']['OrgId'] = $value;
3228
3229
        return $this;
3230
    }
3231
}
3232
3233
/**
3234
 * @method string getProjectId()
3235
 * @method string getOrgId()
3236
 */
3237
class ListSmartGroup extends Rpc
3238
{
3239
3240
    /**
3241
     * @param string $value
3242
     *
3243
     * @return $this
3244
     */
3245
    public function withProjectId($value)
3246
    {
3247
        $this->data['ProjectId'] = $value;
3248
        $this->options['form_params']['ProjectId'] = $value;
3249
3250
        return $this;
3251
    }
3252
3253
    /**
3254
     * @param string $value
3255
     *
3256
     * @return $this
3257
     */
3258
    public function withOrgId($value)
3259
    {
3260
        $this->data['OrgId'] = $value;
3261
        $this->options['form_params']['OrgId'] = $value;
3262
3263
        return $this;
3264
    }
3265
}
3266
3267
/**
3268
 * @method string getRealPk()
3269
 */
3270
class ListUserOrganization extends Rpc
3271
{
3272
3273
    /**
3274
     * @param string $value
3275
     *
3276
     * @return $this
3277
     */
3278
    public function withRealPk($value)
3279
    {
3280
        $this->data['RealPk'] = $value;
3281
        $this->options['form_params']['RealPk'] = $value;
3282
3283
        return $this;
3284
    }
3285
}
3286
3287
/**
3288
 * @method string getUserPk()
3289
 * @method string getOrgId()
3290
 * @method $this withOrgId($value)
3291
 * @method string getPipelineId()
3292
 * @method $this withPipelineId($value)
3293
 * @method string getNewOwnerId()
3294
 */
3295
class TransferPipelineOwner extends Rpc
3296
{
3297
3298
    /**
3299
     * @param string $value
3300
     *
3301
     * @return $this
3302
     */
3303
    public function withUserPk($value)
3304
    {
3305
        $this->data['UserPk'] = $value;
3306
        $this->options['form_params']['UserPk'] = $value;
3307
3308
        return $this;
3309
    }
3310
3311
    /**
3312
     * @param string $value
3313
     *
3314
     * @return $this
3315
     */
3316
    public function withNewOwnerId($value)
3317
    {
3318
        $this->data['NewOwnerId'] = $value;
3319
        $this->options['form_params']['NewOwnerId'] = $value;
3320
3321
        return $this;
3322
    }
3323
}
3324
3325
/**
3326
 * @method string getDescription()
3327
 * @method string getCommonGroupId()
3328
 * @method string getOrgId()
3329
 * @method string getSmartGroupId()
3330
 * @method string getName()
3331
 * @method string getProjectId()
3332
 */
3333
class UpdateCommonGroup extends Rpc
3334
{
3335
3336
    /**
3337
     * @param string $value
3338
     *
3339
     * @return $this
3340
     */
3341
    public function withDescription($value)
3342
    {
3343
        $this->data['Description'] = $value;
3344
        $this->options['form_params']['Description'] = $value;
3345
3346
        return $this;
3347
    }
3348
3349
    /**
3350
     * @param string $value
3351
     *
3352
     * @return $this
3353
     */
3354
    public function withCommonGroupId($value)
3355
    {
3356
        $this->data['CommonGroupId'] = $value;
3357
        $this->options['form_params']['CommonGroupId'] = $value;
3358
3359
        return $this;
3360
    }
3361
3362
    /**
3363
     * @param string $value
3364
     *
3365
     * @return $this
3366
     */
3367
    public function withOrgId($value)
3368
    {
3369
        $this->data['OrgId'] = $value;
3370
        $this->options['form_params']['OrgId'] = $value;
3371
3372
        return $this;
3373
    }
3374
3375
    /**
3376
     * @param string $value
3377
     *
3378
     * @return $this
3379
     */
3380
    public function withSmartGroupId($value)
3381
    {
3382
        $this->data['SmartGroupId'] = $value;
3383
        $this->options['form_params']['SmartGroupId'] = $value;
3384
3385
        return $this;
3386
    }
3387
3388
    /**
3389
     * @param string $value
3390
     *
3391
     * @return $this
3392
     */
3393
    public function withName($value)
3394
    {
3395
        $this->data['Name'] = $value;
3396
        $this->options['form_params']['Name'] = $value;
3397
3398
        return $this;
3399
    }
3400
3401
    /**
3402
     * @param string $value
3403
     *
3404
     * @return $this
3405
     */
3406
    public function withProjectId($value)
3407
    {
3408
        $this->data['ProjectId'] = $value;
3409
        $this->options['form_params']['ProjectId'] = $value;
3410
3411
        return $this;
3412
    }
3413
}
3414
3415
/**
3416
 * @method string getName()
3417
 * @method string getDescription()
3418
 * @method string getProjectId()
3419
 * @method string getOrgId()
3420
 */
3421
class UpdateDevopsProject extends Rpc
3422
{
3423
3424
    /**
3425
     * @param string $value
3426
     *
3427
     * @return $this
3428
     */
3429
    public function withName($value)
3430
    {
3431
        $this->data['Name'] = $value;
3432
        $this->options['form_params']['Name'] = $value;
3433
3434
        return $this;
3435
    }
3436
3437
    /**
3438
     * @param string $value
3439
     *
3440
     * @return $this
3441
     */
3442
    public function withDescription($value)
3443
    {
3444
        $this->data['Description'] = $value;
3445
        $this->options['form_params']['Description'] = $value;
3446
3447
        return $this;
3448
    }
3449
3450
    /**
3451
     * @param string $value
3452
     *
3453
     * @return $this
3454
     */
3455
    public function withProjectId($value)
3456
    {
3457
        $this->data['ProjectId'] = $value;
3458
        $this->options['form_params']['ProjectId'] = $value;
3459
3460
        return $this;
3461
    }
3462
3463
    /**
3464
     * @param string $value
3465
     *
3466
     * @return $this
3467
     */
3468
    public function withOrgId($value)
3469
    {
3470
        $this->data['OrgId'] = $value;
3471
        $this->options['form_params']['OrgId'] = $value;
3472
3473
        return $this;
3474
    }
3475
}
3476
3477
/**
3478
 * @method string getExecutorId()
3479
 * @method string getDescription()
3480
 * @method string getStartDate()
3481
 * @method string getOrgId()
3482
 * @method string getSprintId()
3483
 * @method string getDueDate()
3484
 * @method string getName()
3485
 * @method string getProjectId()
3486
 */
3487
class UpdateDevopsProjectSprint extends Rpc
3488
{
3489
3490
    /**
3491
     * @param string $value
3492
     *
3493
     * @return $this
3494
     */
3495
    public function withExecutorId($value)
3496
    {
3497
        $this->data['ExecutorId'] = $value;
3498
        $this->options['form_params']['ExecutorId'] = $value;
3499
3500
        return $this;
3501
    }
3502
3503
    /**
3504
     * @param string $value
3505
     *
3506
     * @return $this
3507
     */
3508
    public function withDescription($value)
3509
    {
3510
        $this->data['Description'] = $value;
3511
        $this->options['form_params']['Description'] = $value;
3512
3513
        return $this;
3514
    }
3515
3516
    /**
3517
     * @param string $value
3518
     *
3519
     * @return $this
3520
     */
3521
    public function withStartDate($value)
3522
    {
3523
        $this->data['StartDate'] = $value;
3524
        $this->options['form_params']['StartDate'] = $value;
3525
3526
        return $this;
3527
    }
3528
3529
    /**
3530
     * @param string $value
3531
     *
3532
     * @return $this
3533
     */
3534
    public function withOrgId($value)
3535
    {
3536
        $this->data['OrgId'] = $value;
3537
        $this->options['form_params']['OrgId'] = $value;
3538
3539
        return $this;
3540
    }
3541
3542
    /**
3543
     * @param string $value
3544
     *
3545
     * @return $this
3546
     */
3547
    public function withSprintId($value)
3548
    {
3549
        $this->data['SprintId'] = $value;
3550
        $this->options['form_params']['SprintId'] = $value;
3551
3552
        return $this;
3553
    }
3554
3555
    /**
3556
     * @param string $value
3557
     *
3558
     * @return $this
3559
     */
3560
    public function withDueDate($value)
3561
    {
3562
        $this->data['DueDate'] = $value;
3563
        $this->options['form_params']['DueDate'] = $value;
3564
3565
        return $this;
3566
    }
3567
3568
    /**
3569
     * @param string $value
3570
     *
3571
     * @return $this
3572
     */
3573
    public function withName($value)
3574
    {
3575
        $this->data['Name'] = $value;
3576
        $this->options['form_params']['Name'] = $value;
3577
3578
        return $this;
3579
    }
3580
3581
    /**
3582
     * @param string $value
3583
     *
3584
     * @return $this
3585
     */
3586
    public function withProjectId($value)
3587
    {
3588
        $this->data['ProjectId'] = $value;
3589
        $this->options['form_params']['ProjectId'] = $value;
3590
3591
        return $this;
3592
    }
3593
}
3594
3595
/**
3596
 * @method string getNote()
3597
 * @method string getVisible()
3598
 * @method string getExecutorId()
3599
 * @method string getTaskFlowStatusId()
3600
 * @method string getScenarioFiieldConfigId()
3601
 * @method string getStartDate()
3602
 * @method string getPriority()
3603
 * @method string getParentTaskId()
3604
 * @method string getOrgId()
3605
 * @method string getContent()
3606
 * @method string getSprintId()
3607
 * @method string getDueDate()
3608
 * @method string getProjectId()
3609
 * @method string getTaskId()
3610
 */
3611
class UpdateDevopsProjectTask extends Rpc
3612
{
3613
3614
    /**
3615
     * @param string $value
3616
     *
3617
     * @return $this
3618
     */
3619
    public function withNote($value)
3620
    {
3621
        $this->data['Note'] = $value;
3622
        $this->options['form_params']['Note'] = $value;
3623
3624
        return $this;
3625
    }
3626
3627
    /**
3628
     * @param string $value
3629
     *
3630
     * @return $this
3631
     */
3632
    public function withVisible($value)
3633
    {
3634
        $this->data['Visible'] = $value;
3635
        $this->options['form_params']['Visible'] = $value;
3636
3637
        return $this;
3638
    }
3639
3640
    /**
3641
     * @param string $value
3642
     *
3643
     * @return $this
3644
     */
3645
    public function withExecutorId($value)
3646
    {
3647
        $this->data['ExecutorId'] = $value;
3648
        $this->options['form_params']['ExecutorId'] = $value;
3649
3650
        return $this;
3651
    }
3652
3653
    /**
3654
     * @param string $value
3655
     *
3656
     * @return $this
3657
     */
3658
    public function withTaskFlowStatusId($value)
3659
    {
3660
        $this->data['TaskFlowStatusId'] = $value;
3661
        $this->options['form_params']['TaskFlowStatusId'] = $value;
3662
3663
        return $this;
3664
    }
3665
3666
    /**
3667
     * @param string $value
3668
     *
3669
     * @return $this
3670
     */
3671
    public function withScenarioFiieldConfigId($value)
3672
    {
3673
        $this->data['ScenarioFiieldConfigId'] = $value;
3674
        $this->options['form_params']['ScenarioFiieldConfigId'] = $value;
3675
3676
        return $this;
3677
    }
3678
3679
    /**
3680
     * @param string $value
3681
     *
3682
     * @return $this
3683
     */
3684
    public function withStartDate($value)
3685
    {
3686
        $this->data['StartDate'] = $value;
3687
        $this->options['form_params']['StartDate'] = $value;
3688
3689
        return $this;
3690
    }
3691
3692
    /**
3693
     * @param string $value
3694
     *
3695
     * @return $this
3696
     */
3697
    public function withPriority($value)
3698
    {
3699
        $this->data['Priority'] = $value;
3700
        $this->options['form_params']['Priority'] = $value;
3701
3702
        return $this;
3703
    }
3704
3705
    /**
3706
     * @param string $value
3707
     *
3708
     * @return $this
3709
     */
3710
    public function withParentTaskId($value)
3711
    {
3712
        $this->data['ParentTaskId'] = $value;
3713
        $this->options['form_params']['ParentTaskId'] = $value;
3714
3715
        return $this;
3716
    }
3717
3718
    /**
3719
     * @param string $value
3720
     *
3721
     * @return $this
3722
     */
3723
    public function withOrgId($value)
3724
    {
3725
        $this->data['OrgId'] = $value;
3726
        $this->options['form_params']['OrgId'] = $value;
3727
3728
        return $this;
3729
    }
3730
3731
    /**
3732
     * @param string $value
3733
     *
3734
     * @return $this
3735
     */
3736
    public function withContent($value)
3737
    {
3738
        $this->data['Content'] = $value;
3739
        $this->options['form_params']['Content'] = $value;
3740
3741
        return $this;
3742
    }
3743
3744
    /**
3745
     * @param string $value
3746
     *
3747
     * @return $this
3748
     */
3749
    public function withSprintId($value)
3750
    {
3751
        $this->data['SprintId'] = $value;
3752
        $this->options['form_params']['SprintId'] = $value;
3753
3754
        return $this;
3755
    }
3756
3757
    /**
3758
     * @param string $value
3759
     *
3760
     * @return $this
3761
     */
3762
    public function withDueDate($value)
3763
    {
3764
        $this->data['DueDate'] = $value;
3765
        $this->options['form_params']['DueDate'] = $value;
3766
3767
        return $this;
3768
    }
3769
3770
    /**
3771
     * @param string $value
3772
     *
3773
     * @return $this
3774
     */
3775
    public function withProjectId($value)
3776
    {
3777
        $this->data['ProjectId'] = $value;
3778
        $this->options['form_params']['ProjectId'] = $value;
3779
3780
        return $this;
3781
    }
3782
3783
    /**
3784
     * @param string $value
3785
     *
3786
     * @return $this
3787
     */
3788
    public function withTaskId($value)
3789
    {
3790
        $this->data['TaskId'] = $value;
3791
        $this->options['form_params']['TaskId'] = $value;
3792
3793
        return $this;
3794
    }
3795
}
3796
3797
/**
3798
 * @method string getRoleName()
3799
 * @method string getUserPk()
3800
 * @method string getUserId()
3801
 * @method string getOrgId()
3802
 * @method $this withOrgId($value)
3803
 * @method string getPipelineId()
3804
 * @method $this withPipelineId($value)
3805
 */
3806
class UpdatePipelineMember extends Rpc
3807
{
3808
3809
    /**
3810
     * @param string $value
3811
     *
3812
     * @return $this
3813
     */
3814
    public function withRoleName($value)
3815
    {
3816
        $this->data['RoleName'] = $value;
3817
        $this->options['form_params']['RoleName'] = $value;
3818
3819
        return $this;
3820
    }
3821
3822
    /**
3823
     * @param string $value
3824
     *
3825
     * @return $this
3826
     */
3827
    public function withUserPk($value)
3828
    {
3829
        $this->data['UserPk'] = $value;
3830
        $this->options['form_params']['UserPk'] = $value;
3831
3832
        return $this;
3833
    }
3834
3835
    /**
3836
     * @param string $value
3837
     *
3838
     * @return $this
3839
     */
3840
    public function withUserId($value)
3841
    {
3842
        $this->data['UserId'] = $value;
3843
        $this->options['form_params']['UserId'] = $value;
3844
3845
        return $this;
3846
    }
3847
}
3848
3849
/**
3850
 * @method string getNote()
3851
 * @method string getExecutorId()
3852
 * @method string getStartDate()
3853
 * @method string getDelInvolvers()
3854
 * @method string getContent()
3855
 * @method string getSprintId()
3856
 * @method string getCustomFieldId()
3857
 * @method string getProjectId()
3858
 * @method string getTaskId()
3859
 * @method string getTaskFlowStatusId()
3860
 * @method string getTagIds()
3861
 * @method string getAddInvolvers()
3862
 * @method string getPriority()
3863
 * @method string getOrgId()
3864
 * @method string getDueDate()
3865
 * @method string getWorkTimes()
3866
 * @method string getStoryPoint()
3867
 * @method string getCustomFieldValues()
3868
 */
3869
class UpdateTaskDetail extends Rpc
3870
{
3871
3872
    /**
3873
     * @param string $value
3874
     *
3875
     * @return $this
3876
     */
3877
    public function withNote($value)
3878
    {
3879
        $this->data['Note'] = $value;
3880
        $this->options['form_params']['Note'] = $value;
3881
3882
        return $this;
3883
    }
3884
3885
    /**
3886
     * @param string $value
3887
     *
3888
     * @return $this
3889
     */
3890
    public function withExecutorId($value)
3891
    {
3892
        $this->data['ExecutorId'] = $value;
3893
        $this->options['form_params']['ExecutorId'] = $value;
3894
3895
        return $this;
3896
    }
3897
3898
    /**
3899
     * @param string $value
3900
     *
3901
     * @return $this
3902
     */
3903
    public function withStartDate($value)
3904
    {
3905
        $this->data['StartDate'] = $value;
3906
        $this->options['form_params']['StartDate'] = $value;
3907
3908
        return $this;
3909
    }
3910
3911
    /**
3912
     * @param string $value
3913
     *
3914
     * @return $this
3915
     */
3916
    public function withDelInvolvers($value)
3917
    {
3918
        $this->data['DelInvolvers'] = $value;
3919
        $this->options['form_params']['DelInvolvers'] = $value;
3920
3921
        return $this;
3922
    }
3923
3924
    /**
3925
     * @param string $value
3926
     *
3927
     * @return $this
3928
     */
3929
    public function withContent($value)
3930
    {
3931
        $this->data['Content'] = $value;
3932
        $this->options['form_params']['Content'] = $value;
3933
3934
        return $this;
3935
    }
3936
3937
    /**
3938
     * @param string $value
3939
     *
3940
     * @return $this
3941
     */
3942
    public function withSprintId($value)
3943
    {
3944
        $this->data['SprintId'] = $value;
3945
        $this->options['form_params']['SprintId'] = $value;
3946
3947
        return $this;
3948
    }
3949
3950
    /**
3951
     * @param string $value
3952
     *
3953
     * @return $this
3954
     */
3955
    public function withCustomFieldId($value)
3956
    {
3957
        $this->data['CustomFieldId'] = $value;
3958
        $this->options['form_params']['CustomFieldId'] = $value;
3959
3960
        return $this;
3961
    }
3962
3963
    /**
3964
     * @param string $value
3965
     *
3966
     * @return $this
3967
     */
3968
    public function withProjectId($value)
3969
    {
3970
        $this->data['ProjectId'] = $value;
3971
        $this->options['form_params']['ProjectId'] = $value;
3972
3973
        return $this;
3974
    }
3975
3976
    /**
3977
     * @param string $value
3978
     *
3979
     * @return $this
3980
     */
3981
    public function withTaskId($value)
3982
    {
3983
        $this->data['TaskId'] = $value;
3984
        $this->options['form_params']['TaskId'] = $value;
3985
3986
        return $this;
3987
    }
3988
3989
    /**
3990
     * @param string $value
3991
     *
3992
     * @return $this
3993
     */
3994
    public function withTaskFlowStatusId($value)
3995
    {
3996
        $this->data['TaskFlowStatusId'] = $value;
3997
        $this->options['form_params']['TaskFlowStatusId'] = $value;
3998
3999
        return $this;
4000
    }
4001
4002
    /**
4003
     * @param string $value
4004
     *
4005
     * @return $this
4006
     */
4007
    public function withTagIds($value)
4008
    {
4009
        $this->data['TagIds'] = $value;
4010
        $this->options['form_params']['TagIds'] = $value;
4011
4012
        return $this;
4013
    }
4014
4015
    /**
4016
     * @param string $value
4017
     *
4018
     * @return $this
4019
     */
4020
    public function withAddInvolvers($value)
4021
    {
4022
        $this->data['AddInvolvers'] = $value;
4023
        $this->options['form_params']['AddInvolvers'] = $value;
4024
4025
        return $this;
4026
    }
4027
4028
    /**
4029
     * @param string $value
4030
     *
4031
     * @return $this
4032
     */
4033
    public function withPriority($value)
4034
    {
4035
        $this->data['Priority'] = $value;
4036
        $this->options['form_params']['Priority'] = $value;
4037
4038
        return $this;
4039
    }
4040
4041
    /**
4042
     * @param string $value
4043
     *
4044
     * @return $this
4045
     */
4046
    public function withOrgId($value)
4047
    {
4048
        $this->data['OrgId'] = $value;
4049
        $this->options['form_params']['OrgId'] = $value;
4050
4051
        return $this;
4052
    }
4053
4054
    /**
4055
     * @param string $value
4056
     *
4057
     * @return $this
4058
     */
4059
    public function withDueDate($value)
4060
    {
4061
        $this->data['DueDate'] = $value;
4062
        $this->options['form_params']['DueDate'] = $value;
4063
4064
        return $this;
4065
    }
4066
4067
    /**
4068
     * @param string $value
4069
     *
4070
     * @return $this
4071
     */
4072
    public function withWorkTimes($value)
4073
    {
4074
        $this->data['WorkTimes'] = $value;
4075
        $this->options['form_params']['WorkTimes'] = $value;
4076
4077
        return $this;
4078
    }
4079
4080
    /**
4081
     * @param string $value
4082
     *
4083
     * @return $this
4084
     */
4085
    public function withStoryPoint($value)
4086
    {
4087
        $this->data['StoryPoint'] = $value;
4088
        $this->options['form_params']['StoryPoint'] = $value;
4089
4090
        return $this;
4091
    }
4092
4093
    /**
4094
     * @param string $value
4095
     *
4096
     * @return $this
4097
     */
4098
    public function withCustomFieldValues($value)
4099
    {
4100
        $this->data['CustomFieldValues'] = $value;
4101
        $this->options['form_params']['CustomFieldValues'] = $value;
4102
4103
        return $this;
4104
    }
4105
}
4106