Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec
- 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) ⇒ GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec
Returns a new instance of GoogleCloudDiscoveryengineV1alphaSearchRequestContentSearchSpecSnippetSpec.
14128 14129 14130 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14128 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
14112 14113 14114 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14112 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
14117 14118 14119 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14117 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
14125 14126 14127 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14125 def return_snippet @return_snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14133 14134 14135 14136 14137 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 14133 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 |