Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
Metadata about the QA question-answer dimension. This is useful for showing the answer distribution for questions for a given scorecard.
Instance Attribute Summary collapse
-
#answer_value ⇒ String
Optional.
-
#qa_question_id ⇒ String
Optional.
-
#qa_scorecard_id ⇒ String
Optional.
-
#question_body ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata
Returns a new instance of GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionAnswerDimensionMetadata.
18287 18288 18289 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_value ⇒ String
Optional. The full body of the question.
Corresponds to the JSON property answerValue
18270 18271 18272 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18270 def answer_value @answer_value end |
#qa_question_id ⇒ String
Optional. The QA question ID.
Corresponds to the JSON property qaQuestionId
18275 18276 18277 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18275 def qa_question_id @qa_question_id end |
#qa_scorecard_id ⇒ String
Optional. The QA scorecard ID.
Corresponds to the JSON property qaScorecardId
18280 18281 18282 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18280 def qa_scorecard_id @qa_scorecard_id end |
#question_body ⇒ String
Optional. The full body of the question.
Corresponds to the JSON property questionBody
18285 18286 18287 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18285 def question_body @question_body end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18292 18293 18294 18295 18296 18297 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18292 def update!(**args) @answer_value = args[:answer_value] if args.key?(:answer_value) @qa_question_id = args[:qa_question_id] if args.key?(:qa_question_id) @qa_scorecard_id = args[:qa_scorecard_id] if args.key?(:qa_scorecard_id) @question_body = args[:question_body] if args.key?(:question_body) end |