Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Feedback for conversation summarization.
Instance Attribute Summary collapse
-
#start_time ⇒ String
Timestamp when composing of the summary starts.
-
#submit_time ⇒ String
Timestamp when the summary was submitted.
-
#summary_text ⇒ String
Text of actual submitted summary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback
constructor
A new instance of GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback
Returns a new instance of GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback.
7382 7383 7384 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7382 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_time ⇒ String
Timestamp when composing of the summary starts.
Corresponds to the JSON property startTime
7370 7371 7372 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7370 def start_time @start_time end |
#submit_time ⇒ String
Timestamp when the summary was submitted.
Corresponds to the JSON property submitTime
7375 7376 7377 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7375 def submit_time @submit_time end |
#summary_text ⇒ String
Text of actual submitted summary.
Corresponds to the JSON property summaryText
7380 7381 7382 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7380 def summary_text @summary_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7387 7388 7389 7390 7391 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7387 def update!(**args) @start_time = args[:start_time] if args.key?(:start_time) @submit_time = args[:submit_time] if args.key?(:submit_time) @summary_text = args[:summary_text] if args.key?(:summary_text) end |