Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

A transition coverage in a transition route group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition

Returns a new instance of GoogleCloudDialogflowCxV3TransitionRouteGroupCoverageCoverageTransition.



7260
7261
7262
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7260

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)


7246
7247
7248
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7246

def covered
  @covered
end

#transition_routeGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute

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



7258
7259
7260
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7258

def transition_route
  @transition_route
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7265
7266
7267
7268
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7265

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