Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IntentMessageText

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

Overview

The text response message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2IntentMessageText

Returns a new instance of GoogleCloudDialogflowV2IntentMessageText.



2307
2308
2309
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2307

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

Instance Attribute Details

#textArray<String>

Optional. The collection of the agent's responses. Corresponds to the JSON property text

Returns:

  • (Array<String>)


2305
2306
2307
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2305

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2312
2313
2314
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2312

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