Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Page

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

Returns a new instance of GoogleCloudDialogflowCxV3Page.



1839
1840
1841
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1839

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettings

Corresponds to the JSON property advancedSettings



1792
1793
1794
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1792

def advanced_settings
  @advanced_settings
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


1797
1798
1799
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1797

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


1802
1803
1804
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1802

def display_name
  @display_name
end

#entry_fulfillmentGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Fulfillment

Corresponds to the JSON property entryFulfillment



1807
1808
1809
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1807

def entry_fulfillment
  @entry_fulfillment
end

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

Corresponds to the JSON property eventHandlers



1812
1813
1814
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1812

def event_handlers
  @event_handlers
end

#formGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Form

Corresponds to the JSON property form



1817
1818
1819
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1817

def form
  @form
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings

Corresponds to the JSON property knowledgeConnectorSettings



1822
1823
1824
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1822

def knowledge_connector_settings
  @knowledge_connector_settings
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


1827
1828
1829
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1827

def name
  @name
end

#transition_route_groupsArray<String>

Corresponds to the JSON property transitionRouteGroups

Returns:

  • (Array<String>)


1832
1833
1834
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1832

def transition_route_groups
  @transition_route_groups
end

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

Corresponds to the JSON property transitionRoutes



1837
1838
1839
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1837

def transition_routes
  @transition_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1844

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