Class: TencentCloud::Mrs::V20200910::HistologyTypeV2

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

Overview

组织学类型

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(infiltration = nil, index = nil, src = nil, type = nil, name = nil, coords = nil) ⇒ HistologyTypeV2

Returns a new instance of HistologyTypeV2.



4628
4629
4630
4631
4632
4633
4634
4635
# File 'lib/v20200910/models.rb', line 4628

def initialize(infiltration=nil, index=nil, src=nil, type=nil, name=nil, coords=nil)
  @Infiltration = infiltration
  @Index = index
  @Src = src
  @Type = type
  @Name = name
  @Coords = coords
end

Instance Attribute Details

#CoordsObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Coords
  @Coords
end

#IndexObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Index
  @Index
end

#InfiltrationObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Infiltration
  @Infiltration
end

#NameObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Name
  @Name
end

#SrcObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Src
  @Src
end

#TypeObject

Parameters:

  • Infiltration:

    浸润

  • Index:

    索引

  • Src:

    原文

  • Type:

    归一化后的组织学类型

  • Name:

    项目名称

  • Coords:

    原文对应坐标



4626
4627
4628
# File 'lib/v20200910/models.rb', line 4626

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
# File 'lib/v20200910/models.rb', line 4637

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