Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Page
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Page
- 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::GoogleCloudDialogflowCxV3AdvancedSettings
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::GoogleCloudDialogflowCxV3Fulfillment
Corresponds to the JSON property
entryFulfillment. -
#event_handlers ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EventHandler>
Corresponds to the JSON property
eventHandlers. -
#form ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Form
Corresponds to the JSON property
form. -
#knowledge_connector_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings
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::GoogleCloudDialogflowCxV3TransitionRoute>
Corresponds to the JSON property
transitionRoutes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Page
constructor
A new instance of GoogleCloudDialogflowCxV3Page.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Page
Returns a new instance of GoogleCloudDialogflowCxV3Page.
1827 1828 1829 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1827 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advanced_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettings
Corresponds to the JSON property advancedSettings
1780 1781 1782 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1780 def advanced_settings @advanced_settings end |
#description ⇒ String
Corresponds to the JSON property description
1785 1786 1787 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1785 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
1790 1791 1792 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1790 def display_name @display_name end |
#entry_fulfillment ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Fulfillment
Corresponds to the JSON property entryFulfillment
1795 1796 1797 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1795 def entry_fulfillment @entry_fulfillment end |
#event_handlers ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3EventHandler>
Corresponds to the JSON property eventHandlers
1800 1801 1802 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1800 def event_handlers @event_handlers end |
#form ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Form
Corresponds to the JSON property form
1805 1806 1807 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1805 def form @form end |
#knowledge_connector_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings
Corresponds to the JSON property knowledgeConnectorSettings
1810 1811 1812 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1810 def knowledge_connector_settings @knowledge_connector_settings end |
#name ⇒ String
Corresponds to the JSON property name
1815 1816 1817 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1815 def name @name end |
#transition_route_groups ⇒ Array<String>
Corresponds to the JSON property transitionRouteGroups
1820 1821 1822 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1820 def transition_route_groups @transition_route_groups end |
#transition_routes ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TransitionRoute>
Corresponds to the JSON property transitionRoutes
1825 1826 1827 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1825 def transition_routes @transition_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1832 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 |