Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransition
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransition
- 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
Instance Attribute Summary collapse
-
#covered ⇒ Boolean
(also: #covered?)
Corresponds to the JSON property
covered. -
#event_handler ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler
Corresponds to the JSON property
eventHandler. -
#index ⇒ Fixnum
Corresponds to the JSON property
index. -
#source ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
Corresponds to the JSON property
source. -
#target ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
Corresponds to the JSON property
target. -
#transition_route ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute
Corresponds to the JSON property
transitionRoute.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionCoverageTransition
constructor
A new instance of GoogleCloudDialogflowCxV3TransitionCoverageTransition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionCoverageTransition
Returns a new instance of GoogleCloudDialogflowCxV3TransitionCoverageTransition.
8595 8596 8597 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#covered ⇒ Boolean Also known as: covered?
Corresponds to the JSON property covered
8567 8568 8569 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8567 def covered @covered end |
#event_handler ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler
Corresponds to the JSON property eventHandler
8573 8574 8575 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8573 def event_handler @event_handler end |
#index ⇒ Fixnum
Corresponds to the JSON property index
8578 8579 8580 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8578 def index @index end |
#source ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
Corresponds to the JSON property source
8583 8584 8585 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8583 def source @source end |
#target ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode
Corresponds to the JSON property target
8588 8589 8590 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8588 def target @target end |
#transition_route ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute
Corresponds to the JSON property transitionRoute
8593 8594 8595 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8593 def transition_route @transition_route end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8600 8601 8602 8603 8604 8605 8606 8607 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8600 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 |