Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Page

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

Returns a new instance of GoogleCloudDialogflowCxV3beta1Page.



11538
11539
11540
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11538

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Corresponds to the JSON property advancedSettings



11491
11492
11493
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11491

def advanced_settings
  @advanced_settings
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


11496
11497
11498
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11496

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


11501
11502
11503
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11501

def display_name
  @display_name
end

#entry_fulfillmentGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Fulfillment

Corresponds to the JSON property entryFulfillment



11506
11507
11508
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11506

def entry_fulfillment
  @entry_fulfillment
end

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

Corresponds to the JSON property eventHandlers



11511
11512
11513
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11511

def event_handlers
  @event_handlers
end

#formGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Form

Corresponds to the JSON property form



11516
11517
11518
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11516

def form
  @form
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

Corresponds to the JSON property knowledgeConnectorSettings



11521
11522
11523
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11521

def knowledge_connector_settings
  @knowledge_connector_settings
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


11526
11527
11528
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11526

def name
  @name
end

#transition_route_groupsArray<String>

Corresponds to the JSON property transitionRouteGroups

Returns:

  • (Array<String>)


11531
11532
11533
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11531

def transition_route_groups
  @transition_route_groups
end

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

Corresponds to the JSON property transitionRoutes



11536
11537
11538
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11536

def transition_routes
  @transition_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11543
11544
11545
11546
11547
11548
11549
11550
11551
11552
11553
11554
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 11543

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