Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Version
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Version
- 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
-
#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::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings
Corresponds to the JSON property
nluSettings. -
#state ⇒ String
Corresponds to the JSON property
state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Version
constructor
A new instance of GoogleCloudDialogflowCxV3Version.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Version
Returns a new instance of GoogleCloudDialogflowCxV3Version.
9097 9098 9099 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9097 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
9070 9071 9072 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9070 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
9075 9076 9077 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9075 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
9080 9081 9082 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9080 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
9085 9086 9087 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9085 def name @name end |
#nlu_settings ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings
Corresponds to the JSON property nluSettings
9090 9091 9092 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9090 def nlu_settings @nlu_settings end |
#state ⇒ String
Corresponds to the JSON property state
9095 9096 9097 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9095 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9102 9103 9104 9105 9106 9107 9108 9109 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9102 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 |