Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb

Overview

Snippet Source for a Generative Prediction.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet

Returns a new instance of GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSourceSnippet.



17025
17026
17027
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17025

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#textString

Text taken from that URI. Corresponds to the JSON property text

Returns:

  • (String)


17013
17014
17015
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17013

def text
  @text
end

#titleString

Title of the document. Corresponds to the JSON property title

Returns:

  • (String)


17018
17019
17020
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17018

def title
  @title
end

#uriString

URI the data is sourced from. Corresponds to the JSON property uri

Returns:

  • (String)


17023
17024
17025
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17023

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17030
17031
17032
17033
17034
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17030

def update!(**args)
  @text = args[:text] if args.key?(:text)
  @title = args[:title] if args.key?(:title)
  @uri = args[:uri] if args.key?(:uri)
end