Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillIntentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#match ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Match
Corresponds to the JSON property
match. -
#match_intent_request ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest
Corresponds to the JSON property
matchIntentRequest. -
#output_audio_config ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3OutputAudioConfig
Corresponds to the JSON property
outputAudioConfig.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FulfillIntentRequest
constructor
A new instance of GoogleCloudDialogflowCxV3FulfillIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FulfillIntentRequest
Returns a new instance of GoogleCloudDialogflowCxV3FulfillIntentRequest.
3288 3289 3290 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3288 def initialize(**args) update!(**args) end |
Instance Attribute Details
#match ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Match
Corresponds to the JSON property match
3276 3277 3278 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3276 def match @match end |
#match_intent_request ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest
Corresponds to the JSON property matchIntentRequest
3281 3282 3283 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3281 def match_intent_request @match_intent_request end |
#output_audio_config ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3OutputAudioConfig
Corresponds to the JSON property outputAudioConfig
3286 3287 3288 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3286 def output_audio_config @output_audio_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3293 3294 3295 3296 3297 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3293 def update!(**args) @match = args[:match] if args.key?(:match) @match_intent_request = args[:match_intent_request] if args.key?(:match_intent_request) @output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config) end |