Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback

Returns a new instance of GoogleCloudDialogflowV2beta1AgentAssistantFeedbackSummarizationFeedback.



9365
9366
9367
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9365

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

Instance Attribute Details

#start_timestampString

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

Returns:

  • (String)


9353
9354
9355
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9353

def start_timestamp
  @start_timestamp
end

#submit_timestampString

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

Returns:

  • (String)


9358
9359
9360
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9358

def submit_timestamp
  @submit_timestamp
end

#summary_textString

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

Returns:

  • (String)


9363
9364
9365
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9363

def summary_text
  @summary_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9370
9371
9372
9373
9374
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9370

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