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.
9091 9092 9093 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9091 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
9064 9065 9066 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9064 def create_time @create_time end |
#description ⇒ String
Corresponds to the JSON property description
9069 9070 9071 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9069 def description @description end |
#display_name ⇒ String
Corresponds to the JSON property displayName
9074 9075 9076 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9074 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
9079 9080 9081 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9079 def name @name end |
#nlu_settings ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings
Corresponds to the JSON property nluSettings
9084 9085 9086 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9084 def nlu_settings @nlu_settings end |
#state ⇒ String
Corresponds to the JSON property state
9089 9090 9091 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9089 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9096 9097 9098 9099 9100 9101 9102 9103 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9096 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 |