Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransition

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TransitionCoverageTransition

Returns a new instance of GoogleCloudDialogflowCxV3TransitionCoverageTransition.



8601
8602
8603
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8601

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

Instance Attribute Details

#coveredBoolean Also known as: covered?

Corresponds to the JSON property covered

Returns:

  • (Boolean)


8573
8574
8575
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8573

def covered
  @covered
end

#event_handlerGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler

Corresponds to the JSON property eventHandler



8579
8580
8581
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8579

def event_handler
  @event_handler
end

#indexFixnum

Corresponds to the JSON property index

Returns:

  • (Fixnum)


8584
8585
8586
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8584

def index
  @index
end

#sourceGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode

Corresponds to the JSON property source



8589
8590
8591
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8589

def source
  @source
end

#targetGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode

Corresponds to the JSON property target



8594
8595
8596
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8594

def target
  @target
end

#transition_routeGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute

Corresponds to the JSON property transitionRoute



8599
8600
8601
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8599

def transition_route
  @transition_route
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8606
8607
8608
8609
8610
8611
8612
8613
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 8606

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