Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Stores extra information about why users provided thumbs down rating.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason

Returns a new instance of GoogleCloudDialogflowCxV3beta1AnswerFeedbackRatingReason.



4043
4044
4045
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4043

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

Instance Attribute Details

#feedbackString

Optional. Additional feedback about the rating. This field can be populated without choosing a predefined reason. Corresponds to the JSON property feedback

Returns:

  • (String)


4034
4035
4036
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4034

def feedback
  @feedback
end

#reason_labelsArray<String>

Optional. Custom reason labels for thumbs down rating provided by the user. The maximum number of labels allowed is 10 and the maximum length of a single label is 128 characters. Corresponds to the JSON property reasonLabels

Returns:

  • (Array<String>)


4041
4042
4043
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4041

def reason_labels
  @reason_labels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4048
4049
4050
4051
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4048

def update!(**args)
  @feedback = args[:feedback] if args.key?(:feedback)
  @reason_labels = args[:reason_labels] if args.key?(:reason_labels)
end