class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition

A transition coverage in a transition route group.

Attributes

covered[RW]

Whether or not the transition route is covered by at least one of the agent's test cases. Corresponds to the JSON property `covered` @return [Boolean]

covered?[RW]

Whether or not the transition route is covered by at least one of the agent's test cases. Corresponds to the JSON property `covered` @return [Boolean]

transition_route[RW]

A transition route specifies a intent that can be matched and/or a data condition that can be evaluated during a session. When a specified transition is matched, the following actions are taken in order: * If there is a ` trigger_fulfillment` associated with the transition, it will be called. * If there is a `target_page` associated with the transition, the session will transition into the specified page. * If there is a `target_flow` associated with the transition, the session will transition into the specified flow. Corresponds to the JSON property `transitionRoute` @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 5212
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_v3/classes.rb, line 5217
def update!(**args)
  @covered = args[:covered] if args.key?(:covered)
  @transition_route = args[:transition_route] if args.key?(:transition_route)
end