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.
3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 |
# File 'lib/v20200910/models.rb', line 3861 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
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def AnesthesiaMethod @AnesthesiaMethod end |
#Code ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def Code @Code end |
#EndTime ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def EndTime @EndTime end |
#IncisionHealingGrade ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def IncisionHealingGrade @IncisionHealingGrade end |
#Level ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def Level @Level end |
#Name ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def Name @Name end |
#StartTime ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def StartTime @StartTime end |
#Type ⇒ Object
3859 3860 3861 |
# File 'lib/v20200910/models.rb', line 3859 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 |
# File 'lib/v20200910/models.rb', line 3872 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 |