class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup

An TransitionRouteGroup represents a group of `TransitionRoutes` to be used by a Page.

Attributes

display_name[RW]

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]

name[RW]

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[RW]

Transition routes associated with the TransitionRouteGroup. Corresponds to the JSON property `transitionRoutes` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 7658
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 7663
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