Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation
- 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
Instance Attribute Summary collapse
-
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#flow ⇒ String
Corresponds to the JSON property
flow. -
#flow_state ⇒ String
Corresponds to the JSON property
flowState. -
#input_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
inputActionParameters. -
#output_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
outputActionParameters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1FlowInvocation
constructor
A new instance of GoogleCloudDialogflowCxV3beta1FlowInvocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1FlowInvocation
Returns a new instance of GoogleCloudDialogflowCxV3beta1FlowInvocation.
7218 7219 7220 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7218 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
7196 7197 7198 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7196 def display_name @display_name end |
#flow ⇒ String
Corresponds to the JSON property flow
7201 7202 7203 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7201 def flow @flow end |
#flow_state ⇒ String
Corresponds to the JSON property flowState
7206 7207 7208 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7206 def flow_state @flow_state end |
#input_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property inputActionParameters
7211 7212 7213 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7211 def input_action_parameters @input_action_parameters end |
#output_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property outputActionParameters
7216 7217 7218 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7216 def output_action_parameters @output_action_parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7223 7224 7225 7226 7227 7228 7229 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7223 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @flow = args[:flow] if args.key?(:flow) @flow_state = args[:flow_state] if args.key?(:flow_state) @input_action_parameters = args[:input_action_parameters] if args.key?(:input_action_parameters) @output_action_parameters = args[:output_action_parameters] if args.key?(:output_action_parameters) end |