Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
The sources of the answers.
Instance Attribute Summary collapse
-
#snippet ⇒ String
The relevant snippet of the article.
-
#title ⇒ String
The title of the article.
-
#uri ⇒ String
The URI of the article.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource
constructor
A new instance of GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource
Returns a new instance of GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource.
13503 13504 13505 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13503 def initialize(**args) update!(**args) end |
Instance Attribute Details
#snippet ⇒ String
The relevant snippet of the article.
Corresponds to the JSON property snippet
13491 13492 13493 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13491 def snippet @snippet end |
#title ⇒ String
The title of the article.
Corresponds to the JSON property title
13496 13497 13498 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13496 def title @title end |
#uri ⇒ String
The URI of the article.
Corresponds to the JSON property uri
13501 13502 13503 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13501 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13508 13509 13510 13511 13512 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13508 def update!(**args) @snippet = args[:snippet] if args.key?(:snippet) @title = args[:title] if args.key?(:title) @uri = args[:uri] if args.key?(:uri) end |