Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary
- 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
-
#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::DialogflowV2::GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummarySummarySection>
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) ⇒ GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary
constructor
A new instance of GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary
Returns a new instance of GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummary.
15990 15991 15992 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15990 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_record ⇒ String
Corresponds to the JSON property answerRecord
15968 15969 15970 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15968 def answer_record @answer_record end |
#baseline_model_version ⇒ String
Corresponds to the JSON property baselineModelVersion
15973 15974 15975 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15973 def baseline_model_version @baseline_model_version end |
#sorted_text_sections ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestConversationSummaryResponseSummarySummarySection>
Corresponds to the JSON property sortedTextSections
15978 15979 15980 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15978 def sorted_text_sections @sorted_text_sections end |
#text ⇒ String
Corresponds to the JSON property text
15983 15984 15985 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15983 def text @text end |
#text_sections ⇒ Hash<String,String>
Corresponds to the JSON property textSections
15988 15989 15990 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15988 def text_sections @text_sections end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15995 15996 15997 15998 15999 16000 16001 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15995 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 |