Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback

Returns a new instance of GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback.



6369
6370
6371
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6369

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

Instance Attribute Details

#start_timeString

Timestamp when composing of the summary starts. Corresponds to the JSON property startTime

Returns:

  • (String)


6357
6358
6359
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6357

def start_time
  @start_time
end

#submit_timeString

Timestamp when the summary was submitted. Corresponds to the JSON property submitTime

Returns:

  • (String)


6362
6363
6364
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6362

def submit_time
  @submit_time
end

#summary_textString

Text of actual submitted summary. Corresponds to the JSON property summaryText

Returns:

  • (String)


6367
6368
6369
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6367

def summary_text
  @summary_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6374
6375
6376
6377
6378
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6374

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