Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Page

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Page

Returns a new instance of GoogleCloudDialogflowCxV3beta1Page.



5207
5208
5209
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5207

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Corresponds to the JSON property advancedSettings



5160
5161
5162
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5160

def advanced_settings
  @advanced_settings
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


5165
5166
5167
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5165

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


5170
5171
5172
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5170

def display_name
  @display_name
end

#entry_fulfillmentGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Fulfillment

Corresponds to the JSON property entryFulfillment



5175
5176
5177
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5175

def entry_fulfillment
  @entry_fulfillment
end

#event_handlersArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1EventHandler>

Corresponds to the JSON property eventHandlers



5180
5181
5182
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5180

def event_handlers
  @event_handlers
end

#formGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1Form

Corresponds to the JSON property form



5185
5186
5187
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5185

def form
  @form
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

Corresponds to the JSON property knowledgeConnectorSettings



5190
5191
5192
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5190

def knowledge_connector_settings
  @knowledge_connector_settings
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


5195
5196
5197
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5195

def name
  @name
end

#transition_route_groupsArray<String>

Corresponds to the JSON property transitionRouteGroups

Returns:

  • (Array<String>)


5200
5201
5202
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5200

def transition_route_groups
  @transition_route_groups
end

#transition_routesArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute>

Corresponds to the JSON property transitionRoutes



5205
5206
5207
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5205

def transition_routes
  @transition_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 5212

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