Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note
- 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
The conversation assessment note resource.
Instance Attribute Summary collapse
-
#assessment_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteAssessmentNote
A note about the entire parent assessment.
-
#content ⇒ String
The note content.
-
#conversation_turn_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteConversationTurnNote
A note about a conversation turn.
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#note_creator ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1UserInfo
Information about a user.
-
#qa_question_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteQaQuestionNote
A note about a QA question.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Note
constructor
A new instance of GoogleCloudContactcenterinsightsV1Note.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Note
Returns a new instance of GoogleCloudContactcenterinsightsV1Note.
6397 6398 6399 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6397 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assessment_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteAssessmentNote
A note about the entire parent assessment.
Corresponds to the JSON property assessmentNote
6358 6359 6360 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6358 def assessment_note @assessment_note end |
#content ⇒ String
The note content.
Corresponds to the JSON property content
6363 6364 6365 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6363 def content @content end |
#conversation_turn_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteConversationTurnNote
A note about a conversation turn.
Corresponds to the JSON property conversationTurnNote
6368 6369 6370 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6368 def conversation_turn_note @conversation_turn_note end |
#create_time ⇒ String
Output only. The time at which the note was created.
Corresponds to the JSON property createTime
6373 6374 6375 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6373 def create_time @create_time end |
#name ⇒ String
Identifier. The resource name of the note. Format: projects/project/
locations/location/conversations/conversation/assessments/assessment/
notes/note
Corresponds to the JSON property name
6380 6381 6382 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6380 def name @name end |
#note_creator ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1UserInfo
Information about a user.
Corresponds to the JSON property noteCreator
6385 6386 6387 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6385 def note_creator @note_creator end |
#qa_question_note ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteQaQuestionNote
A note about a QA question.
Corresponds to the JSON property qaQuestionNote
6390 6391 6392 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6390 def qa_question_note @qa_question_note end |
#update_time ⇒ String
Output only. The time at which the note was last updated.
Corresponds to the JSON property updateTime
6395 6396 6397 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6395 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6402 def update!(**args) @assessment_note = args[:assessment_note] if args.key?(:assessment_note) @content = args[:content] if args.key?(:content) @conversation_turn_note = args[:conversation_turn_note] if args.key?(:conversation_turn_note) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @note_creator = args[:note_creator] if args.key?(:note_creator) @qa_question_note = args[:qa_question_note] if args.key?(:qa_question_note) @update_time = args[:update_time] if args.key?(:update_time) end |