Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition

Inherits:
Object
  • Object
show all
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

Overview

A transition coverage in a transition route group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition

Returns a new instance of GoogleCloudDialogflowCxV3beta1TransitionRouteGroupCoverageCoverageTransition.



13474
13475
13476
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13474

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#coveredBoolean Also known as: covered?

Whether the transition route is covered by at least one of the agent's test cases. Corresponds to the JSON property covered

Returns:

  • (Boolean)


13460
13461
13462
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13460

def covered
  @covered
end

#transition_routeGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute

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



13472
13473
13474
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13472

def transition_route
  @transition_route
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13479
13480
13481
13482
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13479

def update!(**args)
  @covered = args[:covered] if args.key?(:covered)
  @transition_route = args[:transition_route] if args.key?(:transition_route)
end