Class: Google::Cloud::DiscoveryEngine::V1beta::AnswerQueryRequest::EndUserSpec::EndUserMetaData
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1beta::AnswerQueryRequest::EndUserSpec::EndUserMetaData
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1beta/conversational_search_service.rb
Overview
End user metadata.
Defined Under Namespace
Classes: ChunkInfo
Instance Attribute Summary collapse
-
#chunk_info ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::AnswerQueryRequest::EndUserSpec::EndUserMetaData::ChunkInfo
Chunk information.
Instance Attribute Details
#chunk_info ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::AnswerQueryRequest::EndUserSpec::EndUserMetaData::ChunkInfo
Returns Chunk information.
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 |
# File 'proto_docs/google/cloud/discoveryengine/v1beta/conversational_search_service.rb', line 826 class EndUserMetaData include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Chunk information. # @!attribute [rw] content # @return [::String] # Chunk textual content. It is limited to 8000 characters. # @!attribute [rw] document_metadata # @return [::Google::Cloud::DiscoveryEngine::V1beta::AnswerQueryRequest::EndUserSpec::EndUserMetaData::ChunkInfo::DocumentMetadata] # Metadata of the document from the current chunk. class ChunkInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Document metadata contains the information of the document of # the current chunk. # @!attribute [rw] title # @return [::String] # Title of the document. class DocumentMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end |