Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
Snippet cited by the answer generation model.
Instance Attribute Summary collapse
-
#search_snippet ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet
Search snippet details.
-
#snippet_index ⇒ Fixnum
Index of the snippet in
search_snippets
field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
constructor
A new instance of GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
Returns a new instance of GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet.
1404 1405 1406 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1404 def initialize(**args) update!(**args) end |
Instance Attribute Details
#search_snippet ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet
Search snippet details.
Corresponds to the JSON property searchSnippet
1397 1398 1399 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1397 def search_snippet @search_snippet end |
#snippet_index ⇒ Fixnum
Index of the snippet in search_snippets
field.
Corresponds to the JSON property snippetIndex
1402 1403 1404 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1402 def snippet_index @snippet_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1409 1410 1411 1412 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1409 def update!(**args) @search_snippet = args[:search_snippet] if args.key?(:search_snippet) @snippet_index = args[:snippet_index] if args.key?(:snippet_index) end |