class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup
An TransitionRouteGroup represents a group of `TransitionRoutes` to be used by a Page.
Attributes
Required. The human-readable name of the transition route group, unique within the Agent. The display name can be no longer than 30 characters. Corresponds to the JSON property `displayName` @return [String]
The unique identifier of the transition route group. TransitionRouteGroups. CreateTransitionRouteGroup populates the name automatically. Format: `projects/ /locations//agents//flows//transitionRouteGroups/`. Corresponds to the JSON property `name` @return [String]
Transition routes associated with the TransitionRouteGroup. Corresponds to the JSON property `transitionRoutes` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute>]
Public Class Methods
# File lib/google/apis/dialogflow_v3/classes.rb, line 5117 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 5122 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