Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1Note

Returns a new instance of GoogleCloudContactcenterinsightsV1Note.



7062
7063
7064
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7062

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#assessment_noteGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteAssessmentNote

A note about the entire parent assessment. Corresponds to the JSON property assessmentNote



7023
7024
7025
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7023

def assessment_note
  @assessment_note
end

#contentString

The note content. Corresponds to the JSON property content

Returns:

  • (String)


7028
7029
7030
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7028

def content
  @content
end

#conversation_turn_noteGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteConversationTurnNote

A note about a conversation turn. Corresponds to the JSON property conversationTurnNote



7033
7034
7035
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7033

def conversation_turn_note
  @conversation_turn_note
end

#create_timeString

Output only. The time at which the note was created. Corresponds to the JSON property createTime

Returns:

  • (String)


7038
7039
7040
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7038

def create_time
  @create_time
end

#nameString

Identifier. The resource name of the note. Format: projects/project/ locations/location/conversations/conversation/assessments/assessment/ notes/note Corresponds to the JSON property name

Returns:

  • (String)


7045
7046
7047
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7045

def name
  @name
end

#note_creatorGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1UserInfo

Information about a user. Corresponds to the JSON property noteCreator



7050
7051
7052
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7050

def note_creator
  @note_creator
end

#qa_question_noteGoogle::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteQaQuestionNote

A note about a QA question. Corresponds to the JSON property qaQuestionNote



7055
7056
7057
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7055

def qa_question_note
  @qa_question_note
end

#update_timeString

Output only. The time at which the note was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


7060
7061
7062
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7060

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7067

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