Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1EvaluationReference
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1EvaluationReference
- 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
Gives a short summary of an evaluation, and links to the evaluation itself.
Instance Attribute Summary collapse
-
#aggregate_metrics ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
-
#evaluation ⇒ String
The resource name of the evaluation.
-
#operation ⇒ String
The resource name of the Long Running Operation for the evaluation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1EvaluationReference
constructor
A new instance of GoogleCloudDocumentaiV1EvaluationReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1EvaluationReference
Returns a new instance of GoogleCloudDocumentaiV1EvaluationReference.
2614 2615 2616 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 2614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregate_metrics ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
Corresponds to the JSON property aggregateMetrics
2602 2603 2604 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 2602 def aggregate_metrics @aggregate_metrics end |
#evaluation ⇒ String
The resource name of the evaluation.
Corresponds to the JSON property evaluation
2607 2608 2609 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 2607 def evaluation @evaluation end |
#operation ⇒ String
The resource name of the Long Running Operation for the evaluation.
Corresponds to the JSON property operation
2612 2613 2614 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 2612 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2619 2620 2621 2622 2623 |
# File 'lib/google/apis/documentai_v1/classes.rb', line 2619 def update!(**args) @aggregate_metrics = args[:aggregate_metrics] if args.key?(:aggregate_metrics) @evaluation = args[:evaluation] if args.key?(:evaluation) @operation = args[:operation] if args.key?(:operation) end |