Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationReference

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

Gives a short summary of an evaluation, and links to the evaluation itself.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3EvaluationReference

Returns a new instance of GoogleCloudDocumentaiV1beta3EvaluationReference.



10033
10034
10035
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10033

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

Instance Attribute Details

#aggregate_metricsGoogle::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics

Evaluation metrics, either in aggregate or about a specific entity. Corresponds to the JSON property aggregateMetrics



10016
10017
10018
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10016

def aggregate_metrics
  @aggregate_metrics
end

#aggregate_metrics_exactGoogle::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics

Evaluation metrics, either in aggregate or about a specific entity. Corresponds to the JSON property aggregateMetricsExact



10021
10022
10023
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10021

def aggregate_metrics_exact
  @aggregate_metrics_exact
end

#evaluationString

The resource name of the evaluation. Corresponds to the JSON property evaluation

Returns:

  • (String)


10026
10027
10028
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10026

def evaluation
  @evaluation
end

#operationString

The resource name of the Long Running Operation for the evaluation. Corresponds to the JSON property operation

Returns:

  • (String)


10031
10032
10033
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10031

def operation
  @operation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10038
10039
10040
10041
10042
10043
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 10038

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