Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FulfillIntentRequest

Inherits:
Object
  • Object
show all
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

Overview

Request of FulfillIntent

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3FulfillIntentRequest

Returns a new instance of GoogleCloudDialogflowCxV3FulfillIntentRequest.



1538
1539
1540
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1538

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

Instance Attribute Details

#matchGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Match

Represents one match result of MatchIntent. Corresponds to the JSON property match



1526
1527
1528
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1526

def match
  @match
end

#match_intent_requestGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest

Request of MatchIntent. Corresponds to the JSON property matchIntentRequest



1531
1532
1533
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1531

def match_intent_request
  @match_intent_request
end

#output_audio_configGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3OutputAudioConfig

Instructs the speech synthesizer how to generate the output audio content. Corresponds to the JSON property outputAudioConfig



1536
1537
1538
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1536

def output_audio_config
  @output_audio_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1543
1544
1545
1546
1547
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1543

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