Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata
- 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 property.
Instance Attribute Summary collapse
-
#human_review_labeling_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
Metadata for human review labeling config.
-
#human_review_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
Metadata for Human Review config.
-
#inactive ⇒ Boolean
(also: #inactive?)
Whether the property should be considered as "inactive".
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3PropertyMetadata
constructor
A new instance of GoogleCloudDocumentaiV1beta3PropertyMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3PropertyMetadata
Returns a new instance of GoogleCloudDocumentaiV1beta3PropertyMetadata.
8444 8445 8446 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8444 def initialize(**args) update!(**args) end |
Instance Attribute Details
#human_review_labeling_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
Metadata for human review labeling config.
Corresponds to the JSON property humanReviewLabelingMetadata
8431 8432 8433 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8431 def @human_review_labeling_metadata end |
#human_review_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
Metadata for Human Review config.
Corresponds to the JSON property humanReviewMetadata
8436 8437 8438 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8436 def @human_review_metadata end |
#inactive ⇒ Boolean Also known as: inactive?
Whether the property should be considered as "inactive".
Corresponds to the JSON property inactive
8441 8442 8443 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8441 def inactive @inactive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8449 8450 8451 8452 8453 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8449 def update!(**args) @human_review_labeling_metadata = args[:human_review_labeling_metadata] if args.key?(:human_review_labeling_metadata) @human_review_metadata = args[:human_review_metadata] if args.key?(:human_review_metadata) @inactive = args[:inactive] if args.key?(:inactive) end |