Class: TencentCloud::Ocr::V20181119::TableCell
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::TableCell
- Defined in:
- lib/v20181119/models.rb
Overview
单元格数据
Instance Attribute Summary collapse
-
#AdvancedInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ColBr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ColTl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Confidence ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Contents ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Polygon ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RowBr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RowTl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Text ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(coltl = nil, rowtl = nil, colbr = nil, rowbr = nil, text = nil, type = nil, confidence = nil, polygon = nil, advancedinfo = nil, contents = nil) ⇒ TableCell
constructor
A new instance of TableCell.
Constructor Details
#initialize(coltl = nil, rowtl = nil, colbr = nil, rowbr = nil, text = nil, type = nil, confidence = nil, polygon = nil, advancedinfo = nil, contents = nil) ⇒ TableCell
Returns a new instance of TableCell.
11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 |
# File 'lib/v20181119/models.rb', line 11109 def initialize(coltl=nil, rowtl=nil, colbr=nil, rowbr=nil, text=nil, type=nil, confidence=nil, polygon=nil, advancedinfo=nil, contents=nil) @ColTl = coltl @RowTl = rowtl @ColBr = colbr @RowBr = rowbr @Text = text @Type = type @Confidence = confidence @Polygon = polygon @AdvancedInfo = advancedinfo @Contents = contents end |
Instance Attribute Details
#AdvancedInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def AdvancedInfo @AdvancedInfo end |
#ColBr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def ColBr @ColBr end |
#ColTl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def ColTl @ColTl end |
#Confidence ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def Confidence @Confidence end |
#Contents ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def Contents @Contents end |
#Polygon ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def Polygon @Polygon end |
#RowBr ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def RowBr @RowBr end |
#RowTl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def RowTl @RowTl end |
#Text ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def Text @Text end |
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
11107 11108 11109 |
# File 'lib/v20181119/models.rb', line 11107 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 |
# File 'lib/v20181119/models.rb', line 11122 def deserialize(params) @ColTl = params['ColTl'] @RowTl = params['RowTl'] @ColBr = params['ColBr'] @RowBr = params['RowBr'] @Text = params['Text'] @Type = params['Type'] @Confidence = params['Confidence'] unless params['Polygon'].nil? @Polygon = [] params['Polygon'].each do |i| coord_tmp = Coord.new coord_tmp.deserialize(i) @Polygon << coord_tmp end end @AdvancedInfo = params['AdvancedInfo'] unless params['Contents'].nil? @Contents = [] params['Contents'].each do |i| cellcontent_tmp = CellContent.new cellcontent_tmp.deserialize(i) @Contents << cellcontent_tmp end end end |