Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage
- 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
Overview
Agent/flow validation message.
Instance Attribute Summary collapse
-
#detail ⇒ String
The message detail.
-
#resource_names ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResourceName>
The resource names of the resources where the message is found.
-
#resource_type ⇒ String
The type of the resources where the message is found.
-
#resources ⇒ Array<String>
The names of the resources where the message is found.
-
#severity ⇒ String
Indicates the severity of the message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ValidationMessage
constructor
A new instance of GoogleCloudDialogflowCxV3ValidationMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ValidationMessage
Returns a new instance of GoogleCloudDialogflowCxV3ValidationMessage.
5309 5310 5311 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5309 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detail ⇒ String
The message detail.
Corresponds to the JSON property detail
5287 5288 5289 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5287 def detail @detail end |
#resource_names ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResourceName>
The resource names of the resources where the message is found.
Corresponds to the JSON property resourceNames
5292 5293 5294 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5292 def resource_names @resource_names end |
#resource_type ⇒ String
The type of the resources where the message is found.
Corresponds to the JSON property resourceType
5297 5298 5299 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5297 def resource_type @resource_type end |
#resources ⇒ Array<String>
The names of the resources where the message is found.
Corresponds to the JSON property resources
5302 5303 5304 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5302 def resources @resources end |
#severity ⇒ String
Indicates the severity of the message.
Corresponds to the JSON property severity
5307 5308 5309 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5307 def severity @severity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5314 5315 5316 5317 5318 5319 5320 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5314 def update!(**args) @detail = args[:detail] if args.key?(:detail) @resource_names = args[:resource_names] if args.key?(:resource_names) @resource_type = args[:resource_type] if args.key?(:resource_type) @resources = args[:resources] if args.key?(:resources) @severity = args[:severity] if args.key?(:severity) end |