Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary
- 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
Instance Attribute Summary collapse
-
#answer_record ⇒ String
Corresponds to the JSON property
answerRecord. -
#baseline_model_version ⇒ String
Corresponds to the JSON property
baselineModelVersion. -
#sorted_text_sections ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummarySummarySection>
Corresponds to the JSON property
sortedTextSections. -
#text ⇒ String
Corresponds to the JSON property
text. -
#text_sections ⇒ Hash<String,String>
Corresponds to the JSON property
textSections.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary
constructor
A new instance of GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary
Returns a new instance of GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummary.
20250 20251 20252 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_record ⇒ String
Corresponds to the JSON property answerRecord
20228 20229 20230 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20228 def answer_record @answer_record end |
#baseline_model_version ⇒ String
Corresponds to the JSON property baselineModelVersion
20233 20234 20235 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20233 def baseline_model_version @baseline_model_version end |
#sorted_text_sections ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestConversationSummaryResponseSummarySummarySection>
Corresponds to the JSON property sortedTextSections
20238 20239 20240 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20238 def sorted_text_sections @sorted_text_sections end |
#text ⇒ String
Corresponds to the JSON property text
20243 20244 20245 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20243 def text @text end |
#text_sections ⇒ Hash<String,String>
Corresponds to the JSON property textSections
20248 20249 20250 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20248 def text_sections @text_sections end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20255 20256 20257 20258 20259 20260 20261 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 20255 def update!(**args) @answer_record = args[:answer_record] if args.key?(:answer_record) @baseline_model_version = args[:baseline_model_version] if args.key?(:baseline_model_version) @sorted_text_sections = args[:sorted_text_sections] if args.key?(:sorted_text_sections) @text = args[:text] if args.key?(:text) @text_sections = args[:text_sections] if args.key?(:text_sections) end |