Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSummaryReference
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSummaryReference
- 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
Document reference.
Instance Attribute Summary collapse
-
#chunk_contents ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSummaryReferenceChunkContent>
List of cited chunk contents derived from document content.
-
#document ⇒ String
Required.
-
#title ⇒ String
Title of the document.
-
#uri ⇒ String
Cloud Storage or HTTP uri for the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchResponseSummaryReference
constructor
A new instance of GoogleCloudDiscoveryengineV1SearchResponseSummaryReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1SearchResponseSummaryReference
Returns a new instance of GoogleCloudDiscoveryengineV1SearchResponseSummaryReference.
7734 7735 7736 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7734 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chunk_contents ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchResponseSummaryReferenceChunkContent>
List of cited chunk contents derived from document content.
Corresponds to the JSON property chunkContents
7715 7716 7717 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7715 def chunk_contents @chunk_contents end |
#document ⇒ String
Required. Document.name of the document. Full resource name of the referenced
document, in the format projects/*/locations/*/collections/*/dataStores/*/
branches/*/documents/*.
Corresponds to the JSON property document
7722 7723 7724 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7722 def document @document end |
#title ⇒ String
Title of the document.
Corresponds to the JSON property title
7727 7728 7729 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7727 def title @title end |
#uri ⇒ String
Cloud Storage or HTTP uri for the document.
Corresponds to the JSON property uri
7732 7733 7734 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7732 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7739 7740 7741 7742 7743 7744 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 7739 def update!(**args) @chunk_contents = args[:chunk_contents] if args.key?(:chunk_contents) @document = args[:document] if args.key?(:document) @title = args[:title] if args.key?(:title) @uri = args[:uri] if args.key?(:uri) end |