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 ( 519b34...348f79 )
by
unknown
10:36
created

CalcBMD::withAsync()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Imageprocess\V20200320;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method AnalyzeChestVessel analyzeChestVessel(array $options = [])
9
 * @method CalcBMD calcBMD(array $options = [])
10
 * @method CalcCACS calcCACS(array $options = [])
11
 * @method ClassifyFNF classifyFNF(array $options = [])
12
 * @method DetectCovid19Cad detectCovid19Cad(array $options = [])
13
 * @method DetectHipKeypointXRay detectHipKeypointXRay(array $options = [])
14
 * @method DetectKneeKeypointXRay detectKneeKeypointXRay(array $options = [])
15
 * @method DetectKneeXRay detectKneeXRay(array $options = [])
16
 * @method DetectLungNodule detectLungNodule(array $options = [])
17
 * @method DetectLymph detectLymph(array $options = [])
18
 * @method DetectPanc detectPanc(array $options = [])
19
 * @method DetectRibFracture detectRibFracture(array $options = [])
20
 * @method DetectSkinDisease detectSkinDisease(array $options = [])
21
 * @method DetectSpineMRI detectSpineMRI(array $options = [])
22
 * @method FeedbackSession feedbackSession(array $options = [])
23
 * @method GetAsyncJobResult getAsyncJobResult(array $options = [])
24
 * @method RunCTRegistration runCTRegistration(array $options = [])
25
 * @method RunMedQA runMedQA(array $options = [])
26
 * @method ScreenChestCT screenChestCT(array $options = [])
27
 * @method ScreenEC screenEC(array $options = [])
28
 * @method SegmentLymphNode segmentLymphNode(array $options = [])
29
 * @method SegmentOAR segmentOAR(array $options = [])
30
 * @method TargetVolumeSegment targetVolumeSegment(array $options = [])
31
 * @method TranslateMed translateMed(array $options = [])
32
 */
33
class ImageprocessApiResolver extends ApiResolver
34
{
35
}
36
37
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
38
{
39
    /** @var string */
40
    public $product = 'imageprocess';
41
42
    /** @var string */
43
    public $version = '2020-03-20';
44
45
    /** @var string */
46
    public $method = 'POST';
47
48
    /** @var string */
49
    public $serviceCode = 'imageprocess';
50
}
51
52
/**
53
 * @method string getDataSourceType()
54
 * @method string getOrgName()
55
 * @method string getDataFormat()
56
 * @method array getURLList()
57
 * @method string getOrgId()
58
 * @method string getAsync()
59
 */
60
class AnalyzeChestVessel extends Rpc
61
{
62
63
    /**
64
     * @param string $value
65
     *
66
     * @return $this
67
     */
68
    public function withDataSourceType($value)
69
    {
70
        $this->data['DataSourceType'] = $value;
71
        $this->options['form_params']['DataSourceType'] = $value;
72
73
        return $this;
74
    }
75
76
    /**
77
     * @param string $value
78
     *
79
     * @return $this
80
     */
81
    public function withOrgName($value)
82
    {
83
        $this->data['OrgName'] = $value;
84
        $this->options['form_params']['OrgName'] = $value;
85
86
        return $this;
87
    }
88
89
    /**
90
     * @param string $value
91
     *
92
     * @return $this
93
     */
94
    public function withDataFormat($value)
95
    {
96
        $this->data['DataFormat'] = $value;
97
        $this->options['form_params']['DataFormat'] = $value;
98
99
        return $this;
100
    }
101
102
    /**
103
     * @param array $uRLList
104
     *
105
     * @return $this
106
     */
107
	public function withURLList(array $uRLList)
108
	{
109
	    $this->data['URLList'] = $uRLList;
110
		foreach ($uRLList as $depth1 => $depth1Value) {
111
			if(isset($depth1Value['URL'])){
112
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
113
			}
114
		}
115
116
		return $this;
117
    }
118
119
    /**
120
     * @param string $value
121
     *
122
     * @return $this
123
     */
124
    public function withOrgId($value)
125
    {
126
        $this->data['OrgId'] = $value;
127
        $this->options['form_params']['OrgId'] = $value;
128
129
        return $this;
130
    }
131
132
    /**
133
     * @param string $value
134
     *
135
     * @return $this
136
     */
137
    public function withAsync($value)
138
    {
139
        $this->data['Async'] = $value;
140
        $this->options['form_params']['Async'] = $value;
141
142
        return $this;
143
    }
144
}
145
146
/**
147
 * @method string getOrgName()
148
 * @method string getSourceType()
149
 * @method string getDataFormat()
150
 * @method array getURLList()
151
 * @method string getOrgId()
152
 * @method string getAsync()
153
 */
154
class CalcBMD extends Rpc
155
{
156
157
    /**
158
     * @param string $value
159
     *
160
     * @return $this
161
     */
162
    public function withOrgName($value)
163
    {
164
        $this->data['OrgName'] = $value;
165
        $this->options['form_params']['OrgName'] = $value;
166
167
        return $this;
168
    }
169
170
    /**
171
     * @param string $value
172
     *
173
     * @return $this
174
     */
175
    public function withSourceType($value)
176
    {
177
        $this->data['SourceType'] = $value;
178
        $this->options['form_params']['SourceType'] = $value;
179
180
        return $this;
181
    }
182
183
    /**
184
     * @param string $value
185
     *
186
     * @return $this
187
     */
188
    public function withDataFormat($value)
189
    {
190
        $this->data['DataFormat'] = $value;
191
        $this->options['form_params']['DataFormat'] = $value;
192
193
        return $this;
194
    }
195
196
    /**
197
     * @param array $uRLList
198
     *
199
     * @return $this
200
     */
201
	public function withURLList(array $uRLList)
202
	{
203
	    $this->data['URLList'] = $uRLList;
204
		foreach ($uRLList as $depth1 => $depth1Value) {
205
			if(isset($depth1Value['URL'])){
206
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
207
			}
208
		}
209
210
		return $this;
211
    }
212
213
    /**
214
     * @param string $value
215
     *
216
     * @return $this
217
     */
218
    public function withOrgId($value)
219
    {
220
        $this->data['OrgId'] = $value;
221
        $this->options['form_params']['OrgId'] = $value;
222
223
        return $this;
224
    }
225
226
    /**
227
     * @param string $value
228
     *
229
     * @return $this
230
     */
231
    public function withAsync($value)
232
    {
233
        $this->data['Async'] = $value;
234
        $this->options['form_params']['Async'] = $value;
235
236
        return $this;
237
    }
238
}
239
240
/**
241
 * @method string getDataSourceType()
242
 * @method string getOrgName()
243
 * @method string getDataFormat()
244
 * @method array getURLList()
245
 * @method string getOrgId()
246
 * @method string getAsync()
247
 */
248
class CalcCACS extends Rpc
249
{
250
251
    /**
252
     * @param string $value
253
     *
254
     * @return $this
255
     */
256
    public function withDataSourceType($value)
257
    {
258
        $this->data['DataSourceType'] = $value;
259
        $this->options['form_params']['DataSourceType'] = $value;
260
261
        return $this;
262
    }
263
264
    /**
265
     * @param string $value
266
     *
267
     * @return $this
268
     */
269
    public function withOrgName($value)
270
    {
271
        $this->data['OrgName'] = $value;
272
        $this->options['form_params']['OrgName'] = $value;
273
274
        return $this;
275
    }
276
277
    /**
278
     * @param string $value
279
     *
280
     * @return $this
281
     */
282
    public function withDataFormat($value)
283
    {
284
        $this->data['DataFormat'] = $value;
285
        $this->options['form_params']['DataFormat'] = $value;
286
287
        return $this;
288
    }
289
290
    /**
291
     * @param array $uRLList
292
     *
293
     * @return $this
294
     */
295
	public function withURLList(array $uRLList)
296
	{
297
	    $this->data['URLList'] = $uRLList;
298
		foreach ($uRLList as $depth1 => $depth1Value) {
299
			if(isset($depth1Value['URL'])){
300
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
301
			}
302
		}
303
304
		return $this;
305
    }
306
307
    /**
308
     * @param string $value
309
     *
310
     * @return $this
311
     */
312
    public function withOrgId($value)
313
    {
314
        $this->data['OrgId'] = $value;
315
        $this->options['form_params']['OrgId'] = $value;
316
317
        return $this;
318
    }
319
320
    /**
321
     * @param string $value
322
     *
323
     * @return $this
324
     */
325
    public function withAsync($value)
326
    {
327
        $this->data['Async'] = $value;
328
        $this->options['form_params']['Async'] = $value;
329
330
        return $this;
331
    }
332
}
333
334
/**
335
 * @method string getOrgName()
336
 * @method string getTracerId()
337
 * @method string getDataFormat()
338
 * @method string getOrgId()
339
 * @method string getImageUrl()
340
 */
341
class ClassifyFNF extends Rpc
342
{
343
344
    /**
345
     * @param string $value
346
     *
347
     * @return $this
348
     */
349
    public function withOrgName($value)
350
    {
351
        $this->data['OrgName'] = $value;
352
        $this->options['form_params']['OrgName'] = $value;
353
354
        return $this;
355
    }
356
357
    /**
358
     * @param string $value
359
     *
360
     * @return $this
361
     */
362
    public function withTracerId($value)
363
    {
364
        $this->data['TracerId'] = $value;
365
        $this->options['form_params']['TracerId'] = $value;
366
367
        return $this;
368
    }
369
370
    /**
371
     * @param string $value
372
     *
373
     * @return $this
374
     */
375
    public function withDataFormat($value)
376
    {
377
        $this->data['DataFormat'] = $value;
378
        $this->options['form_params']['DataFormat'] = $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
     * @param string $value
398
     *
399
     * @return $this
400
     */
401
    public function withImageUrl($value)
402
    {
403
        $this->data['ImageUrl'] = $value;
404
        $this->options['form_params']['ImageUrl'] = $value;
405
406
        return $this;
407
    }
408
}
409
410
/**
411
 * @method string getOrgName()
412
 * @method string getDataFormat()
413
 * @method array getURLList()
414
 * @method string getOrgId()
415
 * @method string getAsync()
416
 */
417
class DetectCovid19Cad extends Rpc
418
{
419
420
    /**
421
     * @param string $value
422
     *
423
     * @return $this
424
     */
425
    public function withOrgName($value)
426
    {
427
        $this->data['OrgName'] = $value;
428
        $this->options['form_params']['OrgName'] = $value;
429
430
        return $this;
431
    }
432
433
    /**
434
     * @param string $value
435
     *
436
     * @return $this
437
     */
438
    public function withDataFormat($value)
439
    {
440
        $this->data['DataFormat'] = $value;
441
        $this->options['form_params']['DataFormat'] = $value;
442
443
        return $this;
444
    }
445
446
    /**
447
     * @param array $uRLList
448
     *
449
     * @return $this
450
     */
451
	public function withURLList(array $uRLList)
452
	{
453
	    $this->data['URLList'] = $uRLList;
454
		foreach ($uRLList as $depth1 => $depth1Value) {
455
			if(isset($depth1Value['URL'])){
456
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
457
			}
458
		}
459
460
		return $this;
461
    }
462
463
    /**
464
     * @param string $value
465
     *
466
     * @return $this
467
     */
468
    public function withOrgId($value)
469
    {
470
        $this->data['OrgId'] = $value;
471
        $this->options['form_params']['OrgId'] = $value;
472
473
        return $this;
474
    }
475
476
    /**
477
     * @param string $value
478
     *
479
     * @return $this
480
     */
481
    public function withAsync($value)
482
    {
483
        $this->data['Async'] = $value;
484
        $this->options['form_params']['Async'] = $value;
485
486
        return $this;
487
    }
488
}
489
490
/**
491
 * @method string getOrgName()
492
 * @method string getTracerId()
493
 * @method string getDataFormat()
494
 * @method string getOrgId()
495
 * @method string getImageUrl()
496
 */
497
class DetectHipKeypointXRay extends Rpc
498
{
499
500
    /**
501
     * @param string $value
502
     *
503
     * @return $this
504
     */
505
    public function withOrgName($value)
506
    {
507
        $this->data['OrgName'] = $value;
508
        $this->options['form_params']['OrgName'] = $value;
509
510
        return $this;
511
    }
512
513
    /**
514
     * @param string $value
515
     *
516
     * @return $this
517
     */
518
    public function withTracerId($value)
519
    {
520
        $this->data['TracerId'] = $value;
521
        $this->options['form_params']['TracerId'] = $value;
522
523
        return $this;
524
    }
525
526
    /**
527
     * @param string $value
528
     *
529
     * @return $this
530
     */
531
    public function withDataFormat($value)
532
    {
533
        $this->data['DataFormat'] = $value;
534
        $this->options['form_params']['DataFormat'] = $value;
535
536
        return $this;
537
    }
538
539
    /**
540
     * @param string $value
541
     *
542
     * @return $this
543
     */
544
    public function withOrgId($value)
545
    {
546
        $this->data['OrgId'] = $value;
547
        $this->options['form_params']['OrgId'] = $value;
548
549
        return $this;
550
    }
551
552
    /**
553
     * @param string $value
554
     *
555
     * @return $this
556
     */
557
    public function withImageUrl($value)
558
    {
559
        $this->data['ImageUrl'] = $value;
560
        $this->options['form_params']['ImageUrl'] = $value;
561
562
        return $this;
563
    }
564
}
565
566
/**
567
 * @method string getOrgName()
568
 * @method string getTracerId()
569
 * @method string getDataFormat()
570
 * @method string getOrgId()
571
 * @method string getImageUrl()
572
 */
573
class DetectKneeKeypointXRay extends Rpc
574
{
575
576
    /**
577
     * @param string $value
578
     *
579
     * @return $this
580
     */
581
    public function withOrgName($value)
582
    {
583
        $this->data['OrgName'] = $value;
584
        $this->options['form_params']['OrgName'] = $value;
585
586
        return $this;
587
    }
588
589
    /**
590
     * @param string $value
591
     *
592
     * @return $this
593
     */
594
    public function withTracerId($value)
595
    {
596
        $this->data['TracerId'] = $value;
597
        $this->options['form_params']['TracerId'] = $value;
598
599
        return $this;
600
    }
601
602
    /**
603
     * @param string $value
604
     *
605
     * @return $this
606
     */
607
    public function withDataFormat($value)
608
    {
609
        $this->data['DataFormat'] = $value;
610
        $this->options['form_params']['DataFormat'] = $value;
611
612
        return $this;
613
    }
614
615
    /**
616
     * @param string $value
617
     *
618
     * @return $this
619
     */
620
    public function withOrgId($value)
621
    {
622
        $this->data['OrgId'] = $value;
623
        $this->options['form_params']['OrgId'] = $value;
624
625
        return $this;
626
    }
627
628
    /**
629
     * @param string $value
630
     *
631
     * @return $this
632
     */
633
    public function withImageUrl($value)
634
    {
635
        $this->data['ImageUrl'] = $value;
636
        $this->options['form_params']['ImageUrl'] = $value;
637
638
        return $this;
639
    }
640
}
641
642
/**
643
 * @method string getOrgName()
644
 * @method string getDataFormat()
645
 * @method string getUrl()
646
 * @method string getOrgId()
647
 */
648
class DetectKneeXRay extends Rpc
649
{
650
651
    /**
652
     * @param string $value
653
     *
654
     * @return $this
655
     */
656
    public function withOrgName($value)
657
    {
658
        $this->data['OrgName'] = $value;
659
        $this->options['form_params']['OrgName'] = $value;
660
661
        return $this;
662
    }
663
664
    /**
665
     * @param string $value
666
     *
667
     * @return $this
668
     */
669
    public function withDataFormat($value)
670
    {
671
        $this->data['DataFormat'] = $value;
672
        $this->options['form_params']['DataFormat'] = $value;
673
674
        return $this;
675
    }
676
677
    /**
678
     * @param string $value
679
     *
680
     * @return $this
681
     */
682
    public function withUrl($value)
683
    {
684
        $this->data['Url'] = $value;
685
        $this->options['form_params']['Url'] = $value;
686
687
        return $this;
688
    }
689
690
    /**
691
     * @param string $value
692
     *
693
     * @return $this
694
     */
695
    public function withOrgId($value)
696
    {
697
        $this->data['OrgId'] = $value;
698
        $this->options['form_params']['OrgId'] = $value;
699
700
        return $this;
701
    }
702
}
703
704
/**
705
 * @method string getThreshold()
706
 * @method string getOrgName()
707
 * @method string getDataFormat()
708
 * @method array getURLList()
709
 * @method string getOrgId()
710
 * @method string getAsync()
711
 */
712
class DetectLungNodule extends Rpc
713
{
714
715
    /**
716
     * @param string $value
717
     *
718
     * @return $this
719
     */
720
    public function withThreshold($value)
721
    {
722
        $this->data['Threshold'] = $value;
723
        $this->options['form_params']['Threshold'] = $value;
724
725
        return $this;
726
    }
727
728
    /**
729
     * @param string $value
730
     *
731
     * @return $this
732
     */
733
    public function withOrgName($value)
734
    {
735
        $this->data['OrgName'] = $value;
736
        $this->options['form_params']['OrgName'] = $value;
737
738
        return $this;
739
    }
740
741
    /**
742
     * @param string $value
743
     *
744
     * @return $this
745
     */
746
    public function withDataFormat($value)
747
    {
748
        $this->data['DataFormat'] = $value;
749
        $this->options['form_params']['DataFormat'] = $value;
750
751
        return $this;
752
    }
753
754
    /**
755
     * @param array $uRLList
756
     *
757
     * @return $this
758
     */
759
	public function withURLList(array $uRLList)
760
	{
761
	    $this->data['URLList'] = $uRLList;
762
		foreach ($uRLList as $depth1 => $depth1Value) {
763
			if(isset($depth1Value['URL'])){
764
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
765
			}
766
		}
767
768
		return $this;
769
    }
770
771
    /**
772
     * @param string $value
773
     *
774
     * @return $this
775
     */
776
    public function withOrgId($value)
777
    {
778
        $this->data['OrgId'] = $value;
779
        $this->options['form_params']['OrgId'] = $value;
780
781
        return $this;
782
    }
783
784
    /**
785
     * @param string $value
786
     *
787
     * @return $this
788
     */
789
    public function withAsync($value)
790
    {
791
        $this->data['Async'] = $value;
792
        $this->options['form_params']['Async'] = $value;
793
794
        return $this;
795
    }
796
}
797
798
/**
799
 * @method string getDataSourceType()
800
 * @method array getURLList()
801
 * @method string getAsync()
802
 */
803
class DetectLymph extends Rpc
804
{
805
806
    /**
807
     * @param string $value
808
     *
809
     * @return $this
810
     */
811
    public function withDataSourceType($value)
812
    {
813
        $this->data['DataSourceType'] = $value;
814
        $this->options['form_params']['DataSourceType'] = $value;
815
816
        return $this;
817
    }
818
819
    /**
820
     * @param array $uRLList
821
     *
822
     * @return $this
823
     */
824
	public function withURLList(array $uRLList)
825
	{
826
	    $this->data['URLList'] = $uRLList;
827
		foreach ($uRLList as $depth1 => $depth1Value) {
828
			if(isset($depth1Value['URL'])){
829
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
830
			}
831
		}
832
833
		return $this;
834
    }
835
836
    /**
837
     * @param string $value
838
     *
839
     * @return $this
840
     */
841
    public function withAsync($value)
842
    {
843
        $this->data['Async'] = $value;
844
        $this->options['form_params']['Async'] = $value;
845
846
        return $this;
847
    }
848
}
849
850
/**
851
 * @method string getDataSourceType()
852
 * @method array getURLList()
853
 * @method string getAsync()
854
 */
855
class DetectPanc extends Rpc
856
{
857
858
    /**
859
     * @param string $value
860
     *
861
     * @return $this
862
     */
863
    public function withDataSourceType($value)
864
    {
865
        $this->data['DataSourceType'] = $value;
866
        $this->options['form_params']['DataSourceType'] = $value;
867
868
        return $this;
869
    }
870
871
    /**
872
     * @param array $uRLList
873
     *
874
     * @return $this
875
     */
876
	public function withURLList(array $uRLList)
877
	{
878
	    $this->data['URLList'] = $uRLList;
879
		foreach ($uRLList as $depth1 => $depth1Value) {
880
			if(isset($depth1Value['URL'])){
881
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
882
			}
883
		}
884
885
		return $this;
886
    }
887
888
    /**
889
     * @param string $value
890
     *
891
     * @return $this
892
     */
893
    public function withAsync($value)
894
    {
895
        $this->data['Async'] = $value;
896
        $this->options['form_params']['Async'] = $value;
897
898
        return $this;
899
    }
900
}
901
902
/**
903
 * @method string getOrgName()
904
 * @method string getSourceType()
905
 * @method string getDataFormat()
906
 * @method array getURLList()
907
 * @method string getOrgId()
908
 * @method string getAsync()
909
 */
910
class DetectRibFracture extends Rpc
911
{
912
913
    /**
914
     * @param string $value
915
     *
916
     * @return $this
917
     */
918
    public function withOrgName($value)
919
    {
920
        $this->data['OrgName'] = $value;
921
        $this->options['form_params']['OrgName'] = $value;
922
923
        return $this;
924
    }
925
926
    /**
927
     * @param string $value
928
     *
929
     * @return $this
930
     */
931
    public function withSourceType($value)
932
    {
933
        $this->data['SourceType'] = $value;
934
        $this->options['form_params']['SourceType'] = $value;
935
936
        return $this;
937
    }
938
939
    /**
940
     * @param string $value
941
     *
942
     * @return $this
943
     */
944
    public function withDataFormat($value)
945
    {
946
        $this->data['DataFormat'] = $value;
947
        $this->options['form_params']['DataFormat'] = $value;
948
949
        return $this;
950
    }
951
952
    /**
953
     * @param array $uRLList
954
     *
955
     * @return $this
956
     */
957
	public function withURLList(array $uRLList)
958
	{
959
	    $this->data['URLList'] = $uRLList;
960
		foreach ($uRLList as $depth1 => $depth1Value) {
961
			if(isset($depth1Value['URL'])){
962
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
963
			}
964
		}
965
966
		return $this;
967
    }
968
969
    /**
970
     * @param string $value
971
     *
972
     * @return $this
973
     */
974
    public function withOrgId($value)
975
    {
976
        $this->data['OrgId'] = $value;
977
        $this->options['form_params']['OrgId'] = $value;
978
979
        return $this;
980
    }
981
982
    /**
983
     * @param string $value
984
     *
985
     * @return $this
986
     */
987
    public function withAsync($value)
988
    {
989
        $this->data['Async'] = $value;
990
        $this->options['form_params']['Async'] = $value;
991
992
        return $this;
993
    }
994
}
995
996
/**
997
 * @method string getOrgName()
998
 * @method string getUrl()
999
 * @method string getOrgId()
1000
 */
1001
class DetectSkinDisease extends Rpc
1002
{
1003
1004
    /**
1005
     * @param string $value
1006
     *
1007
     * @return $this
1008
     */
1009
    public function withOrgName($value)
1010
    {
1011
        $this->data['OrgName'] = $value;
1012
        $this->options['form_params']['OrgName'] = $value;
1013
1014
        return $this;
1015
    }
1016
1017
    /**
1018
     * @param string $value
1019
     *
1020
     * @return $this
1021
     */
1022
    public function withUrl($value)
1023
    {
1024
        $this->data['Url'] = $value;
1025
        $this->options['form_params']['Url'] = $value;
1026
1027
        return $this;
1028
    }
1029
1030
    /**
1031
     * @param string $value
1032
     *
1033
     * @return $this
1034
     */
1035
    public function withOrgId($value)
1036
    {
1037
        $this->data['OrgId'] = $value;
1038
        $this->options['form_params']['OrgId'] = $value;
1039
1040
        return $this;
1041
    }
1042
}
1043
1044
/**
1045
 * @method string getOrgName()
1046
 * @method string getDataFormat()
1047
 * @method array getURLList()
1048
 * @method string getOrgId()
1049
 */
1050
class DetectSpineMRI extends Rpc
1051
{
1052
1053
    /**
1054
     * @param string $value
1055
     *
1056
     * @return $this
1057
     */
1058
    public function withOrgName($value)
1059
    {
1060
        $this->data['OrgName'] = $value;
1061
        $this->options['form_params']['OrgName'] = $value;
1062
1063
        return $this;
1064
    }
1065
1066
    /**
1067
     * @param string $value
1068
     *
1069
     * @return $this
1070
     */
1071
    public function withDataFormat($value)
1072
    {
1073
        $this->data['DataFormat'] = $value;
1074
        $this->options['form_params']['DataFormat'] = $value;
1075
1076
        return $this;
1077
    }
1078
1079
    /**
1080
     * @param array $uRLList
1081
     *
1082
     * @return $this
1083
     */
1084
	public function withURLList(array $uRLList)
1085
	{
1086
	    $this->data['URLList'] = $uRLList;
1087
		foreach ($uRLList as $depth1 => $depth1Value) {
1088
			if(isset($depth1Value['URL'])){
1089
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1090
			}
1091
		}
1092
1093
		return $this;
1094
    }
1095
1096
    /**
1097
     * @param string $value
1098
     *
1099
     * @return $this
1100
     */
1101
    public function withOrgId($value)
1102
    {
1103
        $this->data['OrgId'] = $value;
1104
        $this->options['form_params']['OrgId'] = $value;
1105
1106
        return $this;
1107
    }
1108
}
1109
1110
/**
1111
 * @method string getSessionId()
1112
 * @method string getFeedback()
1113
 */
1114
class FeedbackSession extends Rpc
1115
{
1116
1117
    /**
1118
     * @param string $value
1119
     *
1120
     * @return $this
1121
     */
1122
    public function withSessionId($value)
1123
    {
1124
        $this->data['SessionId'] = $value;
1125
        $this->options['form_params']['SessionId'] = $value;
1126
1127
        return $this;
1128
    }
1129
1130
    /**
1131
     * @param string $value
1132
     *
1133
     * @return $this
1134
     */
1135
    public function withFeedback($value)
1136
    {
1137
        $this->data['Feedback'] = $value;
1138
        $this->options['form_params']['Feedback'] = $value;
1139
1140
        return $this;
1141
    }
1142
}
1143
1144
/**
1145
 * @method string getJobId()
1146
 * @method string getAsync()
1147
 */
1148
class GetAsyncJobResult extends Rpc
1149
{
1150
1151
    /**
1152
     * @param string $value
1153
     *
1154
     * @return $this
1155
     */
1156
    public function withJobId($value)
1157
    {
1158
        $this->data['JobId'] = $value;
1159
        $this->options['form_params']['JobId'] = $value;
1160
1161
        return $this;
1162
    }
1163
1164
    /**
1165
     * @param string $value
1166
     *
1167
     * @return $this
1168
     */
1169
    public function withAsync($value)
1170
    {
1171
        $this->data['Async'] = $value;
1172
        $this->options['form_params']['Async'] = $value;
1173
1174
        return $this;
1175
    }
1176
}
1177
1178
/**
1179
 * @method string getDataSourceType()
1180
 * @method string getOrgName()
1181
 * @method array getReferenceList()
1182
 * @method string getDataFormat()
1183
 * @method string getOrgId()
1184
 * @method string getAsync()
1185
 * @method array getFloatingList()
1186
 */
1187
class RunCTRegistration extends Rpc
1188
{
1189
1190
    /**
1191
     * @param string $value
1192
     *
1193
     * @return $this
1194
     */
1195
    public function withDataSourceType($value)
1196
    {
1197
        $this->data['DataSourceType'] = $value;
1198
        $this->options['form_params']['DataSourceType'] = $value;
1199
1200
        return $this;
1201
    }
1202
1203
    /**
1204
     * @param string $value
1205
     *
1206
     * @return $this
1207
     */
1208
    public function withOrgName($value)
1209
    {
1210
        $this->data['OrgName'] = $value;
1211
        $this->options['form_params']['OrgName'] = $value;
1212
1213
        return $this;
1214
    }
1215
1216
    /**
1217
     * @param array $referenceList
1218
     *
1219
     * @return $this
1220
     */
1221
	public function withReferenceList(array $referenceList)
1222
	{
1223
	    $this->data['ReferenceList'] = $referenceList;
1224
		foreach ($referenceList as $depth1 => $depth1Value) {
1225
			if(isset($depth1Value['ReferenceURL'])){
1226
				$this->options['form_params']['ReferenceList.' . ($depth1 + 1) . '.ReferenceURL'] = $depth1Value['ReferenceURL'];
1227
			}
1228
		}
1229
1230
		return $this;
1231
    }
1232
1233
    /**
1234
     * @param string $value
1235
     *
1236
     * @return $this
1237
     */
1238
    public function withDataFormat($value)
1239
    {
1240
        $this->data['DataFormat'] = $value;
1241
        $this->options['form_params']['DataFormat'] = $value;
1242
1243
        return $this;
1244
    }
1245
1246
    /**
1247
     * @param string $value
1248
     *
1249
     * @return $this
1250
     */
1251
    public function withOrgId($value)
1252
    {
1253
        $this->data['OrgId'] = $value;
1254
        $this->options['form_params']['OrgId'] = $value;
1255
1256
        return $this;
1257
    }
1258
1259
    /**
1260
     * @param string $value
1261
     *
1262
     * @return $this
1263
     */
1264
    public function withAsync($value)
1265
    {
1266
        $this->data['Async'] = $value;
1267
        $this->options['form_params']['Async'] = $value;
1268
1269
        return $this;
1270
    }
1271
1272
    /**
1273
     * @param array $floatingList
1274
     *
1275
     * @return $this
1276
     */
1277
	public function withFloatingList(array $floatingList)
1278
	{
1279
	    $this->data['FloatingList'] = $floatingList;
1280
		foreach ($floatingList as $depth1 => $depth1Value) {
1281
			if(isset($depth1Value['FloatingURL'])){
1282
				$this->options['form_params']['FloatingList.' . ($depth1 + 1) . '.FloatingURL'] = $depth1Value['FloatingURL'];
1283
			}
1284
		}
1285
1286
		return $this;
1287
    }
1288
}
1289
1290
/**
1291
 * @method string getSessionId()
1292
 * @method string getOrgName()
1293
 * @method array getAnswerImageDataList()
1294
 * @method array getAnswerTextList()
1295
 * @method string getDepartment()
1296
 * @method array getAnswerImageURLList()
1297
 * @method string getQuestionType()
1298
 * @method string getOrgId()
1299
 */
1300
class RunMedQA extends Rpc
1301
{
1302
1303
    /**
1304
     * @param string $value
1305
     *
1306
     * @return $this
1307
     */
1308
    public function withSessionId($value)
1309
    {
1310
        $this->data['SessionId'] = $value;
1311
        $this->options['form_params']['SessionId'] = $value;
1312
1313
        return $this;
1314
    }
1315
1316
    /**
1317
     * @param string $value
1318
     *
1319
     * @return $this
1320
     */
1321
    public function withOrgName($value)
1322
    {
1323
        $this->data['OrgName'] = $value;
1324
        $this->options['form_params']['OrgName'] = $value;
1325
1326
        return $this;
1327
    }
1328
1329
    /**
1330
     * @param array $answerImageDataList
1331
     *
1332
     * @return $this
1333
     */
1334
	public function withAnswerImageDataList(array $answerImageDataList)
1335
	{
1336
	    $this->data['AnswerImageDataList'] = $answerImageDataList;
1337
		foreach ($answerImageDataList as $depth1 => $depth1Value) {
1338
			if(isset($depth1Value['AnswerImageData'])){
1339
				$this->options['form_params']['AnswerImageDataList.' . ($depth1 + 1) . '.AnswerImageData'] = $depth1Value['AnswerImageData'];
1340
			}
1341
		}
1342
1343
		return $this;
1344
    }
1345
1346
    /**
1347
     * @param array $answerTextList
1348
     *
1349
     * @return $this
1350
     */
1351
	public function withAnswerTextList(array $answerTextList)
1352
	{
1353
	    $this->data['AnswerTextList'] = $answerTextList;
1354
		foreach ($answerTextList as $depth1 => $depth1Value) {
1355
			if(isset($depth1Value['AnswerText'])){
1356
				$this->options['form_params']['AnswerTextList.' . ($depth1 + 1) . '.AnswerText'] = $depth1Value['AnswerText'];
1357
			}
1358
		}
1359
1360
		return $this;
1361
    }
1362
1363
    /**
1364
     * @param string $value
1365
     *
1366
     * @return $this
1367
     */
1368
    public function withDepartment($value)
1369
    {
1370
        $this->data['Department'] = $value;
1371
        $this->options['form_params']['Department'] = $value;
1372
1373
        return $this;
1374
    }
1375
1376
    /**
1377
     * @param array $answerImageURLList
1378
     *
1379
     * @return $this
1380
     */
1381
	public function withAnswerImageURLList(array $answerImageURLList)
1382
	{
1383
	    $this->data['AnswerImageURLList'] = $answerImageURLList;
1384
		foreach ($answerImageURLList as $depth1 => $depth1Value) {
1385
			if(isset($depth1Value['AnswerImageURL'])){
1386
				$this->options['form_params']['AnswerImageURLList.' . ($depth1 + 1) . '.AnswerImageURL'] = $depth1Value['AnswerImageURL'];
1387
			}
1388
		}
1389
1390
		return $this;
1391
    }
1392
1393
    /**
1394
     * @param string $value
1395
     *
1396
     * @return $this
1397
     */
1398
    public function withQuestionType($value)
1399
    {
1400
        $this->data['QuestionType'] = $value;
1401
        $this->options['form_params']['QuestionType'] = $value;
1402
1403
        return $this;
1404
    }
1405
1406
    /**
1407
     * @param string $value
1408
     *
1409
     * @return $this
1410
     */
1411
    public function withOrgId($value)
1412
    {
1413
        $this->data['OrgId'] = $value;
1414
        $this->options['form_params']['OrgId'] = $value;
1415
1416
        return $this;
1417
    }
1418
}
1419
1420
/**
1421
 * @method string getOrgName()
1422
 * @method string getMask()
1423
 * @method string getDataFormat()
1424
 * @method array getURLList()
1425
 * @method string getOrgId()
1426
 * @method string getVerbose()
1427
 * @method string getAsync()
1428
 */
1429
class ScreenChestCT extends Rpc
1430
{
1431
1432
    /**
1433
     * @param string $value
1434
     *
1435
     * @return $this
1436
     */
1437
    public function withOrgName($value)
1438
    {
1439
        $this->data['OrgName'] = $value;
1440
        $this->options['form_params']['OrgName'] = $value;
1441
1442
        return $this;
1443
    }
1444
1445
    /**
1446
     * @param string $value
1447
     *
1448
     * @return $this
1449
     */
1450
    public function withMask($value)
1451
    {
1452
        $this->data['Mask'] = $value;
1453
        $this->options['form_params']['Mask'] = $value;
1454
1455
        return $this;
1456
    }
1457
1458
    /**
1459
     * @param string $value
1460
     *
1461
     * @return $this
1462
     */
1463
    public function withDataFormat($value)
1464
    {
1465
        $this->data['DataFormat'] = $value;
1466
        $this->options['form_params']['DataFormat'] = $value;
1467
1468
        return $this;
1469
    }
1470
1471
    /**
1472
     * @param array $uRLList
1473
     *
1474
     * @return $this
1475
     */
1476
	public function withURLList(array $uRLList)
1477
	{
1478
	    $this->data['URLList'] = $uRLList;
1479
		foreach ($uRLList as $depth1 => $depth1Value) {
1480
			if(isset($depth1Value['URL'])){
1481
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1482
			}
1483
		}
1484
1485
		return $this;
1486
    }
1487
1488
    /**
1489
     * @param string $value
1490
     *
1491
     * @return $this
1492
     */
1493
    public function withOrgId($value)
1494
    {
1495
        $this->data['OrgId'] = $value;
1496
        $this->options['form_params']['OrgId'] = $value;
1497
1498
        return $this;
1499
    }
1500
1501
    /**
1502
     * @param string $value
1503
     *
1504
     * @return $this
1505
     */
1506
    public function withVerbose($value)
1507
    {
1508
        $this->data['Verbose'] = $value;
1509
        $this->options['form_params']['Verbose'] = $value;
1510
1511
        return $this;
1512
    }
1513
1514
    /**
1515
     * @param string $value
1516
     *
1517
     * @return $this
1518
     */
1519
    public function withAsync($value)
1520
    {
1521
        $this->data['Async'] = $value;
1522
        $this->options['form_params']['Async'] = $value;
1523
1524
        return $this;
1525
    }
1526
}
1527
1528
/**
1529
 * @method string getDataSourceType()
1530
 * @method array getURLList()
1531
 * @method string getAsync()
1532
 */
1533
class ScreenEC extends Rpc
1534
{
1535
1536
    /**
1537
     * @param string $value
1538
     *
1539
     * @return $this
1540
     */
1541
    public function withDataSourceType($value)
1542
    {
1543
        $this->data['DataSourceType'] = $value;
1544
        $this->options['form_params']['DataSourceType'] = $value;
1545
1546
        return $this;
1547
    }
1548
1549
    /**
1550
     * @param array $uRLList
1551
     *
1552
     * @return $this
1553
     */
1554
	public function withURLList(array $uRLList)
1555
	{
1556
	    $this->data['URLList'] = $uRLList;
1557
		foreach ($uRLList as $depth1 => $depth1Value) {
1558
			if(isset($depth1Value['URL'])){
1559
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1560
			}
1561
		}
1562
1563
		return $this;
1564
    }
1565
1566
    /**
1567
     * @param string $value
1568
     *
1569
     * @return $this
1570
     */
1571
    public function withAsync($value)
1572
    {
1573
        $this->data['Async'] = $value;
1574
        $this->options['form_params']['Async'] = $value;
1575
1576
        return $this;
1577
    }
1578
}
1579
1580
/**
1581
 * @method string getOrgName()
1582
 * @method string getBodyPart()
1583
 * @method string getDataFormat()
1584
 * @method array getURLList()
1585
 * @method string getOrgId()
1586
 * @method string getAsync()
1587
 */
1588
class SegmentLymphNode extends Rpc
1589
{
1590
1591
    /**
1592
     * @param string $value
1593
     *
1594
     * @return $this
1595
     */
1596
    public function withOrgName($value)
1597
    {
1598
        $this->data['OrgName'] = $value;
1599
        $this->options['form_params']['OrgName'] = $value;
1600
1601
        return $this;
1602
    }
1603
1604
    /**
1605
     * @param string $value
1606
     *
1607
     * @return $this
1608
     */
1609
    public function withBodyPart($value)
1610
    {
1611
        $this->data['BodyPart'] = $value;
1612
        $this->options['form_params']['BodyPart'] = $value;
1613
1614
        return $this;
1615
    }
1616
1617
    /**
1618
     * @param string $value
1619
     *
1620
     * @return $this
1621
     */
1622
    public function withDataFormat($value)
1623
    {
1624
        $this->data['DataFormat'] = $value;
1625
        $this->options['form_params']['DataFormat'] = $value;
1626
1627
        return $this;
1628
    }
1629
1630
    /**
1631
     * @param array $uRLList
1632
     *
1633
     * @return $this
1634
     */
1635
	public function withURLList(array $uRLList)
1636
	{
1637
	    $this->data['URLList'] = $uRLList;
1638
		foreach ($uRLList as $depth1 => $depth1Value) {
1639
			if(isset($depth1Value['URL'])){
1640
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1641
			}
1642
		}
1643
1644
		return $this;
1645
    }
1646
1647
    /**
1648
     * @param string $value
1649
     *
1650
     * @return $this
1651
     */
1652
    public function withOrgId($value)
1653
    {
1654
        $this->data['OrgId'] = $value;
1655
        $this->options['form_params']['OrgId'] = $value;
1656
1657
        return $this;
1658
    }
1659
1660
    /**
1661
     * @param string $value
1662
     *
1663
     * @return $this
1664
     */
1665
    public function withAsync($value)
1666
    {
1667
        $this->data['Async'] = $value;
1668
        $this->options['form_params']['Async'] = $value;
1669
1670
        return $this;
1671
    }
1672
}
1673
1674
/**
1675
 * @method string getOrgName()
1676
 * @method string getBodyPart()
1677
 * @method string getDataFormat()
1678
 * @method array getURLList()
1679
 * @method string getOrgId()
1680
 * @method string getAsync()
1681
 * @method string getContrast()
1682
 * @method array getMaskList()
1683
 */
1684
class SegmentOAR extends Rpc
1685
{
1686
1687
    /**
1688
     * @param string $value
1689
     *
1690
     * @return $this
1691
     */
1692
    public function withOrgName($value)
1693
    {
1694
        $this->data['OrgName'] = $value;
1695
        $this->options['form_params']['OrgName'] = $value;
1696
1697
        return $this;
1698
    }
1699
1700
    /**
1701
     * @param string $value
1702
     *
1703
     * @return $this
1704
     */
1705
    public function withBodyPart($value)
1706
    {
1707
        $this->data['BodyPart'] = $value;
1708
        $this->options['form_params']['BodyPart'] = $value;
1709
1710
        return $this;
1711
    }
1712
1713
    /**
1714
     * @param string $value
1715
     *
1716
     * @return $this
1717
     */
1718
    public function withDataFormat($value)
1719
    {
1720
        $this->data['DataFormat'] = $value;
1721
        $this->options['form_params']['DataFormat'] = $value;
1722
1723
        return $this;
1724
    }
1725
1726
    /**
1727
     * @param array $uRLList
1728
     *
1729
     * @return $this
1730
     */
1731
	public function withURLList(array $uRLList)
1732
	{
1733
	    $this->data['URLList'] = $uRLList;
1734
		foreach ($uRLList as $depth1 => $depth1Value) {
1735
			if(isset($depth1Value['URL'])){
1736
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1737
			}
1738
		}
1739
1740
		return $this;
1741
    }
1742
1743
    /**
1744
     * @param string $value
1745
     *
1746
     * @return $this
1747
     */
1748
    public function withOrgId($value)
1749
    {
1750
        $this->data['OrgId'] = $value;
1751
        $this->options['form_params']['OrgId'] = $value;
1752
1753
        return $this;
1754
    }
1755
1756
    /**
1757
     * @param string $value
1758
     *
1759
     * @return $this
1760
     */
1761
    public function withAsync($value)
1762
    {
1763
        $this->data['Async'] = $value;
1764
        $this->options['form_params']['Async'] = $value;
1765
1766
        return $this;
1767
    }
1768
1769
    /**
1770
     * @param string $value
1771
     *
1772
     * @return $this
1773
     */
1774
    public function withContrast($value)
1775
    {
1776
        $this->data['Contrast'] = $value;
1777
        $this->options['form_params']['Contrast'] = $value;
1778
1779
        return $this;
1780
    }
1781
1782
    /**
1783
     * @param array $maskList
1784
     *
1785
     * @return $this
1786
     */
1787
	public function withMaskList(array $maskList)
1788
	{
1789
	    $this->data['MaskList'] = $maskList;
1790
		foreach ($maskList as $i => $iValue) {
1791
			$this->options['form_params']['MaskList.' . ($i + 1)] = $iValue;
1792
		}
1793
1794
		return $this;
1795
    }
1796
}
1797
1798
/**
1799
 * @method string getCancerType()
1800
 * @method string getOrgName()
1801
 * @method string getTargetVolumeType()
1802
 * @method string getDataFormat()
1803
 * @method array getURLList()
1804
 * @method string getOrgId()
1805
 * @method string getAsync()
1806
 */
1807
class TargetVolumeSegment extends Rpc
1808
{
1809
1810
    /**
1811
     * @param string $value
1812
     *
1813
     * @return $this
1814
     */
1815
    public function withCancerType($value)
1816
    {
1817
        $this->data['CancerType'] = $value;
1818
        $this->options['form_params']['CancerType'] = $value;
1819
1820
        return $this;
1821
    }
1822
1823
    /**
1824
     * @param string $value
1825
     *
1826
     * @return $this
1827
     */
1828
    public function withOrgName($value)
1829
    {
1830
        $this->data['OrgName'] = $value;
1831
        $this->options['form_params']['OrgName'] = $value;
1832
1833
        return $this;
1834
    }
1835
1836
    /**
1837
     * @param string $value
1838
     *
1839
     * @return $this
1840
     */
1841
    public function withTargetVolumeType($value)
1842
    {
1843
        $this->data['TargetVolumeType'] = $value;
1844
        $this->options['form_params']['TargetVolumeType'] = $value;
1845
1846
        return $this;
1847
    }
1848
1849
    /**
1850
     * @param string $value
1851
     *
1852
     * @return $this
1853
     */
1854
    public function withDataFormat($value)
1855
    {
1856
        $this->data['DataFormat'] = $value;
1857
        $this->options['form_params']['DataFormat'] = $value;
1858
1859
        return $this;
1860
    }
1861
1862
    /**
1863
     * @param array $uRLList
1864
     *
1865
     * @return $this
1866
     */
1867
	public function withURLList(array $uRLList)
1868
	{
1869
	    $this->data['URLList'] = $uRLList;
1870
		foreach ($uRLList as $depth1 => $depth1Value) {
1871
			if(isset($depth1Value['URL'])){
1872
				$this->options['form_params']['URLList.' . ($depth1 + 1) . '.URL'] = $depth1Value['URL'];
1873
			}
1874
		}
1875
1876
		return $this;
1877
    }
1878
1879
    /**
1880
     * @param string $value
1881
     *
1882
     * @return $this
1883
     */
1884
    public function withOrgId($value)
1885
    {
1886
        $this->data['OrgId'] = $value;
1887
        $this->options['form_params']['OrgId'] = $value;
1888
1889
        return $this;
1890
    }
1891
1892
    /**
1893
     * @param string $value
1894
     *
1895
     * @return $this
1896
     */
1897
    public function withAsync($value)
1898
    {
1899
        $this->data['Async'] = $value;
1900
        $this->options['form_params']['Async'] = $value;
1901
1902
        return $this;
1903
    }
1904
}
1905
1906
/**
1907
 * @method string getToLanguage()
1908
 * @method string getText()
1909
 * @method string getFromLanguage()
1910
 */
1911
class TranslateMed extends Rpc
1912
{
1913
1914
    /**
1915
     * @param string $value
1916
     *
1917
     * @return $this
1918
     */
1919
    public function withToLanguage($value)
1920
    {
1921
        $this->data['ToLanguage'] = $value;
1922
        $this->options['form_params']['ToLanguage'] = $value;
1923
1924
        return $this;
1925
    }
1926
1927
    /**
1928
     * @param string $value
1929
     *
1930
     * @return $this
1931
     */
1932
    public function withText($value)
1933
    {
1934
        $this->data['Text'] = $value;
1935
        $this->options['form_params']['Text'] = $value;
1936
1937
        return $this;
1938
    }
1939
1940
    /**
1941
     * @param string $value
1942
     *
1943
     * @return $this
1944
     */
1945
    public function withFromLanguage($value)
1946
    {
1947
        $this->data['FromLanguage'] = $value;
1948
        $this->options['form_params']['FromLanguage'] = $value;
1949
1950
        return $this;
1951
    }
1952
}
1953