Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationReference
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationReference
- 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
Gives a short summary of an evaluation, and links to the evaluation itself.
Instance Attribute Summary collapse
-
#aggregate_metrics ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
-
#aggregate_metrics_exact ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
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) ⇒ GoogleCloudDocumentaiV1beta3EvaluationReference
constructor
A new instance of GoogleCloudDocumentaiV1beta3EvaluationReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3EvaluationReference
Returns a new instance of GoogleCloudDocumentaiV1beta3EvaluationReference.
8179 8180 8181 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8179 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregate_metrics ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
Corresponds to the JSON property aggregateMetrics
8162 8163 8164 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8162 def aggregate_metrics @aggregate_metrics end |
#aggregate_metrics_exact ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics
Evaluation metrics, either in aggregate or about a specific entity.
Corresponds to the JSON property aggregateMetricsExact
8167 8168 8169 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8167 def aggregate_metrics_exact @aggregate_metrics_exact end |
#evaluation ⇒ String
The resource name of the evaluation.
Corresponds to the JSON property evaluation
8172 8173 8174 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8172 def evaluation @evaluation end |
#operation ⇒ String
The resource name of the Long Running Operation for the evaluation.
Corresponds to the JSON property operation
8177 8178 8179 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8177 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8184 8185 8186 8187 8188 8189 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 8184 def update!(**args) @aggregate_metrics = args[:aggregate_metrics] if args.key?(:aggregate_metrics) @aggregate_metrics_exact = args[:aggregate_metrics_exact] if args.key?(:aggregate_metrics_exact) @evaluation = args[:evaluation] if args.key?(:evaluation) @operation = args[:operation] if args.key?(:operation) end |