Class: TencentCloud::Mrs::V20200910::InternalMedicineAbdomenKidney
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mrs::V20200910::InternalMedicineAbdomenKidney
- Defined in:
- lib/v20200910/models.rb
Overview
体检报告-内科-腹部-肾脏
Instance Attribute Summary collapse
- #Consistency ⇒ Object
- #Palpation ⇒ Object
- #Percussion ⇒ Object
- #Size ⇒ Object
- #Src ⇒ Object
- #Tenderness ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(src = nil, size = nil, palpation = nil, percussion = nil, tenderness = nil, consistency = nil) ⇒ InternalMedicineAbdomenKidney
constructor
A new instance of InternalMedicineAbdomenKidney.
Constructor Details
#initialize(src = nil, size = nil, palpation = nil, percussion = nil, tenderness = nil, consistency = nil) ⇒ InternalMedicineAbdomenKidney
Returns a new instance of InternalMedicineAbdomenKidney.
5576 5577 5578 5579 5580 5581 5582 5583 |
# File 'lib/v20200910/models.rb', line 5576 def initialize(src=nil, size=nil, palpation=nil, percussion=nil, tenderness=nil, consistency=nil) @Src = src @Size = size @Palpation = palpation @Percussion = percussion @Tenderness = tenderness @Consistency = consistency end |
Instance Attribute Details
#Consistency ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Consistency @Consistency end |
#Palpation ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Palpation @Palpation end |
#Percussion ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Percussion @Percussion end |
#Size ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Size @Size end |
#Src ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Src @Src end |
#Tenderness ⇒ Object
5574 5575 5576 |
# File 'lib/v20200910/models.rb', line 5574 def Tenderness @Tenderness end |
Instance Method Details
#deserialize(params) ⇒ Object
5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 |
# File 'lib/v20200910/models.rb', line 5585 def deserialize(params) unless params['Src'].nil? @Src = KeyValueItem.new @Src.deserialize(params['Src']) end unless params['Size'].nil? @Size = KeyValueItem.new @Size.deserialize(params['Size']) end unless params['Palpation'].nil? @Palpation = KeyValueItem.new @Palpation.deserialize(params['Palpation']) end unless params['Percussion'].nil? @Percussion = KeyValueItem.new @Percussion.deserialize(params['Percussion']) end unless params['Tenderness'].nil? @Tenderness = KeyValueItem.new @Tenderness.deserialize(params['Tenderness']) end unless params['Consistency'].nil? @Consistency = KeyValueItem.new @Consistency.deserialize(params['Consistency']) end end |