class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestRunDifference

The description of differences between original and replayed agent output.

Attributes

description[RW]

A description of the diff, showing the actual output vs expected output. Corresponds to the JSON property `description` @return [String]

type[RW]

The type of diff. Corresponds to the JSON property `type` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 2163
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @type = args[:type] if args.key?(:type)
end