tencentcloud-sdk-mrs 3.0.842 → 3.0.843
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200910/models.rb +189 -64
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2121001bf22666785a2afb6d657255e2ab871eb
|
4
|
+
data.tar.gz: 913157b34ee03283c73e0fe2f274ccea90a594b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed2da9224a89370a094b0ea63da0ba7669e5730a6726cb566788e09d5c12da683915209007367551d309c2ea8d55a4acd7278d8de1770253871b797bd202132b
|
7
|
+
data.tar.gz: e1696a6d1f6e2d65e9faa74ff394895d2dbaa4408dd9e75f9755b9fc4f91d2fadc2a211eef55144a7260bd3882292dc692c978dfadd502aa16d5c8631f112081
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.843
|
data/lib/v20200910/models.rb
CHANGED
@@ -757,14 +757,18 @@ module TencentCloud
|
|
757
757
|
# @param IssueInfo: 签发信息
|
758
758
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
759
759
|
# @type IssueInfo: :class:`Tencentcloud::Mrs.v20200910.models.IssueInfo`
|
760
|
+
# @param Page: 数据在原PDF文件中的第几页
|
761
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
762
|
+
# @type Page: Integer
|
760
763
|
|
761
|
-
attr_accessor :NeonatalInfo, :MotherInfo, :FatherInfo, :IssueInfo
|
764
|
+
attr_accessor :NeonatalInfo, :MotherInfo, :FatherInfo, :IssueInfo, :Page
|
762
765
|
|
763
|
-
def initialize(neonatalinfo=nil, motherinfo=nil, fatherinfo=nil, issueinfo=nil)
|
766
|
+
def initialize(neonatalinfo=nil, motherinfo=nil, fatherinfo=nil, issueinfo=nil, page=nil)
|
764
767
|
@NeonatalInfo = neonatalinfo
|
765
768
|
@MotherInfo = motherinfo
|
766
769
|
@FatherInfo = fatherinfo
|
767
770
|
@IssueInfo = issueinfo
|
771
|
+
@Page = page
|
768
772
|
end
|
769
773
|
|
770
774
|
def deserialize(params)
|
@@ -784,6 +788,7 @@ module TencentCloud
|
|
784
788
|
@IssueInfo = IssueInfo.new
|
785
789
|
@IssueInfo.deserialize(params['IssueInfo'])
|
786
790
|
end
|
791
|
+
@Page = params['Page']
|
787
792
|
end
|
788
793
|
end
|
789
794
|
|
@@ -1307,16 +1312,20 @@ module TencentCloud
|
|
1307
1312
|
# @param Location: 左右手臂
|
1308
1313
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1309
1314
|
# @type Location: :class:`Tencentcloud::Mrs.v20200910.models.PhysicalBaseItem`
|
1315
|
+
# @param Page: 数据在原PDF文件中的第几页
|
1316
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1317
|
+
# @type Page: Integer
|
1310
1318
|
|
1311
|
-
attr_accessor :Name, :Item, :Result, :Unit, :Times, :Location
|
1319
|
+
attr_accessor :Name, :Item, :Result, :Unit, :Times, :Location, :Page
|
1312
1320
|
|
1313
|
-
def initialize(name=nil, item=nil, result=nil, unit=nil, times=nil, location=nil)
|
1321
|
+
def initialize(name=nil, item=nil, result=nil, unit=nil, times=nil, location=nil, page=nil)
|
1314
1322
|
@Name = name
|
1315
1323
|
@Item = item
|
1316
1324
|
@Result = result
|
1317
1325
|
@Unit = unit
|
1318
1326
|
@Times = times
|
1319
1327
|
@Location = location
|
1328
|
+
@Page = page
|
1320
1329
|
end
|
1321
1330
|
|
1322
1331
|
def deserialize(params)
|
@@ -1341,6 +1350,7 @@ module TencentCloud
|
|
1341
1350
|
@Location = PhysicalBaseItem.new
|
1342
1351
|
@Location.deserialize(params['Location'])
|
1343
1352
|
end
|
1353
|
+
@Page = params['Page']
|
1344
1354
|
end
|
1345
1355
|
end
|
1346
1356
|
|
@@ -1436,13 +1446,17 @@ module TencentCloud
|
|
1436
1446
|
# @param BlockTitle: 检查报告块标题
|
1437
1447
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1438
1448
|
# @type BlockTitle: Array
|
1449
|
+
# @param Page: 数据在原PDF文件中的第几页
|
1450
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1451
|
+
# @type Page: Integer
|
1439
1452
|
|
1440
|
-
attr_accessor :Desc, :Summary, :BlockTitle
|
1453
|
+
attr_accessor :Desc, :Summary, :BlockTitle, :Page
|
1441
1454
|
|
1442
|
-
def initialize(desc=nil, summary=nil, blocktitle=nil)
|
1455
|
+
def initialize(desc=nil, summary=nil, blocktitle=nil, page=nil)
|
1443
1456
|
@Desc = desc
|
1444
1457
|
@Summary = summary
|
1445
1458
|
@BlockTitle = blocktitle
|
1459
|
+
@Page = page
|
1446
1460
|
end
|
1447
1461
|
|
1448
1462
|
def deserialize(params)
|
@@ -1462,6 +1476,7 @@ module TencentCloud
|
|
1462
1476
|
@BlockTitle << blocktitle_tmp
|
1463
1477
|
end
|
1464
1478
|
end
|
1479
|
+
@Page = params['Page']
|
1465
1480
|
end
|
1466
1481
|
end
|
1467
1482
|
|
@@ -2385,12 +2400,16 @@ module TencentCloud
|
|
2385
2400
|
# @param Version: 版本号
|
2386
2401
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2387
2402
|
# @type Version: String
|
2403
|
+
# @param Page: 数据在原PDF文件中的第几页
|
2404
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2405
|
+
# @type Page: Integer
|
2388
2406
|
|
2389
|
-
attr_accessor :CovidItems, :Version
|
2407
|
+
attr_accessor :CovidItems, :Version, :Page
|
2390
2408
|
|
2391
|
-
def initialize(coviditems=nil, version=nil)
|
2409
|
+
def initialize(coviditems=nil, version=nil, page=nil)
|
2392
2410
|
@CovidItems = coviditems
|
2393
2411
|
@Version = version
|
2412
|
+
@Page = page
|
2394
2413
|
end
|
2395
2414
|
|
2396
2415
|
def deserialize(params)
|
@@ -2403,6 +2422,7 @@ module TencentCloud
|
|
2403
2422
|
end
|
2404
2423
|
end
|
2405
2424
|
@Version = params['Version']
|
2425
|
+
@Page = params['Page']
|
2406
2426
|
end
|
2407
2427
|
end
|
2408
2428
|
|
@@ -2686,12 +2706,16 @@ module TencentCloud
|
|
2686
2706
|
# @param Diagnosis: 诊断
|
2687
2707
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2688
2708
|
# @type Diagnosis: Array
|
2709
|
+
# @param Page: 数据在原PDF文件中的第几页
|
2710
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2711
|
+
# @type Page: Integer
|
2689
2712
|
|
2690
|
-
attr_accessor :Advice, :Diagnosis
|
2713
|
+
attr_accessor :Advice, :Diagnosis, :Page
|
2691
2714
|
|
2692
|
-
def initialize(advice=nil, diagnosis=nil)
|
2715
|
+
def initialize(advice=nil, diagnosis=nil, page=nil)
|
2693
2716
|
@Advice = advice
|
2694
2717
|
@Diagnosis = diagnosis
|
2718
|
+
@Page = page
|
2695
2719
|
end
|
2696
2720
|
|
2697
2721
|
def deserialize(params)
|
@@ -2707,6 +2731,7 @@ module TencentCloud
|
|
2707
2731
|
@Diagnosis << diagcertitem_tmp
|
2708
2732
|
end
|
2709
2733
|
end
|
2734
|
+
@Page = params['Page']
|
2710
2735
|
end
|
2711
2736
|
end
|
2712
2737
|
|
@@ -2867,15 +2892,19 @@ module TencentCloud
|
|
2867
2892
|
# @param ParagraphBlock: 文本段落
|
2868
2893
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2869
2894
|
# @type ParagraphBlock: :class:`Tencentcloud::Mrs.v20200910.models.ParagraphBlock`
|
2895
|
+
# @param Page: 数据在原PDF文件中的第几页
|
2896
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2897
|
+
# @type Page: Integer
|
2870
2898
|
|
2871
|
-
attr_accessor :DiseaseHistory, :PersonalHistory, :DrugHistory, :TreatmentRecord, :ParagraphBlock
|
2899
|
+
attr_accessor :DiseaseHistory, :PersonalHistory, :DrugHistory, :TreatmentRecord, :ParagraphBlock, :Page
|
2872
2900
|
|
2873
|
-
def initialize(diseasehistory=nil, personalhistory=nil, drughistory=nil, treatmentrecord=nil, paragraphblock=nil)
|
2901
|
+
def initialize(diseasehistory=nil, personalhistory=nil, drughistory=nil, treatmentrecord=nil, paragraphblock=nil, page=nil)
|
2874
2902
|
@DiseaseHistory = diseasehistory
|
2875
2903
|
@PersonalHistory = personalhistory
|
2876
2904
|
@DrugHistory = drughistory
|
2877
2905
|
@TreatmentRecord = treatmentrecord
|
2878
2906
|
@ParagraphBlock = paragraphblock
|
2907
|
+
@Page = page
|
2879
2908
|
end
|
2880
2909
|
|
2881
2910
|
def deserialize(params)
|
@@ -2899,6 +2928,7 @@ module TencentCloud
|
|
2899
2928
|
@ParagraphBlock = ParagraphBlock.new
|
2900
2929
|
@ParagraphBlock.deserialize(params['ParagraphBlock'])
|
2901
2930
|
end
|
2931
|
+
@Page = params['Page']
|
2902
2932
|
end
|
2903
2933
|
end
|
2904
2934
|
|
@@ -3451,12 +3481,16 @@ module TencentCloud
|
|
3451
3481
|
# @param EcgDiagnosis: 心电图诊断
|
3452
3482
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3453
3483
|
# @type EcgDiagnosis: :class:`Tencentcloud::Mrs.v20200910.models.EcgDiagnosis`
|
3484
|
+
# @param Page: 数据在原PDF文件中的第几页
|
3485
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3486
|
+
# @type Page: Integer
|
3454
3487
|
|
3455
|
-
attr_accessor :EcgDescription, :EcgDiagnosis
|
3488
|
+
attr_accessor :EcgDescription, :EcgDiagnosis, :Page
|
3456
3489
|
|
3457
|
-
def initialize(ecgdescription=nil, ecgdiagnosis=nil)
|
3490
|
+
def initialize(ecgdescription=nil, ecgdiagnosis=nil, page=nil)
|
3458
3491
|
@EcgDescription = ecgdescription
|
3459
3492
|
@EcgDiagnosis = ecgdiagnosis
|
3493
|
+
@Page = page
|
3460
3494
|
end
|
3461
3495
|
|
3462
3496
|
def deserialize(params)
|
@@ -3468,6 +3502,7 @@ module TencentCloud
|
|
3468
3502
|
@EcgDiagnosis = EcgDiagnosis.new
|
3469
3503
|
@EcgDiagnosis.deserialize(params['EcgDiagnosis'])
|
3470
3504
|
end
|
3505
|
+
@Page = params['Page']
|
3471
3506
|
end
|
3472
3507
|
end
|
3473
3508
|
|
@@ -3482,13 +3517,17 @@ module TencentCloud
|
|
3482
3517
|
# @param Summary: 结论
|
3483
3518
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3484
3519
|
# @type Summary: :class:`Tencentcloud::Mrs.v20200910.models.Summary`
|
3520
|
+
# @param Page: 数据在原PDF文件中的第几页
|
3521
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3522
|
+
# @type Page: Integer
|
3485
3523
|
|
3486
|
-
attr_accessor :BiopsyPart, :Desc, :Summary
|
3524
|
+
attr_accessor :BiopsyPart, :Desc, :Summary, :Page
|
3487
3525
|
|
3488
|
-
def initialize(biopsypart=nil, desc=nil, summary=nil)
|
3526
|
+
def initialize(biopsypart=nil, desc=nil, summary=nil, page=nil)
|
3489
3527
|
@BiopsyPart = biopsypart
|
3490
3528
|
@Desc = desc
|
3491
3529
|
@Summary = summary
|
3530
|
+
@Page = page
|
3492
3531
|
end
|
3493
3532
|
|
3494
3533
|
def deserialize(params)
|
@@ -3504,6 +3543,7 @@ module TencentCloud
|
|
3504
3543
|
@Summary = Summary.new
|
3505
3544
|
@Summary.deserialize(params['Summary'])
|
3506
3545
|
end
|
3546
|
+
@Page = params['Page']
|
3507
3547
|
end
|
3508
3548
|
end
|
3509
3549
|
|
@@ -3743,12 +3783,16 @@ module TencentCloud
|
|
3743
3783
|
# @param Version: 版本号
|
3744
3784
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3745
3785
|
# @type Version: String
|
3786
|
+
# @param Page: 数据在原PDF文件中的第几页
|
3787
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3788
|
+
# @type Page: Integer
|
3746
3789
|
|
3747
|
-
attr_accessor :EyeItems, :Version
|
3790
|
+
attr_accessor :EyeItems, :Version, :Page
|
3748
3791
|
|
3749
|
-
def initialize(eyeitems=nil, version=nil)
|
3792
|
+
def initialize(eyeitems=nil, version=nil, page=nil)
|
3750
3793
|
@EyeItems = eyeitems
|
3751
3794
|
@Version = version
|
3795
|
+
@Page = page
|
3752
3796
|
end
|
3753
3797
|
|
3754
3798
|
def deserialize(params)
|
@@ -3757,6 +3801,7 @@ module TencentCloud
|
|
3757
3801
|
@EyeItems.deserialize(params['EyeItems'])
|
3758
3802
|
end
|
3759
3803
|
@Version = params['Version']
|
3804
|
+
@Page = params['Page']
|
3760
3805
|
end
|
3761
3806
|
end
|
3762
3807
|
|
@@ -4155,15 +4200,19 @@ module TencentCloud
|
|
4155
4200
|
# @param Fp2NdItems: 病案首页第二页
|
4156
4201
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4157
4202
|
# @type Fp2NdItems: Array
|
4203
|
+
# @param Page: 数据在原PDF文件中的第几页
|
4204
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4205
|
+
# @type Page: Integer
|
4158
4206
|
|
4159
|
-
attr_accessor :DischargeDiagnosis, :PathologicalDiagnosis, :ClinicalDiagnosis, :DamagePoi, :Fp2NdItems
|
4207
|
+
attr_accessor :DischargeDiagnosis, :PathologicalDiagnosis, :ClinicalDiagnosis, :DamagePoi, :Fp2NdItems, :Page
|
4160
4208
|
|
4161
|
-
def initialize(dischargediagnosis=nil, pathologicaldiagnosis=nil, clinicaldiagnosis=nil, damagepoi=nil, fp2nditems=nil)
|
4209
|
+
def initialize(dischargediagnosis=nil, pathologicaldiagnosis=nil, clinicaldiagnosis=nil, damagepoi=nil, fp2nditems=nil, page=nil)
|
4162
4210
|
@DischargeDiagnosis = dischargediagnosis
|
4163
4211
|
@PathologicalDiagnosis = pathologicaldiagnosis
|
4164
4212
|
@ClinicalDiagnosis = clinicaldiagnosis
|
4165
4213
|
@DamagePoi = damagepoi
|
4166
4214
|
@Fp2NdItems = fp2nditems
|
4215
|
+
@Page = page
|
4167
4216
|
end
|
4168
4217
|
|
4169
4218
|
def deserialize(params)
|
@@ -4195,6 +4244,7 @@ module TencentCloud
|
|
4195
4244
|
@Fp2NdItems << fp2nditem_tmp
|
4196
4245
|
end
|
4197
4246
|
end
|
4247
|
+
@Page = params['Page']
|
4198
4248
|
end
|
4199
4249
|
end
|
4200
4250
|
|
@@ -5120,13 +5170,16 @@ module TencentCloud
|
|
5120
5170
|
# @param AdmissionDiagnosis: 入院诊断
|
5121
5171
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5122
5172
|
# @type AdmissionDiagnosis: String
|
5173
|
+
# @param Page: 数据在原PDF文件中的第几页
|
5174
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5175
|
+
# @type Page: Integer
|
5123
5176
|
|
5124
|
-
attr_accessor :AdmissionTime, :DischargeTime, :AdmissionDays, :AdmissionDignosis, :AdmissionCondition, :DiagnosisTreatment, :DischargeDiagnosis, :DischargeInstruction, :AdmissionDiagnosis
|
5177
|
+
attr_accessor :AdmissionTime, :DischargeTime, :AdmissionDays, :AdmissionDignosis, :AdmissionCondition, :DiagnosisTreatment, :DischargeDiagnosis, :DischargeInstruction, :AdmissionDiagnosis, :Page
|
5125
5178
|
extend Gem::Deprecate
|
5126
|
-
deprecate :AdmissionDignosis, :none, 2024,
|
5127
|
-
deprecate :AdmissionDignosis=, :none, 2024,
|
5179
|
+
deprecate :AdmissionDignosis, :none, 2024, 6
|
5180
|
+
deprecate :AdmissionDignosis=, :none, 2024, 6
|
5128
5181
|
|
5129
|
-
def initialize(admissiontime=nil, dischargetime=nil, admissiondays=nil, admissiondignosis=nil, admissioncondition=nil, diagnosistreatment=nil, dischargediagnosis=nil, dischargeinstruction=nil, admissiondiagnosis=nil)
|
5182
|
+
def initialize(admissiontime=nil, dischargetime=nil, admissiondays=nil, admissiondignosis=nil, admissioncondition=nil, diagnosistreatment=nil, dischargediagnosis=nil, dischargeinstruction=nil, admissiondiagnosis=nil, page=nil)
|
5130
5183
|
@AdmissionTime = admissiontime
|
5131
5184
|
@DischargeTime = dischargetime
|
5132
5185
|
@AdmissionDays = admissiondays
|
@@ -5136,6 +5189,7 @@ module TencentCloud
|
|
5136
5189
|
@DischargeDiagnosis = dischargediagnosis
|
5137
5190
|
@DischargeInstruction = dischargeinstruction
|
5138
5191
|
@AdmissionDiagnosis = admissiondiagnosis
|
5192
|
+
@Page = page
|
5139
5193
|
end
|
5140
5194
|
|
5141
5195
|
def deserialize(params)
|
@@ -5148,6 +5202,7 @@ module TencentCloud
|
|
5148
5202
|
@DischargeDiagnosis = params['DischargeDiagnosis']
|
5149
5203
|
@DischargeInstruction = params['DischargeInstruction']
|
5150
5204
|
@AdmissionDiagnosis = params['AdmissionDiagnosis']
|
5205
|
+
@Page = params['Page']
|
5151
5206
|
end
|
5152
5207
|
end
|
5153
5208
|
|
@@ -5661,12 +5716,16 @@ module TencentCloud
|
|
5661
5716
|
# @param BlockTitle: 检验报告块标题
|
5662
5717
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5663
5718
|
# @type BlockTitle: Array
|
5719
|
+
# @param Page: 数据在原PDF文件中的第几页
|
5720
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5721
|
+
# @type Page: Integer
|
5664
5722
|
|
5665
|
-
attr_accessor :Indicators, :BlockTitle
|
5723
|
+
attr_accessor :Indicators, :BlockTitle, :Page
|
5666
5724
|
|
5667
|
-
def initialize(indicators=nil, blocktitle=nil)
|
5725
|
+
def initialize(indicators=nil, blocktitle=nil, page=nil)
|
5668
5726
|
@Indicators = indicators
|
5669
5727
|
@BlockTitle = blocktitle
|
5728
|
+
@Page = page
|
5670
5729
|
end
|
5671
5730
|
|
5672
5731
|
def deserialize(params)
|
@@ -5686,6 +5745,7 @@ module TencentCloud
|
|
5686
5745
|
@BlockTitle << blocktitle_tmp
|
5687
5746
|
end
|
5688
5747
|
end
|
5748
|
+
@Page = params['Page']
|
5689
5749
|
end
|
5690
5750
|
end
|
5691
5751
|
|
@@ -5868,16 +5928,20 @@ module TencentCloud
|
|
5868
5928
|
# @param TableIndicators: 检验报告V3结论
|
5869
5929
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5870
5930
|
# @type TableIndicators: Array
|
5931
|
+
# @param Page: 数据在原PDF文件中的第几页
|
5932
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5933
|
+
# @type Page: Integer
|
5871
5934
|
|
5872
|
-
attr_accessor :TableIndictors, :Version, :TableIndicators
|
5935
|
+
attr_accessor :TableIndictors, :Version, :TableIndicators, :Page
|
5873
5936
|
extend Gem::Deprecate
|
5874
|
-
deprecate :TableIndictors, :none, 2024,
|
5875
|
-
deprecate :TableIndictors=, :none, 2024,
|
5937
|
+
deprecate :TableIndictors, :none, 2024, 6
|
5938
|
+
deprecate :TableIndictors=, :none, 2024, 6
|
5876
5939
|
|
5877
|
-
def initialize(tableindictors=nil, version=nil, tableindicators=nil)
|
5940
|
+
def initialize(tableindictors=nil, version=nil, tableindicators=nil, page=nil)
|
5878
5941
|
@TableIndictors = tableindictors
|
5879
5942
|
@Version = version
|
5880
5943
|
@TableIndicators = tableindicators
|
5944
|
+
@Page = page
|
5881
5945
|
end
|
5882
5946
|
|
5883
5947
|
def deserialize(params)
|
@@ -5898,6 +5962,7 @@ module TencentCloud
|
|
5898
5962
|
@TableIndicators << tableindicators_tmp
|
5899
5963
|
end
|
5900
5964
|
end
|
5965
|
+
@Page = params['Page']
|
5901
5966
|
end
|
5902
5967
|
end
|
5903
5968
|
|
@@ -6613,13 +6678,17 @@ module TencentCloud
|
|
6613
6678
|
# @param Result: 结果
|
6614
6679
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6615
6680
|
# @type Result: :class:`Tencentcloud::Mrs.v20200910.models.PhysicalBaseItem`
|
6681
|
+
# @param Page: 数据在原PDF文件中的第几页
|
6682
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6683
|
+
# @type Page: Integer
|
6616
6684
|
|
6617
|
-
attr_accessor :Name, :Item, :Result
|
6685
|
+
attr_accessor :Name, :Item, :Result, :Page
|
6618
6686
|
|
6619
|
-
def initialize(name=nil, item=nil, result=nil)
|
6687
|
+
def initialize(name=nil, item=nil, result=nil, page=nil)
|
6620
6688
|
@Name = name
|
6621
6689
|
@Item = item
|
6622
6690
|
@Result = result
|
6691
|
+
@Page = page
|
6623
6692
|
end
|
6624
6693
|
|
6625
6694
|
def deserialize(params)
|
@@ -6632,6 +6701,7 @@ module TencentCloud
|
|
6632
6701
|
@Result = PhysicalBaseItem.new
|
6633
6702
|
@Result.deserialize(params['Result'])
|
6634
6703
|
end
|
6704
|
+
@Page = params['Page']
|
6635
6705
|
end
|
6636
6706
|
end
|
6637
6707
|
|
@@ -6892,13 +6962,17 @@ module TencentCloud
|
|
6892
6962
|
# @param OcrText: 报告原文
|
6893
6963
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6894
6964
|
# @type OcrText: String
|
6965
|
+
# @param Page: 数据在原PDF文件中的第几页
|
6966
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6967
|
+
# @type Page: Integer
|
6895
6968
|
|
6896
|
-
attr_accessor :Desc, :Summary, :OcrText
|
6969
|
+
attr_accessor :Desc, :Summary, :OcrText, :Page
|
6897
6970
|
|
6898
|
-
def initialize(desc=nil, summary=nil, ocrtext=nil)
|
6971
|
+
def initialize(desc=nil, summary=nil, ocrtext=nil, page=nil)
|
6899
6972
|
@Desc = desc
|
6900
6973
|
@Summary = summary
|
6901
6974
|
@OcrText = ocrtext
|
6975
|
+
@Page = page
|
6902
6976
|
end
|
6903
6977
|
|
6904
6978
|
def deserialize(params)
|
@@ -6911,6 +6985,7 @@ module TencentCloud
|
|
6911
6985
|
@Summary.deserialize(params['Summary'])
|
6912
6986
|
end
|
6913
6987
|
@OcrText = params['OcrText']
|
6988
|
+
@Page = params['Page']
|
6914
6989
|
end
|
6915
6990
|
end
|
6916
6991
|
|
@@ -7045,10 +7120,13 @@ module TencentCloud
|
|
7045
7120
|
# @type MenstrualMedicalHistory: :class:`Tencentcloud::Mrs.v20200910.models.MenstrualMedicalHistory`
|
7046
7121
|
# @param TreatmentRecord: 诊疗记录
|
7047
7122
|
# @type TreatmentRecord: :class:`Tencentcloud::Mrs.v20200910.models.TreatmentRecord`
|
7123
|
+
# @param Page: 数据在原PDF文件中的第几页
|
7124
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7125
|
+
# @type Page: Integer
|
7048
7126
|
|
7049
|
-
attr_accessor :Advice, :Diagnosis, :DiseaseMedicalHistory, :PersonalMedicalHistory, :ObstericalMedicalHistory, :FamilyMedicalHistory, :MenstrualMedicalHistory, :TreatmentRecord
|
7127
|
+
attr_accessor :Advice, :Diagnosis, :DiseaseMedicalHistory, :PersonalMedicalHistory, :ObstericalMedicalHistory, :FamilyMedicalHistory, :MenstrualMedicalHistory, :TreatmentRecord, :Page
|
7050
7128
|
|
7051
|
-
def initialize(advice=nil, diagnosis=nil, diseasemedicalhistory=nil, personalmedicalhistory=nil, obstericalmedicalhistory=nil, familymedicalhistory=nil, menstrualmedicalhistory=nil, treatmentrecord=nil)
|
7129
|
+
def initialize(advice=nil, diagnosis=nil, diseasemedicalhistory=nil, personalmedicalhistory=nil, obstericalmedicalhistory=nil, familymedicalhistory=nil, menstrualmedicalhistory=nil, treatmentrecord=nil, page=nil)
|
7052
7130
|
@Advice = advice
|
7053
7131
|
@Diagnosis = diagnosis
|
7054
7132
|
@DiseaseMedicalHistory = diseasemedicalhistory
|
@@ -7057,6 +7135,7 @@ module TencentCloud
|
|
7057
7135
|
@FamilyMedicalHistory = familymedicalhistory
|
7058
7136
|
@MenstrualMedicalHistory = menstrualmedicalhistory
|
7059
7137
|
@TreatmentRecord = treatmentrecord
|
7138
|
+
@Page = page
|
7060
7139
|
end
|
7061
7140
|
|
7062
7141
|
def deserialize(params)
|
@@ -7096,6 +7175,7 @@ module TencentCloud
|
|
7096
7175
|
@TreatmentRecord = TreatmentRecord.new
|
7097
7176
|
@TreatmentRecord.deserialize(params['TreatmentRecord'])
|
7098
7177
|
end
|
7178
|
+
@Page = params['Page']
|
7099
7179
|
end
|
7100
7180
|
end
|
7101
7181
|
|
@@ -7125,10 +7205,13 @@ module TencentCloud
|
|
7125
7205
|
# @param TreatmentOpinion: 治疗意见
|
7126
7206
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
7127
7207
|
# @type TreatmentOpinion: String
|
7208
|
+
# @param Page: 数据在原PDF文件中的第几页
|
7209
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7210
|
+
# @type Page: Integer
|
7128
7211
|
|
7129
|
-
attr_accessor :DiagnosisTime, :DiagnosisDepartmentName, :DiagnosisDoctorName, :ClinicalDiagnosis, :MainNarration, :PhysicalExamination, :InspectionFindings, :TreatmentOpinion
|
7212
|
+
attr_accessor :DiagnosisTime, :DiagnosisDepartmentName, :DiagnosisDoctorName, :ClinicalDiagnosis, :MainNarration, :PhysicalExamination, :InspectionFindings, :TreatmentOpinion, :Page
|
7130
7213
|
|
7131
|
-
def initialize(diagnosistime=nil, diagnosisdepartmentname=nil, diagnosisdoctorname=nil, clinicaldiagnosis=nil, mainnarration=nil, physicalexamination=nil, inspectionfindings=nil, treatmentopinion=nil)
|
7214
|
+
def initialize(diagnosistime=nil, diagnosisdepartmentname=nil, diagnosisdoctorname=nil, clinicaldiagnosis=nil, mainnarration=nil, physicalexamination=nil, inspectionfindings=nil, treatmentopinion=nil, page=nil)
|
7132
7215
|
@DiagnosisTime = diagnosistime
|
7133
7216
|
@DiagnosisDepartmentName = diagnosisdepartmentname
|
7134
7217
|
@DiagnosisDoctorName = diagnosisdoctorname
|
@@ -7137,6 +7220,7 @@ module TencentCloud
|
|
7137
7220
|
@PhysicalExamination = physicalexamination
|
7138
7221
|
@InspectionFindings = inspectionfindings
|
7139
7222
|
@TreatmentOpinion = treatmentopinion
|
7223
|
+
@Page = page
|
7140
7224
|
end
|
7141
7225
|
|
7142
7226
|
def deserialize(params)
|
@@ -7148,6 +7232,7 @@ module TencentCloud
|
|
7148
7232
|
@PhysicalExamination = params['PhysicalExamination']
|
7149
7233
|
@InspectionFindings = params['InspectionFindings']
|
7150
7234
|
@TreatmentOpinion = params['TreatmentOpinion']
|
7235
|
+
@Page = params['Page']
|
7151
7236
|
end
|
7152
7237
|
end
|
7153
7238
|
|
@@ -8132,8 +8217,8 @@ module TencentCloud
|
|
8132
8217
|
|
8133
8218
|
attr_accessor :Part, :Size, :Envelope, :Edge, :InnerEcho, :Gland, :Shape, :Thickness, :ShapeAttr, :CDFI, :SymDesc, :SizeStatus, :Outline, :Structure, :Density, :Vas, :Cysticwall, :Capsule, :IsthmusThicknese, :InnerEchoDistribution, :Src, :Index, :Transparent, :MriAdc, :MriDwi, :MriT1, :MriT2, :CtHu, :Suvmax, :Metabolism, :RadioactiveUptake, :LymphEnlargement, :ImageFeature, :Duct, :Trend, :Operation, :Coords, :IsthmusThickness
|
8134
8219
|
extend Gem::Deprecate
|
8135
|
-
deprecate :IsthmusThicknese, :none, 2024,
|
8136
|
-
deprecate :IsthmusThicknese=, :none, 2024,
|
8220
|
+
deprecate :IsthmusThicknese, :none, 2024, 6
|
8221
|
+
deprecate :IsthmusThicknese=, :none, 2024, 6
|
8137
8222
|
|
8138
8223
|
def initialize(part=nil, size=nil, envelope=nil, edge=nil, innerecho=nil, gland=nil, shape=nil, thickness=nil, shapeattr=nil, cdfi=nil, symdesc=nil, sizestatus=nil, outline=nil, structure=nil, density=nil, vas=nil, cysticwall=nil, capsule=nil, isthmusthicknese=nil, innerechodistribution=nil, src=nil, index=nil, transparent=nil, mriadc=nil, mridwi=nil, mrit1=nil, mrit2=nil, cthu=nil, suvmax=nil, metabolism=nil, radioactiveuptake=nil, lymphenlargement=nil, imagefeature=nil, duct=nil, trend=nil, operation=nil, coords=nil, isthmusthickness=nil)
|
8139
8224
|
@Part = part
|
@@ -8724,8 +8809,8 @@ module TencentCloud
|
|
8724
8809
|
|
8725
8810
|
attr_accessor :IncisionHealingText, :AuxiliaryExaminationText, :SpecialExamText, :OutpatientDiagnosisText, :AdmissionConditionText, :CheckAndTreatmentProcessText, :SymptomsAndSignsText, :DischargeInstructionsText, :AdmissionDiagnosisText, :SurgeryConditionText, :PathologicalDiagnosisText, :DischargeConditionText, :CheckRecordText, :ChiefComplaintText, :DischargeDiagnosisText, :MainDiseaseHistoryText, :DiseasePresentText, :PersonalHistoryText, :MenstruallHistoryText, :ObstericalHistoryText, :FamilyHistoryText, :AllergyHistoryText, :DiseaseHistoryText, :OtherDiagnosisText, :BodyExaminationText, :SpecialistExaminationText, :TreatmentResultText, :MenstrualHistoryText
|
8726
8811
|
extend Gem::Deprecate
|
8727
|
-
deprecate :MenstruallHistoryText, :none, 2024,
|
8728
|
-
deprecate :MenstruallHistoryText=, :none, 2024,
|
8812
|
+
deprecate :MenstruallHistoryText, :none, 2024, 6
|
8813
|
+
deprecate :MenstruallHistoryText=, :none, 2024, 6
|
8729
8814
|
|
8730
8815
|
def initialize(incisionhealingtext=nil, auxiliaryexaminationtext=nil, specialexamtext=nil, outpatientdiagnosistext=nil, admissionconditiontext=nil, checkandtreatmentprocesstext=nil, symptomsandsignstext=nil, dischargeinstructionstext=nil, admissiondiagnosistext=nil, surgeryconditiontext=nil, pathologicaldiagnosistext=nil, dischargeconditiontext=nil, checkrecordtext=nil, chiefcomplainttext=nil, dischargediagnosistext=nil, maindiseasehistorytext=nil, diseasepresenttext=nil, personalhistorytext=nil, menstruallhistorytext=nil, obstericalhistorytext=nil, familyhistorytext=nil, allergyhistorytext=nil, diseasehistorytext=nil, otherdiagnosistext=nil, bodyexaminationtext=nil, specialistexaminationtext=nil, treatmentresulttext=nil, menstrualhistorytext=nil)
|
8731
8816
|
@IncisionHealingText = incisionhealingtext
|
@@ -9150,10 +9235,13 @@ module TencentCloud
|
|
9150
9235
|
# @param Molecular: 分子病理
|
9151
9236
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9152
9237
|
# @type Molecular: Array
|
9238
|
+
# @param Page: 数据在原PDF文件中的第几页
|
9239
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9240
|
+
# @type Page: Integer
|
9153
9241
|
|
9154
|
-
attr_accessor :PathologicalReportType, :Desc, :Summary, :ReportText, :LymphTotal, :LymphNodes, :Ihc, :Clinical, :Precancer, :Malignant, :Benigntumor, :SampleType, :LymphSize, :Molecular
|
9242
|
+
attr_accessor :PathologicalReportType, :Desc, :Summary, :ReportText, :LymphTotal, :LymphNodes, :Ihc, :Clinical, :Precancer, :Malignant, :Benigntumor, :SampleType, :LymphSize, :Molecular, :Page
|
9155
9243
|
|
9156
|
-
def initialize(pathologicalreporttype=nil, desc=nil, summary=nil, reporttext=nil, lymphtotal=nil, lymphnodes=nil, ihc=nil, clinical=nil, precancer=nil, malignant=nil, benigntumor=nil, sampletype=nil, lymphsize=nil, molecular=nil)
|
9244
|
+
def initialize(pathologicalreporttype=nil, desc=nil, summary=nil, reporttext=nil, lymphtotal=nil, lymphnodes=nil, ihc=nil, clinical=nil, precancer=nil, malignant=nil, benigntumor=nil, sampletype=nil, lymphsize=nil, molecular=nil, page=nil)
|
9157
9245
|
@PathologicalReportType = pathologicalreporttype
|
9158
9246
|
@Desc = desc
|
9159
9247
|
@Summary = summary
|
@@ -9168,6 +9256,7 @@ module TencentCloud
|
|
9168
9256
|
@SampleType = sampletype
|
9169
9257
|
@LymphSize = lymphsize
|
9170
9258
|
@Molecular = molecular
|
9259
|
+
@Page = page
|
9171
9260
|
end
|
9172
9261
|
|
9173
9262
|
def deserialize(params)
|
@@ -9244,6 +9333,7 @@ module TencentCloud
|
|
9244
9333
|
@Molecular << molecular_tmp
|
9245
9334
|
end
|
9246
9335
|
end
|
9336
|
+
@Page = params['Page']
|
9247
9337
|
end
|
9248
9338
|
end
|
9249
9339
|
|
@@ -9318,8 +9408,8 @@ module TencentCloud
|
|
9318
9408
|
|
9319
9409
|
attr_accessor :Name, :Sex, :Age, :Phone, :Address, :IdCard, :HealthCardNo, :SocialSecurityCardNo, :Birthday, :Ethnicity, :Married, :Profession, :EducationBackground, :Nationality, :BirthPlace, :MedicalInsuranceType, :AgeNorm, :Nation, :MarriedCode, :ProfessionCode, :MedicalInsuranceTypeCode, :BedNo
|
9320
9410
|
extend Gem::Deprecate
|
9321
|
-
deprecate :Nation, :none, 2024,
|
9322
|
-
deprecate :Nation=, :none, 2024,
|
9411
|
+
deprecate :Nation, :none, 2024, 6
|
9412
|
+
deprecate :Nation=, :none, 2024, 6
|
9323
9413
|
|
9324
9414
|
def initialize(name=nil, sex=nil, age=nil, phone=nil, address=nil, idcard=nil, healthcardno=nil, socialsecuritycardno=nil, birthday=nil, ethnicity=nil, married=nil, profession=nil, educationbackground=nil, nationality=nil, birthplace=nil, medicalinsurancetype=nil, agenorm=nil, nation=nil, marriedcode=nil, professioncode=nil, medicalinsurancetypecode=nil, bedno=nil)
|
9325
9415
|
@Name = name
|
@@ -9698,11 +9788,15 @@ module TencentCloud
|
|
9698
9788
|
# @param MedicineList: 药品列表
|
9699
9789
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
9700
9790
|
# @type MedicineList: Array
|
9791
|
+
# @param Page: 数据在原PDF文件中的第几页
|
9792
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9793
|
+
# @type Page: Integer
|
9701
9794
|
|
9702
|
-
attr_accessor :MedicineList
|
9795
|
+
attr_accessor :MedicineList, :Page
|
9703
9796
|
|
9704
|
-
def initialize(medicinelist=nil)
|
9797
|
+
def initialize(medicinelist=nil, page=nil)
|
9705
9798
|
@MedicineList = medicinelist
|
9799
|
+
@Page = page
|
9706
9800
|
end
|
9707
9801
|
|
9708
9802
|
def deserialize(params)
|
@@ -9714,6 +9808,7 @@ module TencentCloud
|
|
9714
9808
|
@MedicineList << medicine_tmp
|
9715
9809
|
end
|
9716
9810
|
end
|
9811
|
+
@Page = params['Page']
|
9717
9812
|
end
|
9718
9813
|
end
|
9719
9814
|
|
@@ -10125,12 +10220,16 @@ module TencentCloud
|
|
10125
10220
|
# @param Items: 结论详情
|
10126
10221
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10127
10222
|
# @type Items: Array
|
10223
|
+
# @param Page: 数据在原PDF文件中的第几页
|
10224
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10225
|
+
# @type Page: Integer
|
10128
10226
|
|
10129
|
-
attr_accessor :Text, :Items
|
10227
|
+
attr_accessor :Text, :Items, :Page
|
10130
10228
|
|
10131
|
-
def initialize(text=nil, items=nil)
|
10229
|
+
def initialize(text=nil, items=nil, page=nil)
|
10132
10230
|
@Text = text
|
10133
10231
|
@Items = items
|
10232
|
+
@Page = page
|
10134
10233
|
end
|
10135
10234
|
|
10136
10235
|
def deserialize(params)
|
@@ -10146,6 +10245,7 @@ module TencentCloud
|
|
10146
10245
|
@Items << baseinfo_tmp
|
10147
10246
|
end
|
10148
10247
|
end
|
10248
|
+
@Page = params['Page']
|
10149
10249
|
end
|
10150
10250
|
end
|
10151
10251
|
|
@@ -10458,12 +10558,16 @@ module TencentCloud
|
|
10458
10558
|
# @param OtherInfo: 其他信息
|
10459
10559
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10460
10560
|
# @type OtherInfo: :class:`Tencentcloud::Mrs.v20200910.models.OtherInfo`
|
10561
|
+
# @param Page: 数据在原PDF文件中的第几页
|
10562
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10563
|
+
# @type Page: Integer
|
10461
10564
|
|
10462
|
-
attr_accessor :SurgeryHistory, :OtherInfo
|
10565
|
+
attr_accessor :SurgeryHistory, :OtherInfo, :Page
|
10463
10566
|
|
10464
|
-
def initialize(surgeryhistory=nil, otherinfo=nil)
|
10567
|
+
def initialize(surgeryhistory=nil, otherinfo=nil, page=nil)
|
10465
10568
|
@SurgeryHistory = surgeryhistory
|
10466
10569
|
@OtherInfo = otherinfo
|
10570
|
+
@Page = page
|
10467
10571
|
end
|
10468
10572
|
|
10469
10573
|
def deserialize(params)
|
@@ -10475,6 +10579,7 @@ module TencentCloud
|
|
10475
10579
|
@OtherInfo = OtherInfo.new
|
10476
10580
|
@OtherInfo.deserialize(params['OtherInfo'])
|
10477
10581
|
end
|
10582
|
+
@Page = params['Page']
|
10478
10583
|
end
|
10479
10584
|
end
|
10480
10585
|
|
@@ -11506,11 +11611,15 @@ module TencentCloud
|
|
11506
11611
|
# @param TextTypeList: 文本类型列表
|
11507
11612
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11508
11613
|
# @type TextTypeList: Array
|
11614
|
+
# @param Page: 数据在原PDF文件中的第几页
|
11615
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11616
|
+
# @type Page: Integer
|
11509
11617
|
|
11510
|
-
attr_accessor :TextTypeList
|
11618
|
+
attr_accessor :TextTypeList, :Page
|
11511
11619
|
|
11512
|
-
def initialize(texttypelist=nil)
|
11620
|
+
def initialize(texttypelist=nil, page=nil)
|
11513
11621
|
@TextTypeList = texttypelist
|
11622
|
+
@Page = page
|
11514
11623
|
end
|
11515
11624
|
|
11516
11625
|
def deserialize(params)
|
@@ -11522,6 +11631,7 @@ module TencentCloud
|
|
11522
11631
|
@TextTypeList << texttype_tmp
|
11523
11632
|
end
|
11524
11633
|
end
|
11634
|
+
@Page = params['Page']
|
11525
11635
|
end
|
11526
11636
|
end
|
11527
11637
|
|
@@ -11607,11 +11717,15 @@ module TencentCloud
|
|
11607
11717
|
# @param Timeline: 时间轴
|
11608
11718
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
11609
11719
|
# @type Timeline: Array
|
11720
|
+
# @param Page: 数据在原PDF文件中的第几页
|
11721
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11722
|
+
# @type Page: Integer
|
11610
11723
|
|
11611
|
-
attr_accessor :Timeline
|
11724
|
+
attr_accessor :Timeline, :Page
|
11612
11725
|
|
11613
|
-
def initialize(timeline=nil)
|
11726
|
+
def initialize(timeline=nil, page=nil)
|
11614
11727
|
@Timeline = timeline
|
11728
|
+
@Page = page
|
11615
11729
|
end
|
11616
11730
|
|
11617
11731
|
def deserialize(params)
|
@@ -11623,6 +11737,7 @@ module TencentCloud
|
|
11623
11737
|
@Timeline << timelineevent_tmp
|
11624
11738
|
end
|
11625
11739
|
end
|
11740
|
+
@Page = params['Page']
|
11626
11741
|
end
|
11627
11742
|
end
|
11628
11743
|
|
@@ -11747,8 +11862,8 @@ module TencentCloud
|
|
11747
11862
|
|
11748
11863
|
attr_accessor :DmissionCondition, :ChiefComplaint, :DiseasePresent, :SymptomsAndSigns, :AuxiliaryExamination, :BodyExamination, :SpecialistExamination, :MentalExamination, :CheckRecord, :InspectResult, :IncisionHealing, :TreatmentSuggestion, :FollowUpRequirements, :CheckAndTreatmentProcess, :SurgeryCondition, :ConditionChanges, :DischargeCondition, :PTNM, :PTNMM, :PTNMN, :PTNMT, :ECOG, :NRS, :KPS, :DeathDate, :RelapseDate, :ObservationDays, :AdmissionCondition
|
11749
11864
|
extend Gem::Deprecate
|
11750
|
-
deprecate :DmissionCondition, :none, 2024,
|
11751
|
-
deprecate :DmissionCondition=, :none, 2024,
|
11865
|
+
deprecate :DmissionCondition, :none, 2024, 6
|
11866
|
+
deprecate :DmissionCondition=, :none, 2024, 6
|
11752
11867
|
|
11753
11868
|
def initialize(dmissioncondition=nil, chiefcomplaint=nil, diseasepresent=nil, symptomsandsigns=nil, auxiliaryexamination=nil, bodyexamination=nil, specialistexamination=nil, mentalexamination=nil, checkrecord=nil, inspectresult=nil, incisionhealing=nil, treatmentsuggestion=nil, followuprequirements=nil, checkandtreatmentprocess=nil, surgerycondition=nil, conditionchanges=nil, dischargecondition=nil, ptnm=nil, ptnmm=nil, ptnmn=nil, ptnmt=nil, ecog=nil, nrs=nil, kps=nil, deathdate=nil, relapsedate=nil, observationdays=nil, admissioncondition=nil)
|
11754
11869
|
@DmissionCondition = dmissioncondition
|
@@ -12331,8 +12446,8 @@ module TencentCloud
|
|
12331
12446
|
|
12332
12447
|
attr_accessor :Type, :Part, :Size, :Multiple, :AspectRatio, :Edge, :InnerEcho, :RearEcho, :Elastic, :Shape, :ShapeAttr, :SkinMedulla, :Trend, :Calcification, :Envelope, :Enhancement, :LymphEnlargement, :LymphDoor, :Activity, :Operation, :CDFI, :Index, :SizeStatus, :InnerEchoDistribution, :InnerEchoType, :Outline, :Structure, :Density, :Vas, :Cysticwall, :Capsule, :IsthmusThicknese, :Src, :Transparent, :MriAdc, :MriDwi, :MriT1, :MriT2, :CtHu, :Suvmax, :Metabolism, :RadioactiveUptake, :SymDesc, :ImageFeature, :Coords, :IsthmusThickness
|
12333
12448
|
extend Gem::Deprecate
|
12334
|
-
deprecate :IsthmusThicknese, :none, 2024,
|
12335
|
-
deprecate :IsthmusThicknese=, :none, 2024,
|
12449
|
+
deprecate :IsthmusThicknese, :none, 2024, 6
|
12450
|
+
deprecate :IsthmusThicknese=, :none, 2024, 6
|
12336
12451
|
|
12337
12452
|
def initialize(type=nil, part=nil, size=nil, multiple=nil, aspectratio=nil, edge=nil, innerecho=nil, rearecho=nil, elastic=nil, shape=nil, shapeattr=nil, skinmedulla=nil, trend=nil, calcification=nil, envelope=nil, enhancement=nil, lymphenlargement=nil, lymphdoor=nil, activity=nil, operation=nil, cdfi=nil, index=nil, sizestatus=nil, innerechodistribution=nil, innerechotype=nil, outline=nil, structure=nil, density=nil, vas=nil, cysticwall=nil, capsule=nil, isthmusthicknese=nil, src=nil, transparent=nil, mriadc=nil, mridwi=nil, mrit1=nil, mrit2=nil, cthu=nil, suvmax=nil, metabolism=nil, radioactiveuptake=nil, symdesc=nil, imagefeature=nil, coords=nil, isthmusthickness=nil)
|
12338
12453
|
@Type = type
|
@@ -12828,11 +12943,15 @@ module TencentCloud
|
|
12828
12943
|
# @param VaccineList: 免疫接种列表
|
12829
12944
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12830
12945
|
# @type VaccineList: Array
|
12946
|
+
# @param Page: 数据在原PDF文件中的第几页
|
12947
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12948
|
+
# @type Page: Integer
|
12831
12949
|
|
12832
|
-
attr_accessor :VaccineList
|
12950
|
+
attr_accessor :VaccineList, :Page
|
12833
12951
|
|
12834
|
-
def initialize(vaccinelist=nil)
|
12952
|
+
def initialize(vaccinelist=nil, page=nil)
|
12835
12953
|
@VaccineList = vaccinelist
|
12954
|
+
@Page = page
|
12836
12955
|
end
|
12837
12956
|
|
12838
12957
|
def deserialize(params)
|
@@ -12844,6 +12963,7 @@ module TencentCloud
|
|
12844
12963
|
@VaccineList << vaccination_tmp
|
12845
12964
|
end
|
12846
12965
|
end
|
12966
|
+
@Page = params['Page']
|
12847
12967
|
end
|
12848
12968
|
end
|
12849
12969
|
|
@@ -12915,14 +13035,18 @@ module TencentCloud
|
|
12915
13035
|
# @param Unit: 单位
|
12916
13036
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12917
13037
|
# @type Unit: :class:`Tencentcloud::Mrs.v20200910.models.PhysicalBaseItem`
|
13038
|
+
# @param Page: 数据在原PDF文件中的第几页
|
13039
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
13040
|
+
# @type Page: Integer
|
12918
13041
|
|
12919
|
-
attr_accessor :Name, :Item, :Result, :Unit
|
13042
|
+
attr_accessor :Name, :Item, :Result, :Unit, :Page
|
12920
13043
|
|
12921
|
-
def initialize(name=nil, item=nil, result=nil, unit=nil)
|
13044
|
+
def initialize(name=nil, item=nil, result=nil, unit=nil, page=nil)
|
12922
13045
|
@Name = name
|
12923
13046
|
@Item = item
|
12924
13047
|
@Result = result
|
12925
13048
|
@Unit = unit
|
13049
|
+
@Page = page
|
12926
13050
|
end
|
12927
13051
|
|
12928
13052
|
def deserialize(params)
|
@@ -12939,6 +13063,7 @@ module TencentCloud
|
|
12939
13063
|
@Unit = PhysicalBaseItem.new
|
12940
13064
|
@Unit.deserialize(params['Unit'])
|
12941
13065
|
end
|
13066
|
+
@Page = params['Page']
|
12942
13067
|
end
|
12943
13068
|
end
|
12944
13069
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.843
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|