Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Page

Returns a new instance of GoogleCloudDialogflowCxV3beta1Page.



9993
9994
9995
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9993

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

Instance Attribute Details

#advanced_settingsGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Corresponds to the JSON property advancedSettings



9946
9947
9948
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9946

def advanced_settings
  @advanced_settings
end

#descriptionString

Corresponds to the JSON property description

Returns:

  • (String)


9951
9952
9953
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9951

def description
  @description
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


9956
9957
9958
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9956

def display_name
  @display_name
end

#entry_fulfillmentGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Fulfillment

Corresponds to the JSON property entryFulfillment



9961
9962
9963
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9961

def entry_fulfillment
  @entry_fulfillment
end

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

Corresponds to the JSON property eventHandlers



9966
9967
9968
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9966

def event_handlers
  @event_handlers
end

#formGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Form

Corresponds to the JSON property form



9971
9972
9973
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9971

def form
  @form
end

#knowledge_connector_settingsGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings

Corresponds to the JSON property knowledgeConnectorSettings



9976
9977
9978
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9976

def knowledge_connector_settings
  @knowledge_connector_settings
end

#nameString

Corresponds to the JSON property name

Returns:

  • (String)


9981
9982
9983
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9981

def name
  @name
end

#transition_route_groupsArray<String>

Corresponds to the JSON property transitionRouteGroups

Returns:

  • (Array<String>)


9986
9987
9988
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9986

def transition_route_groups
  @transition_route_groups
end

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

Corresponds to the JSON property transitionRoutes



9991
9992
9993
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9991

def transition_routes
  @transition_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9998
9999
10000
10001
10002
10003
10004
10005
10006
10007
10008
10009
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9998

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