Class: Google::Cloud::DiscoveryEngine::V1::SearchRequest::DisplaySpec
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1::SearchRequest::DisplaySpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1/search_service.rb
Overview
Specifies features for display, like match highlighting.
Defined Under Namespace
Modules: MatchHighlightingCondition
Instance Attribute Summary collapse
-
#match_highlighting_condition ⇒ ::Google::Cloud::DiscoveryEngine::V1::SearchRequest::DisplaySpec::MatchHighlightingCondition
The condition under which match highlighting should occur.
Instance Attribute Details
#match_highlighting_condition ⇒ ::Google::Cloud::DiscoveryEngine::V1::SearchRequest::DisplaySpec::MatchHighlightingCondition
Returns The condition under which match highlighting should occur.
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 |
# File 'proto_docs/google/cloud/discoveryengine/v1/search_service.rb', line 1060 class DisplaySpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum describing under which condition match highlighting should occur. module MatchHighlightingCondition # Server behavior is the same as `MATCH_HIGHLIGHTING_DISABLED`. MATCH_HIGHLIGHTING_CONDITION_UNSPECIFIED = 0 # Disables match highlighting on all documents. MATCH_HIGHLIGHTING_DISABLED = 1 # Enables match highlighting on all documents. MATCH_HIGHLIGHTING_ENABLED = 2 end end |