Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Page
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Page
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#advanced_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings
Corresponds to the JSON property
advancedSettings. -
#description ⇒ String
Corresponds to the JSON property
description. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#entry_fulfillment ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Fulfillment
Corresponds to the JSON property
entryFulfillment. -
#event_handlers ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EventHandler>
Corresponds to the JSON property
eventHandlers. -
#form ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Form
Corresponds to the JSON property
form. -
#knowledge_connector_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
Corresponds to the JSON property
knowledgeConnectorSettings. -
#name ⇒ String
Corresponds to the JSON property
name. -
#transition_route_groups ⇒ Array<String>
Corresponds to the JSON property
transitionRouteGroups. -
#transition_routes ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>
Corresponds to the JSON property
transitionRoutes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Page
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Page.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Page
Returns a new instance of GoogleCloudDialogflowCxV3beta1Page.
5195 5196 5197 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5195 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advanced_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings
Corresponds to the JSON property advancedSettings
5148 5149 5150 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5148 def advanced_settings @advanced_settings end |
#description ⇒ String
Corresponds to the JSON property description
5153 5154 5155 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5153 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
5158 5159 5160 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5158 def display_name @display_name end |
#entry_fulfillment ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Fulfillment
Corresponds to the JSON property entryFulfillment
5163 5164 5165 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5163 def entry_fulfillment @entry_fulfillment end |
#event_handlers ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EventHandler>
Corresponds to the JSON property eventHandlers
5168 5169 5170 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5168 def event_handlers @event_handlers end |
#form ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Form
Corresponds to the JSON property form
5173 5174 5175 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5173 def form @form end |
#knowledge_connector_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings
Corresponds to the JSON property knowledgeConnectorSettings
5178 5179 5180 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5178 def knowledge_connector_settings @knowledge_connector_settings end |
#name ⇒ String
Corresponds to the JSON property name
5183 5184 5185 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5183 def name @name end |
#transition_route_groups ⇒ Array<String>
Corresponds to the JSON property transitionRouteGroups
5188 5189 5190 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5188 def transition_route_groups @transition_route_groups end |
#transition_routes ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>
Corresponds to the JSON property transitionRoutes
5193 5194 5195 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5193 def transition_routes @transition_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5200 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 |