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
Instance Attribute Summary collapse
-
#start_time ⇒ String
Corresponds to the JSON property
startTime. -
#submit_time ⇒ String
Corresponds to the JSON property
submitTime. -
#summary_text ⇒ String
Corresponds to the JSON property
summaryText. -
#text_sections ⇒ Hash<String,String>
Corresponds to the JSON property
textSections.
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.
6978 6979 6980 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6978 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_time ⇒ String
Corresponds to the JSON property startTime
6961 6962 6963 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6961 def start_time @start_time end |
#submit_time ⇒ String
Corresponds to the JSON property submitTime
6966 6967 6968 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6966 def submit_time @submit_time end |
#summary_text ⇒ String
Corresponds to the JSON property summaryText
6971 6972 6973 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6971 def summary_text @summary_text end |
#text_sections ⇒ Hash<String,String>
Corresponds to the JSON property textSections
6976 6977 6978 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6976 def text_sections @text_sections end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6983 6984 6985 6986 6987 6988 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6983 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 |