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.



7486
7487
7488
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7486

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)


7472
7473
7474
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7472

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



7484
7485
7486
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7484

def transition_route
  @transition_route
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7491
7492
7493
7494
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7491

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