Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition
- 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. -
#input_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
inputActionParameters. -
#playbook ⇒ String
Corresponds to the JSON property
playbook.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PlaybookTransition
constructor
A new instance of GoogleCloudDialogflowCxV3beta1PlaybookTransition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PlaybookTransition
Returns a new instance of GoogleCloudDialogflowCxV3beta1PlaybookTransition.
10508 10509 10510 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10508 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
10496 10497 10498 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10496 def display_name @display_name end |
#input_action_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property inputActionParameters
10501 10502 10503 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10501 def input_action_parameters @input_action_parameters end |
#playbook ⇒ String
Corresponds to the JSON property playbook
10506 10507 10508 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10506 def playbook @playbook end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10513 10514 10515 10516 10517 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10513 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @input_action_parameters = args[:input_action_parameters] if args.key?(:input_action_parameters) @playbook = args[:playbook] if args.key?(:playbook) end |