Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Document metadata.
Instance Attribute Summary collapse
-
#document ⇒ String
Document resource name.
-
#page_identifier ⇒ String
Page identifier.
-
#struct_data ⇒ Hash<String,Object>
The structured JSON metadata for the document.
-
#title ⇒ String
Title.
-
#uri ⇒ String
URI for the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata
Returns a new instance of GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfoDocumentMetadata.
3566 3567 3568 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3566 def initialize(**args) update!(**args) end |
Instance Attribute Details
#document ⇒ String
Document resource name.
Corresponds to the JSON property document
3543 3544 3545 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3543 def document @document end |
#page_identifier ⇒ String
Page identifier.
Corresponds to the JSON property pageIdentifier
3548 3549 3550 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3548 def page_identifier @page_identifier end |
#struct_data ⇒ Hash<String,Object>
The structured JSON metadata for the document. It is populated from the struct
data from the Chunk in search result.
Corresponds to the JSON property structData
3554 3555 3556 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3554 def struct_data @struct_data end |
#title ⇒ String
Title.
Corresponds to the JSON property title
3559 3560 3561 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3559 def title @title end |
#uri ⇒ String
URI for the document.
Corresponds to the JSON property uri
3564 3565 3566 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3564 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3571 3572 3573 3574 3575 3576 3577 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3571 def update!(**args) @document = args[:document] if args.key?(:document) @page_identifier = args[:page_identifier] if args.key?(:page_identifier) @struct_data = args[:struct_data] if args.key?(:struct_data) @title = args[:title] if args.key?(:title) @uri = args[:uri] if args.key?(:uri) end |