Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswer
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswer
- 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
Defines an answer.
Instance Attribute Summary collapse
-
#answer_skipped_reasons ⇒ Array<String>
Additional answer-skipped reasons.
-
#answer_text ⇒ String
The textual answer.
-
#citations ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitation>
Citations.
-
#complete_time ⇒ String
Output only.
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Immutable.
-
#query_understanding_info ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryUnderstandingInfo
Query understanding information.
-
#references ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerReference>
References.
-
#related_questions ⇒ Array<String>
Suggested related questions.
-
#state ⇒ String
The state of the answer generation.
-
#steps ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerStep>
Answer generation steps.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAnswer
constructor
A new instance of GoogleCloudDiscoveryengineV1betaAnswer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAnswer
Returns a new instance of GoogleCloudDiscoveryengineV1betaAnswer.
5534 5535 5536 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5534 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_skipped_reasons ⇒ Array<String>
Additional answer-skipped reasons. This provides the reason for ignored cases.
If nothing is skipped, this field is not set.
Corresponds to the JSON property answerSkippedReasons
5481 5482 5483 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5481 def answer_skipped_reasons @answer_skipped_reasons end |
#answer_text ⇒ String
The textual answer.
Corresponds to the JSON property answerText
5486 5487 5488 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5486 def answer_text @answer_text end |
#citations ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerCitation>
Citations.
Corresponds to the JSON property citations
5491 5492 5493 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5491 def citations @citations end |
#complete_time ⇒ String
Output only. Answer completed timestamp.
Corresponds to the JSON property completeTime
5496 5497 5498 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5496 def complete_time @complete_time end |
#create_time ⇒ String
Output only. Answer creation timestamp.
Corresponds to the JSON property createTime
5501 5502 5503 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5501 def create_time @create_time end |
#name ⇒ String
Immutable. Fully qualified name projects/project/locations/global/
collections/collection/engines/engine/sessions/*/answers/*
Corresponds to the JSON property name
5507 5508 5509 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5507 def name @name end |
#query_understanding_info ⇒ Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryUnderstandingInfo
Query understanding information.
Corresponds to the JSON property queryUnderstandingInfo
5512 5513 5514 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5512 def query_understanding_info @query_understanding_info end |
#references ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerReference>
References.
Corresponds to the JSON property references
5517 5518 5519 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5517 def references @references end |
#related_questions ⇒ Array<String>
Suggested related questions.
Corresponds to the JSON property relatedQuestions
5522 5523 5524 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5522 def @related_questions end |
#state ⇒ String
The state of the answer generation.
Corresponds to the JSON property state
5527 5528 5529 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5527 def state @state end |
#steps ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerStep>
Answer generation steps.
Corresponds to the JSON property steps
5532 5533 5534 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5532 def steps @steps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5539 def update!(**args) @answer_skipped_reasons = args[:answer_skipped_reasons] if args.key?(:answer_skipped_reasons) @answer_text = args[:answer_text] if args.key?(:answer_text) @citations = args[:citations] if args.key?(:citations) @complete_time = args[:complete_time] if args.key?(:complete_time) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @query_understanding_info = args[:query_understanding_info] if args.key?(:query_understanding_info) @references = args[:references] if args.key?(:references) @related_questions = args[:related_questions] if args.key?(:related_questions) @state = args[:state] if args.key?(:state) @steps = args[:steps] if args.key?(:steps) end |