Class: TencentCloud::Aca::V20210323::Dict
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Aca::V20210323::Dict
- Defined in:
- lib/v20210323/models.rb
Overview
字典信息
Instance Attribute Summary collapse
- #DeptId ⇒ Object
- #DeptName ⇒ Object
- #DiagCode ⇒ Object
- #DiagName ⇒ Object
- #Disable ⇒ Object
- #FreqCode ⇒ Object
- #FreqName ⇒ Object
- #IcdCode ⇒ Object
- #InHospitalOn ⇒ Object
- #OutpatientOn ⇒ Object
- #Scope ⇒ Object
- #UsageCode ⇒ Object
- #UsageName ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(freqcode = nil, freqname = nil, disable = nil, usagecode = nil, usagename = nil, deptid = nil, deptname = nil, scope = nil, outpatienton = nil, inhospitalon = nil, diagcode = nil, diagname = nil, icdcode = nil) ⇒ Dict
constructor
A new instance of Dict.
Constructor Details
#initialize(freqcode = nil, freqname = nil, disable = nil, usagecode = nil, usagename = nil, deptid = nil, deptname = nil, scope = nil, outpatienton = nil, inhospitalon = nil, diagcode = nil, diagname = nil, icdcode = nil) ⇒ Dict
Returns a new instance of Dict.
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'lib/v20210323/models.rb', line 285 def initialize(freqcode=nil, freqname=nil, disable=nil, usagecode=nil, usagename=nil, deptid=nil, deptname=nil, scope=nil, outpatienton=nil, inhospitalon=nil, diagcode=nil, diagname=nil, icdcode=nil) @FreqCode = freqcode @FreqName = freqname @Disable = disable @UsageCode = usagecode @UsageName = usagename @DeptId = deptid @DeptName = deptname @Scope = scope @OutpatientOn = outpatienton @InHospitalOn = inhospitalon @DiagCode = diagcode @DiagName = diagname @IcdCode = icdcode end |
Instance Attribute Details
#DeptId ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def DeptId @DeptId end |
#DeptName ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def DeptName @DeptName end |
#DiagCode ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def DiagCode @DiagCode end |
#DiagName ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def DiagName @DiagName end |
#Disable ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def Disable @Disable end |
#FreqCode ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def FreqCode @FreqCode end |
#FreqName ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def FreqName @FreqName end |
#IcdCode ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def IcdCode @IcdCode end |
#InHospitalOn ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def InHospitalOn @InHospitalOn end |
#OutpatientOn ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def OutpatientOn @OutpatientOn end |
#Scope ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def Scope @Scope end |
#UsageCode ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def UsageCode @UsageCode end |
#UsageName ⇒ Object
283 284 285 |
# File 'lib/v20210323/models.rb', line 283 def UsageName @UsageName end |
Instance Method Details
#deserialize(params) ⇒ Object
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/v20210323/models.rb', line 301 def deserialize(params) @FreqCode = params['FreqCode'] @FreqName = params['FreqName'] @Disable = params['Disable'] @UsageCode = params['UsageCode'] @UsageName = params['UsageName'] @DeptId = params['DeptId'] @DeptName = params['DeptName'] @Scope = params['Scope'] @OutpatientOn = params['OutpatientOn'] @InHospitalOn = params['InHospitalOn'] @DiagCode = params['DiagCode'] @DiagName = params['DiagName'] @IcdCode = params['IcdCode'] end |