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.
13487 13488 13489 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13487 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Corresponds to the JSON property displayName
13475 13476 13477 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13475 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
13480 13481 13482 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13480 def name @name end |
#transition_routes ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>
Corresponds to the JSON property transitionRoutes
13485 13486 13487 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13485 def transition_routes @transition_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13492 13493 13494 13495 13496 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13492 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 |