Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata
- 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 dimension.
Instance Attribute Summary collapse
-
#qa_question_id ⇒ String
Optional.
-
#qa_scorecard_id ⇒ String
Optional.
-
#question_body ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata
Returns a new instance of GoogleCloudContactcenterinsightsV1mainDimensionQaQuestionDimensionMetadata.
21724 21725 21726 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21724 def initialize(**args) update!(**args) end |
Instance Attribute Details
#qa_question_id ⇒ String
Optional. The QA question ID.
Corresponds to the JSON property qaQuestionId
21712 21713 21714 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21712 def qa_question_id @qa_question_id end |
#qa_scorecard_id ⇒ String
Optional. The QA scorecard ID.
Corresponds to the JSON property qaScorecardId
21717 21718 21719 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21717 def qa_scorecard_id @qa_scorecard_id end |
#question_body ⇒ String
Optional. The full body of the question.
Corresponds to the JSON property questionBody
21722 21723 21724 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21722 def question_body @question_body end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21729 21730 21731 21732 21733 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21729 def update!(**args) @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 |