Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSearchResult
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSearchResult
- 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
Represents the search results.
Instance Attribute Summary collapse
-
#chunk ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Chunk
Chunk captures all raw metadata information of items to be recommended or searched in the chunk mode.
-
#document ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Document
Document captures all raw metadata information of items to be recommended or searched.
-
#id ⇒ String
Document.id of the searched Document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchResponseSearchResult
constructor
A new instance of GoogleCloudDiscoveryengineV1SearchResponseSearchResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchResponseSearchResult
Returns a new instance of GoogleCloudDiscoveryengineV1SearchResponseSearchResult.
7369 7370 7371 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7369 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chunk ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Chunk
Chunk captures all raw metadata information of items to be recommended or
searched in the chunk mode.
Corresponds to the JSON property chunk
7356 7357 7358 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7356 def chunk @chunk end |
#document ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Document
Document captures all raw metadata information of items to be recommended or
searched.
Corresponds to the JSON property document
7362 7363 7364 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7362 def document @document end |
#id ⇒ String
Document.id of the searched Document.
Corresponds to the JSON property id
7367 7368 7369 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7367 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7374 7375 7376 7377 7378 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7374 def update!(**args) @chunk = args[:chunk] if args.key?(:chunk) @document = args[:document] if args.key?(:document) @id = args[:id] if args.key?(:id) end |