class Google::Apis::DialogflowV3::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_v3/classes.rb, line 4844
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_v3/classes.rb, line 4849
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @type = args[:type] if args.key?(:type)
end