Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
A specification for configuring snippets in a search response.
Instance Attribute Summary collapse
-
#max_snippet_count ⇒ Fixnum
[DEPRECATED] This field is deprecated.
-
#reference_only ⇒ Boolean
(also: #reference_only?)
[DEPRECATED] This field is deprecated and will have no affect on the snippet.
-
#return_snippet ⇒ Boolean
(also: #return_snippet?)
If
true, then return snippet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec
constructor
A new instance of GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec
Returns a new instance of GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpecSnippetSpec.
6693 6694 6695 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 6693 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_snippet_count ⇒ Fixnum
[DEPRECATED] This field is deprecated. To control snippet return, use
return_snippet field. For backwards compatibility, we will return snippet if
max_snippet_count > 0.
Corresponds to the JSON property maxSnippetCount
6677 6678 6679 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 6677 def max_snippet_count @max_snippet_count end |
#reference_only ⇒ Boolean Also known as: reference_only?
[DEPRECATED] This field is deprecated and will have no affect on the snippet.
Corresponds to the JSON property referenceOnly
6682 6683 6684 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 6682 def reference_only @reference_only end |
#return_snippet ⇒ Boolean Also known as: return_snippet?
If true, then return snippet. If no snippet can be generated, we return "No
snippet is available for this page." A snippet_status with SUCCESS or
NO_SNIPPET_AVAILABLE will also be returned.
Corresponds to the JSON property returnSnippet
6690 6691 6692 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 6690 def return_snippet @return_snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6698 6699 6700 6701 6702 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 6698 def update!(**args) @max_snippet_count = args[:max_snippet_count] if args.key?(:max_snippet_count) @reference_only = args[:reference_only] if args.key?(:reference_only) @return_snippet = args[:return_snippet] if args.key?(:return_snippet) end |