Class: Google::Cloud::DocumentAI::V1beta3::Document::PageAnchor

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/documentai/v1beta3/document.rb

Overview

Referencing the visual context of the entity in the Document.pages. Page anchors can be cross-page, consist of multiple bounding polygons and optionally reference specific layout element types.

Defined Under Namespace

Classes: PageRef

Instance Attribute Summary collapse

Instance Attribute Details

#page_refs::Array<::Google::Cloud::DocumentAI::V1beta3::Document::PageAnchor::PageRef>

Returns One or more references to visual page elements.

Returns:



651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
# File 'proto_docs/google/cloud/documentai/v1beta3/document.rb', line 651

class PageAnchor
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Represents a weak reference to a page element within a document.
  # @!attribute [rw] page
  #   @return [::Integer]
  #     Required. Index into the {::Google::Cloud::DocumentAI::V1beta3::Document#pages Document.pages} element, for example using
  #     [Document.pages][page_refs.page] to locate the related page element.
  # @!attribute [rw] layout_type
  #   @return [::Google::Cloud::DocumentAI::V1beta3::Document::PageAnchor::PageRef::LayoutType]
  #     Optional. The type of the layout element that is being referenced if any.
  # @!attribute [rw] layout_id
  #   @return [::String]
  #     Optional. Deprecated.  Use {::Google::Cloud::DocumentAI::V1beta3::Document::PageAnchor::PageRef#bounding_poly PageRef.bounding_poly} instead.
  # @!attribute [rw] bounding_poly
  #   @return [::Google::Cloud::DocumentAI::V1beta3::BoundingPoly]
  #     Optional. Identifies the bounding polygon of a layout element on the page.
  class PageRef
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # The type of layout that is being referenced.
    module LayoutType
      # Layout Unspecified.
      LAYOUT_TYPE_UNSPECIFIED = 0

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#blocks Page.blocks} element.
      BLOCK = 1

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#paragraphs Page.paragraphs} element.
      PARAGRAPH = 2

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#lines Page.lines} element.
      LINE = 3

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#tokens Page.tokens} element.
      TOKEN = 4

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#visual_elements Page.visual_elements} element.
      VISUAL_ELEMENT = 5

      # Refrrences a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#tables Page.tables} element.
      TABLE = 6

      # References a {::Google::Cloud::DocumentAI::V1beta3::Document::Page#form_fields Page.form_fields} element.
      FORM_FIELD = 7
    end
  end
end