Class: TencentCloud::Ocr::V20181119::RecognizeTableAccurateOCRResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::RecognizeTableAccurateOCRResponse
- Defined in:
- lib/v20181119/models.rb
Overview
RecognizeTableAccurateOCR返回参数结构体
Instance Attribute Summary collapse
-
#Angle ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#PdfPageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TableDetections ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tabledetections = nil, data = nil, pdfpagesize = nil, angle = nil, requestid = nil) ⇒ RecognizeTableAccurateOCRResponse
constructor
A new instance of RecognizeTableAccurateOCRResponse.
Constructor Details
#initialize(tabledetections = nil, data = nil, pdfpagesize = nil, angle = nil, requestid = nil) ⇒ RecognizeTableAccurateOCRResponse
Returns a new instance of RecognizeTableAccurateOCRResponse.
9517 9518 9519 9520 9521 9522 9523 |
# File 'lib/v20181119/models.rb', line 9517 def initialize(tabledetections=nil, data=nil, pdfpagesize=nil, angle=nil, requestid=nil) @TableDetections = tabledetections @Data = data @PdfPageSize = pdfpagesize @Angle = angle @RequestId = requestid end |
Instance Attribute Details
#Angle ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
9515 9516 9517 |
# File 'lib/v20181119/models.rb', line 9515 def Angle @Angle end |
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
9515 9516 9517 |
# File 'lib/v20181119/models.rb', line 9515 def Data @Data end |
#PdfPageSize ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
9515 9516 9517 |
# File 'lib/v20181119/models.rb', line 9515 def PdfPageSize @PdfPageSize end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
9515 9516 9517 |
# File 'lib/v20181119/models.rb', line 9515 def RequestId @RequestId end |
#TableDetections ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
9515 9516 9517 |
# File 'lib/v20181119/models.rb', line 9515 def TableDetections @TableDetections end |
Instance Method Details
#deserialize(params) ⇒ Object
9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 |
# File 'lib/v20181119/models.rb', line 9525 def deserialize(params) unless params['TableDetections'].nil? @TableDetections = [] params['TableDetections'].each do |i| tableinfo_tmp = TableInfo.new tableinfo_tmp.deserialize(i) @TableDetections << tableinfo_tmp end end @Data = params['Data'] @PdfPageSize = params['PdfPageSize'] @Angle = params['Angle'] @RequestId = params['RequestId'] end |