class Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationReference

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

Attributes

aggregate_metrics[RW]

Evaluation metrics, either in aggregate or about a specific entity. Corresponds to the JSON property `aggregateMetrics` @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EvaluationMetrics]

evaluation[RW]

The resource name of the evaluation. Corresponds to the JSON property `evaluation` @return [String]

operation[RW]

The resource name of the Long Running Operation for the evaluation. Corresponds to the JSON property `operation` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1beta3/classes.rb, line 6560
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/documentai_v1beta3/classes.rb, line 6565
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