Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty

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

Defines properties that can be part of the entity type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty

Returns a new instance of GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty.



2953
2954
2955
# File 'lib/google/apis/documentai_v1/classes.rb', line 2953

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

Instance Attribute Details

#nameString

The name of the property. Follows the same guidelines as the EntityType name. Corresponds to the JSON property name

Returns:

  • (String)


2934
2935
2936
# File 'lib/google/apis/documentai_v1/classes.rb', line 2934

def name
  @name
end

#occurrence_typeString

Occurrence type limits the number of instances an entity type appears in the document. Corresponds to the JSON property occurrenceType

Returns:

  • (String)


2940
2941
2942
# File 'lib/google/apis/documentai_v1/classes.rb', line 2940

def occurrence_type
  @occurrence_type
end

#property_metadataGoogle::Apis::DocumentaiV1::GoogleCloudDocumentaiV1PropertyMetadata

Metadata about a property. Corresponds to the JSON property propertyMetadata



2945
2946
2947
# File 'lib/google/apis/documentai_v1/classes.rb', line 2945

def 
  @property_metadata
end

#value_typeString

A reference to the value type of the property. This type is subject to the same conventions as the Entity.base_types field. Corresponds to the JSON property valueType

Returns:

  • (String)


2951
2952
2953
# File 'lib/google/apis/documentai_v1/classes.rb', line 2951

def value_type
  @value_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2958
2959
2960
2961
2962
2963
# File 'lib/google/apis/documentai_v1/classes.rb', line 2958

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
  @property_metadata = args[:property_metadata] if args.key?(:property_metadata)
  @value_type = args[:value_type] if args.key?(:value_type)
end