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
Overview
Generated summary for a conversation.
Instance Attribute Summary collapse
-
#answer_record ⇒ String
The name of the answer record.
-
#baseline_model_version ⇒ String
The baseline model version used to generate this summary.
-
#text ⇒ String
The summary content that is concatenated into one string.
-
#text_sections ⇒ Hash<String,String>
The summary content that is divided into sections.
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.
15783 15784 15785 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15783 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_record ⇒ String
The name of the answer record. Format: "projects//answerRecords/"
Corresponds to the JSON property answerRecord
15763 15764 15765 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15763 def answer_record @answer_record end |
#baseline_model_version ⇒ String
The baseline model version used to generate this summary. It is empty if a
baseline model was not used to generate this summary.
Corresponds to the JSON property baselineModelVersion
15769 15770 15771 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15769 def baseline_model_version @baseline_model_version end |
#text ⇒ String
The summary content that is concatenated into one string.
Corresponds to the JSON property text
15774 15775 15776 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15774 def text @text end |
#text_sections ⇒ Hash<String,String>
The summary content that is divided into sections. The key is the section's
name and the value is the section's content. There is no specific format for
the key or value.
Corresponds to the JSON property textSections
15781 15782 15783 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15781 def text_sections @text_sections end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15788 15789 15790 15791 15792 15793 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15788 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) @text = args[:text] if args.key?(:text) @text_sections = args[:text_sections] if args.key?(:text_sections) end |