class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback
Feedback for conversation summarization.
Attributes
start_timestamp[RW]
Timestamp when composing of the summary starts. Corresponds to the JSON property `startTimestamp` @return [String]
submit_timestamp[RW]
Timestamp when the summary was submitted. Corresponds to the JSON property `submitTimestamp` @return [String]
summary_text[RW]
Text of actual submitted summary. Corresponds to the JSON property `summaryText` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7654 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7659 def update!(**args) @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp) @submit_timestamp = args[:submit_timestamp] if args.key?(:submit_timestamp) @summary_text = args[:summary_text] if args.key?(:summary_text) end