Class: TencentCloud::Mrs::V20200910::LymphNode

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20200910/models.rb

Overview

单淋巴结转移信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, index = nil, part = nil, src = nil, total = nil, transfernum = nil, sizes = nil, coords = nil) ⇒ LymphNode

Returns a new instance of LymphNode.



6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
# File 'lib/v20200910/models.rb', line 6203

def initialize(name=nil, index=nil, part=nil, src=nil, total=nil, transfernum=nil, sizes=nil, coords=nil)
  @Name = name
  @Index = index
  @Part = part
  @Src = src
  @Total = total
  @TransferNum = transfernum
  @Sizes = sizes
  @Coords = coords
end

Instance Attribute Details

#CoordsObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Coords
  @Coords
end

#IndexObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Index
  @Index
end

#NameObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Name
  @Name
end

#PartObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Part
  @Part
end

#SizesObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Sizes
  @Sizes
end

#SrcObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Src
  @Src
end

#TotalObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def Total
  @Total
end

#TransferNumObject

Parameters:

  • Name:

    项目名称

  • Index:

    索引

  • Part:

    部位

  • Src:

    原文

  • Total:

    总数量

  • TransferNum:

    转移数量

  • Sizes:

    淋巴结大小

  • Coords:

    原文对应坐标



6201
6202
6203
# File 'lib/v20200910/models.rb', line 6201

def TransferNum
  @TransferNum
end

Instance Method Details

#deserialize(params) ⇒ Object



6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
# File 'lib/v20200910/models.rb', line 6214

def deserialize(params)
  @Name = params['Name']
  @Index = params['Index']
  unless params['Part'].nil?
    @Part = Part.new
    @Part.deserialize(params['Part'])
  end
  @Src = params['Src']
  @Total = params['Total']
  @TransferNum = params['TransferNum']
  @Sizes = params['Sizes']
  unless params['Coords'].nil?
    @Coords = []
    params['Coords'].each do |i|
      coord_tmp = Coord.new
      coord_tmp.deserialize(i)
      @Coords << coord_tmp
    end
  end
end