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 ( 5761f9...671a10 )
by
unknown
05:14
created

ListUserOrganization   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

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