Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet

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

Overview

Search snippet details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet

Returns a new instance of GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet.



5776
5777
5778
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5776

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

Instance Attribute Details

#document_titleString

Title of the enclosing document. Corresponds to the JSON property documentTitle

Returns:

  • (String)


5764
5765
5766
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5764

def document_title
  @document_title
end

#document_uriString

Uri for the document. Present if specified for the document. Corresponds to the JSON property documentUri

Returns:

  • (String)


5769
5770
5771
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5769

def document_uri
  @document_uri
end

#textString

Text included in the prompt. Corresponds to the JSON property text

Returns:

  • (String)


5774
5775
5776
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5774

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5781
5782
5783
5784
5785
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5781

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