Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Version
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Version
- 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
-
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#description ⇒ String
Corresponds to the JSON property
description. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#name ⇒ String
Corresponds to the JSON property
name. -
#nlu_settings ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings
Corresponds to the JSON property
nluSettings. -
#state ⇒ String
Corresponds to the JSON property
state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Version
constructor
A new instance of GoogleCloudDialogflowCxV3beta1Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1Version
Returns a new instance of GoogleCloudDialogflowCxV3beta1Version.
13882 13883 13884 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13882 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
13855 13856 13857 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13855 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
13860 13861 13862 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13860 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
13865 13866 13867 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13865 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
13870 13871 13872 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13870 def name @name end |
#nlu_settings ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings
Corresponds to the JSON property nluSettings
13875 13876 13877 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13875 def nlu_settings @nlu_settings end |
#state ⇒ String
Corresponds to the JSON property state
13880 13881 13882 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13880 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13887 13888 13889 13890 13891 13892 13893 13894 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13887 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings) @state = args[:state] if args.key?(:state) end |