Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1/classes.rb,
lib/google/apis/documentai_v1/representations.rb,
lib/google/apis/documentai_v1/representations.rb

Overview

Document represents the canonical document resource in Document Understanding AI. It is an interchange format that provides insights into documents and allows for collaboration between users and Document Understanding AI to iterate and optimize for quality.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1Document

Returns a new instance of GoogleCloudDocumentaiV1Document.



1060
1061
1062
# File 'lib/google/apis/documentai_v1/classes.rb', line 1060

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#contentString

Optional. Inline document content, represented as a stream of bytes. Note: As with all bytes fields, protobuffers use a pure binary representation, whereas JSON representations use base64. Corresponds to the JSON property content NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


989
990
991
# File 'lib/google/apis/documentai_v1/classes.rb', line 989

def content
  @content
end

#entitiesArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntity>

A list of entities detected on Document.text. For document shards, entities in this list may cross shard boundaries. Corresponds to the JSON property entities



995
996
997
# File 'lib/google/apis/documentai_v1/classes.rb', line 995

def entities
  @entities
end

#entity_relationsArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityRelation>

Relationship among Document.entities. Corresponds to the JSON property entityRelations



1000
1001
1002
# File 'lib/google/apis/documentai_v1/classes.rb', line 1000

def entity_relations
  @entity_relations
end

#errorGoogle::Apis::DocumentaiV1::GoogleRpcStatus

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide. Corresponds to the JSON property error



1010
1011
1012
# File 'lib/google/apis/documentai_v1/classes.rb', line 1010

def error
  @error
end

#mime_typeString

An IANA published MIME type (also referred to as media type). For more information, see https://www.iana.org/assignments/media-types/media-types. xhtml. Corresponds to the JSON property mimeType

Returns:

  • (String)


1017
1018
1019
# File 'lib/google/apis/documentai_v1/classes.rb', line 1017

def mime_type
  @mime_type
end

#pagesArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPage>

Visual page layout for the Document. Corresponds to the JSON property pages



1022
1023
1024
# File 'lib/google/apis/documentai_v1/classes.rb', line 1022

def pages
  @pages
end

#revisionsArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevision>

Revision history of this document. Corresponds to the JSON property revisions



1027
1028
1029
# File 'lib/google/apis/documentai_v1/classes.rb', line 1027

def revisions
  @revisions
end

#shard_infoGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentShardInfo

For a large document, sharding may be performed to produce several document shards. Each document shard contains this field to detail which shard it is. Corresponds to the JSON property shardInfo



1033
1034
1035
# File 'lib/google/apis/documentai_v1/classes.rb', line 1033

def shard_info
  @shard_info
end

#textString

Optional. UTF-8 encoded text in reading order from the document. Corresponds to the JSON property text

Returns:

  • (String)


1038
1039
1040
# File 'lib/google/apis/documentai_v1/classes.rb', line 1038

def text
  @text
end

#text_changesArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentTextChange>

A list of text corrections made to [Document.text]. This is usually used for annotating corrections to OCR mistakes. Text changes for a given revision may not overlap with each other. Corresponds to the JSON property textChanges



1045
1046
1047
# File 'lib/google/apis/documentai_v1/classes.rb', line 1045

def text_changes
  @text_changes
end

#text_stylesArray<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentStyle>

Styles for the Document.text. Corresponds to the JSON property textStyles



1050
1051
1052
# File 'lib/google/apis/documentai_v1/classes.rb', line 1050

def text_styles
  @text_styles
end

#uriString

Optional. Currently supports Google Cloud Storage URI of the form gs:// bucket_name/object_name. Object versioning is not supported. See Google Cloud Storage Request URIs for more info. Corresponds to the JSON property uri

Returns:

  • (String)


1058
1059
1060
# File 'lib/google/apis/documentai_v1/classes.rb', line 1058

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
# File 'lib/google/apis/documentai_v1/classes.rb', line 1065

def update!(**args)
  @content = args[:content] if args.key?(:content)
  @entities = args[:entities] if args.key?(:entities)
  @entity_relations = args[:entity_relations] if args.key?(:entity_relations)
  @error = args[:error] if args.key?(:error)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @pages = args[:pages] if args.key?(:pages)
  @revisions = args[:revisions] if args.key?(:revisions)
  @shard_info = args[:shard_info] if args.key?(:shard_info)
  @text = args[:text] if args.key?(:text)
  @text_changes = args[:text_changes] if args.key?(:text_changes)
  @text_styles = args[:text_styles] if args.key?(:text_styles)
  @uri = args[:uri] if args.key?(:uri)
end