Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page

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) ⇒ GoogleCloudDialogflowCxV3Page

Returns a new instance of GoogleCloudDialogflowCxV3Page.



5592
5593
5594
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5592

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettings

Corresponds to the JSON property advancedSettings



5545
5546
5547
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5545

def advanced_settings
  @advanced_settings
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


5550
5551
5552
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5550

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


5555
5556
5557
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5555

def display_name
  @display_name
end

#entry_fulfillmentGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment

Corresponds to the JSON property entryFulfillment



5560
5561
5562
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5560

def entry_fulfillment
  @entry_fulfillment
end

#event_handlersArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler>

Corresponds to the JSON property eventHandlers



5565
5566
5567
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5565

def event_handlers
  @event_handlers
end

#formGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Form

Corresponds to the JSON property form



5570
5571
5572
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5570

def form
  @form
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings

Corresponds to the JSON property knowledgeConnectorSettings



5575
5576
5577
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5575

def knowledge_connector_settings
  @knowledge_connector_settings
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


5580
5581
5582
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5580

def name
  @name
end

#transition_route_groupsArray<String>

Corresponds to the JSON property transitionRouteGroups

Returns:

  • (Array<String>)


5585
5586
5587
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5585

def transition_route_groups
  @transition_route_groups
end

#transition_routesArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute>

Corresponds to the JSON property transitionRoutes



5590
5591
5592
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5590

def transition_routes
  @transition_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5597

def update!(**args)
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @entry_fulfillment = args[:entry_fulfillment] if args.key?(:entry_fulfillment)
  @event_handlers = args[:event_handlers] if args.key?(:event_handlers)
  @form = args[:form] if args.key?(:form)
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
  @name = args[:name] if args.key?(:name)
  @transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
  @transition_routes = args[:transition_routes] if args.key?(:transition_routes)
end