Class: TencentCloud::Mrs::V20200910::LymphTotal
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mrs::V20200910::LymphTotal
- Defined in:
- lib/v20200910/models.rb
Overview
淋巴结总计转移信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, transfernum = nil, total = nil, src = nil, index = nil, coords = nil) ⇒ LymphTotal
constructor
A new instance of LymphTotal.
Constructor Details
#initialize(name = nil, transfernum = nil, total = nil, src = nil, index = nil, coords = nil) ⇒ LymphTotal
Returns a new instance of LymphTotal.
6280 6281 6282 6283 6284 6285 6286 6287 |
# File 'lib/v20200910/models.rb', line 6280 def initialize(name=nil, transfernum=nil, total=nil, src=nil, index=nil, coords=nil) @Name = name @TransferNum = transfernum @Total = total @Src = src @Index = index @Coords = coords end |
Instance Attribute Details
#Coords ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def Coords @Coords end |
#Index ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def Index @Index end |
#Name ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def Name @Name end |
#Src ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def Src @Src end |
#Total ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def Total @Total end |
#TransferNum ⇒ Object
6278 6279 6280 |
# File 'lib/v20200910/models.rb', line 6278 def TransferNum @TransferNum end |
Instance Method Details
#deserialize(params) ⇒ Object
6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 |
# File 'lib/v20200910/models.rb', line 6289 def deserialize(params) @Name = params['Name'] @TransferNum = params['TransferNum'] @Total = params['Total'] @Src = params['Src'] @Index = params['Index'] unless params['Coords'].nil? @Coords = [] params['Coords'].each do |i| coord_tmp = Coord.new coord_tmp.deserialize(i) @Coords << coord_tmp end end end |