Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup
- 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. -
#name ⇒ String
Corresponds to the JSON property
name. -
#transition_routes ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>
Corresponds to the JSON property
transitionRoutes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionRouteGroup
constructor
A new instance of GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionRouteGroup
Returns a new instance of GoogleCloudDialogflowCxV3beta1TransitionRouteGroup.
13499 13500 13501 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13499 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
13487 13488 13489 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13487 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
13492 13493 13494 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13492 def name @name end |
#transition_routes ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>
Corresponds to the JSON property transitionRoutes
13497 13498 13499 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13497 def transition_routes @transition_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13504 13505 13506 13507 13508 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13504 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @transition_routes = args[:transition_routes] if args.key?(:transition_routes) end |