Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Stores extra information about why users provided thumbs down rating.
Instance Attribute Summary collapse
-
#feedback ⇒ String
Optional.
-
#reason_labels ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason
constructor
A new instance of GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason
Returns a new instance of GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason.
566 567 568 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 566 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feedback ⇒ String
Optional. Additional feedback about the rating. This field can be populated
without choosing a predefined reason
.
Corresponds to the JSON property feedback
557 558 559 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 557 def feedback @feedback end |
#reason_labels ⇒ Array<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
564 565 566 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 564 def reason_labels @reason_labels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
571 572 573 574 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 571 def update!(**args) @feedback = args[:feedback] if args.key?(:feedback) @reason_labels = args[:reason_labels] if args.key?(:reason_labels) end |