Class: TencentCloud::Mrs::V20200910::EcgItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mrs::V20200910::EcgItem
- Defined in:
- lib/v20200910/models.rb
Overview
心电图指标项
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, value = nil, unit = nil, src = nil) ⇒ EcgItem
constructor
A new instance of EcgItem.
Constructor Details
#initialize(name = nil, value = nil, unit = nil, src = nil) ⇒ EcgItem
Returns a new instance of EcgItem.
3096 3097 3098 3099 3100 3101 |
# File 'lib/v20200910/models.rb', line 3096 def initialize(name=nil, value=nil, unit=nil, src=nil) @Name = name @Value = value @Unit = unit @Src = src end |
Instance Attribute Details
#Name ⇒ Object
3094 3095 3096 |
# File 'lib/v20200910/models.rb', line 3094 def Name @Name end |
#Src ⇒ Object
3094 3095 3096 |
# File 'lib/v20200910/models.rb', line 3094 def Src @Src end |
#Unit ⇒ Object
3094 3095 3096 |
# File 'lib/v20200910/models.rb', line 3094 def Unit @Unit end |
#Value ⇒ Object
3094 3095 3096 |
# File 'lib/v20200910/models.rb', line 3094 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
3103 3104 3105 3106 3107 3108 |
# File 'lib/v20200910/models.rb', line 3103 def deserialize(params) @Name = params['Name'] @Value = params['Value'] @Unit = params['Unit'] @Src = params['Src'] end |