Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/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) ⇒ GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec
constructor
A new instance of GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec
Returns a new instance of GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpecSnippetSpec.
17954 17955 17956 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17954 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
17938 17939 17940 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17938 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
17943 17944 17945 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17943 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
17951 17952 17953 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17951 def return_snippet @return_snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17959 17960 17961 17962 17963 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 17959 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 |