Class: TencentCloud::Mrs::V20200910::Fp2NdItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mrs::V20200910::Fp2NdItem
- Defined in:
- lib/v20200910/models.rb
Overview
病案首页第二页
Instance Attribute Summary collapse
- #AnesthesiaMethod ⇒ Object
- #Code ⇒ Object
- #EndTime ⇒ Object
- #IncisionHealingGrade ⇒ Object
- #Level ⇒ Object
- #Name ⇒ Object
- #StartTime ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(code = nil, name = nil, starttime = nil, endtime = nil, level = nil, type = nil, incisionhealinggrade = nil, anesthesiamethod = nil) ⇒ Fp2NdItem
constructor
A new instance of Fp2NdItem.
Constructor Details
#initialize(code = nil, name = nil, starttime = nil, endtime = nil, level = nil, type = nil, incisionhealinggrade = nil, anesthesiamethod = nil) ⇒ Fp2NdItem
Returns a new instance of Fp2NdItem.
3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 |
# File 'lib/v20200910/models.rb', line 3876 def initialize(code=nil, name=nil, starttime=nil, endtime=nil, level=nil, type=nil, incisionhealinggrade=nil, anesthesiamethod=nil) @Code = code @Name = name @StartTime = starttime @EndTime = endtime @Level = level @Type = type @IncisionHealingGrade = incisionhealinggrade @AnesthesiaMethod = anesthesiamethod end |
Instance Attribute Details
#AnesthesiaMethod ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def AnesthesiaMethod @AnesthesiaMethod end |
#Code ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def Code @Code end |
#EndTime ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def EndTime @EndTime end |
#IncisionHealingGrade ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def IncisionHealingGrade @IncisionHealingGrade end |
#Level ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def Level @Level end |
#Name ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def Name @Name end |
#StartTime ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def StartTime @StartTime end |
#Type ⇒ Object
3874 3875 3876 |
# File 'lib/v20200910/models.rb', line 3874 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 |
# File 'lib/v20200910/models.rb', line 3887 def deserialize(params) unless params['Code'].nil? @Code = BaseItem.new @Code.deserialize(params['Code']) end unless params['Name'].nil? @Name = BaseItem.new @Name.deserialize(params['Name']) end unless params['StartTime'].nil? @StartTime = BaseItem.new @StartTime.deserialize(params['StartTime']) end unless params['EndTime'].nil? @EndTime = BaseItem.new @EndTime.deserialize(params['EndTime']) end unless params['Level'].nil? @Level = BaseItem.new @Level.deserialize(params['Level']) end unless params['Type'].nil? @Type = BaseItem.new @Type.deserialize(params['Type']) end unless params['IncisionHealingGrade'].nil? @IncisionHealingGrade = BaseItem.new @IncisionHealingGrade.deserialize(params['IncisionHealingGrade']) end unless params['AnesthesiaMethod'].nil? @AnesthesiaMethod = BaseItem.new @AnesthesiaMethod.deserialize(params['AnesthesiaMethod']) end end |