Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitation
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Citation info for a segment.
Instance Attribute Summary collapse
-
#end_index ⇒ Fixnum
End of the attributed segment, exclusive.
-
#sources ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitationSource>
Citation sources for the attributed segment.
-
#start_index ⇒ Fixnum
Index indicates the start of the segment, measured in bytes (UTF-8 unicode).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAnswerCitation
constructor
A new instance of GoogleCloudDiscoveryengineV1betaAnswerCitation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAnswerCitation
Returns a new instance of GoogleCloudDiscoveryengineV1betaAnswerCitation.
4718 4719 4720 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_index ⇒ Fixnum
End of the attributed segment, exclusive.
Corresponds to the JSON property endIndex
4706 4707 4708 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4706 def end_index @end_index end |
#sources ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitationSource>
Citation sources for the attributed segment.
Corresponds to the JSON property sources
4711 4712 4713 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4711 def sources @sources end |
#start_index ⇒ Fixnum
Index indicates the start of the segment, measured in bytes (UTF-8 unicode).
Corresponds to the JSON property startIndex
4716 4717 4718 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4716 def start_index @start_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4723 4724 4725 4726 4727 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4723 def update!(**args) @end_index = args[:end_index] if args.key?(:end_index) @sources = args[:sources] if args.key?(:sources) @start_index = args[:start_index] if args.key?(:start_index) end |