class Azure::CognitiveServices::FormRecognizer::V1_0_preview::Models::ExtractedTable
Extraction information about a table contained in a page.
Attributes
columns[RW]
@return [Array<ExtractedTableColumn>] List of columns contained in the table.
id[RW]
@return [String] Table identifier.
Private Class Methods
mapper()
click to toggle source
Mapper for ExtractedTable
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/1.0-preview/generated/azure_cognitiveservices_formrecognizer/models/extracted_table.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExtractedTable', type: { name: 'Composite', class_name: 'ExtractedTable', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, columns: { client_side_validation: true, required: false, serialized_name: 'columns', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ExtractedTableColumnElementType', type: { name: 'Composite', class_name: 'ExtractedTableColumn' } } } } } } } end