Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentMetadata

Inherits:
Object
  • Object
show all
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

Metadata about a document.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3DocumentMetadata

Returns a new instance of GoogleCloudDocumentaiV1beta3DocumentMetadata.



7441
7442
7443
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7441

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

Instance Attribute Details

#dataset_typeString

Type of the dataset split to which the document belongs. Corresponds to the JSON property datasetType

Returns:

  • (String)


7419
7420
7421
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7419

def dataset_type
  @dataset_type
end

#display_nameString

The display name of the document. Corresponds to the JSON property displayName

Returns:

  • (String)


7424
7425
7426
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7424

def display_name
  @display_name
end

#document_idGoogle::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentId

Document Identifier. Corresponds to the JSON property documentId



7429
7430
7431
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7429

def document_id
  @document_id
end

#labeling_stateString

Labeling state of the document. Corresponds to the JSON property labelingState

Returns:

  • (String)


7434
7435
7436
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7434

def labeling_state
  @labeling_state
end

#page_countFixnum

Number of pages in the document. Corresponds to the JSON property pageCount

Returns:

  • (Fixnum)


7439
7440
7441
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7439

def page_count
  @page_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7446
7447
7448
7449
7450
7451
7452
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 7446

def update!(**args)
  @dataset_type = args[:dataset_type] if args.key?(:dataset_type)
  @display_name = args[:display_name] if args.key?(:display_name)
  @document_id = args[:document_id] if args.key?(:document_id)
  @labeling_state = args[:labeling_state] if args.key?(:labeling_state)
  @page_count = args[:page_count] if args.key?(:page_count)
end