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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback

Returns a new instance of GoogleCloudDialogflowV2AgentAssistantFeedbackSummarizationFeedback.



6990
6991
6992
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6990

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

Instance Attribute Details

#start_timeString

Corresponds to the JSON property startTime

Returns:

  • (String)


6973
6974
6975
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6973

def start_time
  @start_time
end

#submit_timeString

Corresponds to the JSON property submitTime

Returns:

  • (String)


6978
6979
6980
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6978

def submit_time
  @submit_time
end

#summary_textString

Corresponds to the JSON property summaryText

Returns:

  • (String)


6983
6984
6985
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6983

def summary_text
  @summary_text
end

#text_sectionsHash<String,String>

Corresponds to the JSON property textSections

Returns:

  • (Hash<String,String>)


6988
6989
6990
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6988

def text_sections
  @text_sections
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6995
6996
6997
6998
6999
7000
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6995

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)
  @text_sections = args[:text_sections] if args.key?(:text_sections)
end