Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition
- 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
Instance Attribute Summary collapse
-
#covered ⇒ Boolean
(also: #covered?)
Corresponds to the JSON property
covered. -
#event_handler ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler
Corresponds to the JSON property
eventHandler. -
#index ⇒ Fixnum
Corresponds to the JSON property
index. -
#source ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode
Corresponds to the JSON property
source. -
#target ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode
Corresponds to the JSON property
target. -
#transition_route ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute
Corresponds to the JSON property
transitionRoute.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition
constructor
A new instance of GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition
Returns a new instance of GoogleCloudDialogflowCxV3beta1TransitionCoverageTransition.
13373 13374 13375 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13373 def initialize(**args) update!(**args) end |
Instance Attribute Details
#covered ⇒ Boolean Also known as: covered?
Corresponds to the JSON property covered
13345 13346 13347 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13345 def covered @covered end |
#event_handler ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler
Corresponds to the JSON property eventHandler
13351 13352 13353 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13351 def event_handler @event_handler end |
#index ⇒ Fixnum
Corresponds to the JSON property index
13356 13357 13358 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13356 def index @index end |
#source ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode
Corresponds to the JSON property source
13361 13362 13363 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13361 def source @source end |
#target ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionCoverageTransitionNode
Corresponds to the JSON property target
13366 13367 13368 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13366 def target @target end |
#transition_route ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute
Corresponds to the JSON property transitionRoute
13371 13372 13373 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13371 def transition_route @transition_route end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13378 13379 13380 13381 13382 13383 13384 13385 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13378 def update!(**args) @covered = args[:covered] if args.key?(:covered) @event_handler = args[:event_handler] if args.key?(:event_handler) @index = args[:index] if args.key?(:index) @source = args[:source] if args.key?(:source) @target = args[:target] if args.key?(:target) @transition_route = args[:transition_route] if args.key?(:transition_route) end |