Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
Represents a list type block.
Instance Attribute Summary collapse
-
#list_entries ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry>
List entries that constitute a list block.
-
#type ⇒ String
Type of the list_entries (if exist).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
constructor
A new instance of GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock
Returns a new instance of GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock.
8183 8184 8185 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#list_entries ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListEntry>
List entries that constitute a list block.
Corresponds to the JSON property listEntries
8175 8176 8177 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8175 def list_entries @list_entries end |
#type ⇒ String
Type of the list_entries (if exist). Available options are ordered
and
unordered
.
Corresponds to the JSON property type
8181 8182 8183 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8181 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8188 8189 8190 8191 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8188 def update!(**args) @list_entries = args[:list_entries] if args.key?(:list_entries) @type = args[:type] if args.key?(:type) end |