Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Feedback for conversation summarization.
Instance Attribute Summary collapse
-
#start_timestamp ⇒ String
Timestamp when composing of the summary starts.
-
#submit_timestamp ⇒ String
Timestamp when the summary was submitted.
-
#summary_text ⇒ String
Text of actual submitted summary.
-
#text_sections ⇒ Hash<String,String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback
constructor
A new instance of GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback
Returns a new instance of GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback.
10922 10923 10924 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10922 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_timestamp ⇒ String
Timestamp when composing of the summary starts.
Corresponds to the JSON property startTimestamp
10905 10906 10907 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10905 def @start_timestamp end |
#submit_timestamp ⇒ String
Timestamp when the summary was submitted.
Corresponds to the JSON property submitTimestamp
10910 10911 10912 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10910 def @submit_timestamp end |
#summary_text ⇒ String
Text of actual submitted summary.
Corresponds to the JSON property summaryText
10915 10916 10917 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10915 def summary_text @summary_text end |
#text_sections ⇒ Hash<String,String>
Optional. Actual text sections of submitted summary.
Corresponds to the JSON property textSections
10920 10921 10922 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10920 def text_sections @text_sections end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10927 10928 10929 10930 10931 10932 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10927 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) @text_sections = args[:text_sections] if args.key?(:text_sections) end |