Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolVersion
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolVersion
- 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. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#name ⇒ String
Corresponds to the JSON property
name. -
#tool ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Tool
Corresponds to the JSON property
tool. -
#update_time ⇒ String
Corresponds to the JSON property
updateTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolVersion
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ToolVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ToolVersion
Returns a new instance of GoogleCloudDialogflowCxV3beta1ToolVersion.
13219 13220 13221 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
13197 13198 13199 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13197 def create_time @create_time end |
#display_name ⇒ String
Corresponds to the JSON property displayName
13202 13203 13204 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13202 def display_name @display_name end |
#name ⇒ String
Corresponds to the JSON property name
13207 13208 13209 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13207 def name @name end |
#tool ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Tool
Corresponds to the JSON property tool
13212 13213 13214 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13212 def tool @tool end |
#update_time ⇒ String
Corresponds to the JSON property updateTime
13217 13218 13219 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13217 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13224 13225 13226 13227 13228 13229 13230 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13224 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @tool = args[:tool] if args.key?(:tool) @update_time = args[:update_time] if args.key?(:update_time) end |