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.



4153
4154
4155
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4153

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)


4144
4145
4146
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4144

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>)


4151
4152
4153
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4151

def reason_labels
  @reason_labels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4158
4159
4160
4161
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4158

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