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 ( 45318e...76ff38 )
by
unknown
06:13
created

ListProjectCustomFields   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Importance

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

2 Methods

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