class TencentCloud::Mrs::V20200910::LymphTotal

淋巴结总计转移信息

def deserialize(params)

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

def initialize(name=nil, transfernum=nil, total=nil, src=nil, index=nil, coords=nil)

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