Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Fulfillment
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Fulfillment
- 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
-
#advanced_settings ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings
Corresponds to the JSON property
advancedSettings. -
#code_block_function ⇒ String
Corresponds to the JSON property
codeBlockFunction. -
#conditional_cases ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>
Corresponds to the JSON property
conditionalCases. -
#enable_generative_fallback ⇒ Boolean
(also: #enable_generative_fallback?)
Corresponds to the JSON property
enableGenerativeFallback. -
#generators ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>
Corresponds to the JSON property
generators. -
#messages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage>
Corresponds to the JSON property
messages. -
#return_partial_responses ⇒ Boolean
(also: #return_partial_responses?)
Corresponds to the JSON property
returnPartialResponses. -
#set_parameter_actions ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>
Corresponds to the JSON property
setParameterActions. -
#tag ⇒ String
Corresponds to the JSON property
tag. -
#webhook ⇒ String
Corresponds to the JSON property
webhook.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Fulfillment
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Fulfillment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Fulfillment
Returns a new instance of GoogleCloudDialogflowCxV3beta1Fulfillment.
10791 10792 10793 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10791 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advanced_settings ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings
Corresponds to the JSON property advancedSettings
10742 10743 10744 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10742 def advanced_settings @advanced_settings end |
#code_block_function ⇒ String
Corresponds to the JSON property codeBlockFunction
10747 10748 10749 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10747 def code_block_function @code_block_function end |
#conditional_cases ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentConditionalCases>
Corresponds to the JSON property conditionalCases
10752 10753 10754 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10752 def conditional_cases @conditional_cases end |
#enable_generative_fallback ⇒ Boolean Also known as: enable_generative_fallback?
Corresponds to the JSON property enableGenerativeFallback
10757 10758 10759 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10757 def enable_generative_fallback @enable_generative_fallback end |
#generators ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentGeneratorSettings>
Corresponds to the JSON property generators
10763 10764 10765 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10763 def generators @generators end |
#messages ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage>
Corresponds to the JSON property messages
10768 10769 10770 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10768 def @messages end |
#return_partial_responses ⇒ Boolean Also known as: return_partial_responses?
Corresponds to the JSON property returnPartialResponses
10773 10774 10775 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10773 def return_partial_responses @return_partial_responses end |
#set_parameter_actions ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1FulfillmentSetParameterAction>
Corresponds to the JSON property setParameterActions
10779 10780 10781 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10779 def set_parameter_actions @set_parameter_actions end |
#tag ⇒ String
Corresponds to the JSON property tag
10784 10785 10786 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10784 def tag @tag end |
#webhook ⇒ String
Corresponds to the JSON property webhook
10789 10790 10791 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10789 def webhook @webhook end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10796 def update!(**args) @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings) @code_block_function = args[:code_block_function] if args.key?(:code_block_function) @conditional_cases = args[:conditional_cases] if args.key?(:conditional_cases) @enable_generative_fallback = args[:enable_generative_fallback] if args.key?(:enable_generative_fallback) @generators = args[:generators] if args.key?(:generators) @messages = args[:messages] if args.key?(:messages) @return_partial_responses = args[:return_partial_responses] if args.key?(:return_partial_responses) @set_parameter_actions = args[:set_parameter_actions] if args.key?(:set_parameter_actions) @tag = args[:tag] if args.key?(:tag) @webhook = args[:webhook] if args.key?(:webhook) end |