Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentValidationResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentValidationResult
- 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
The response message for Agents.GetAgentValidationResult.
Instance Attribute Summary collapse
-
#flow_validation_results ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult>
Contains all flow validation results.
-
#name ⇒ String
The unique identifier of the agent validation result.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AgentValidationResult
constructor
A new instance of GoogleCloudDialogflowCxV3AgentValidationResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AgentValidationResult
Returns a new instance of GoogleCloudDialogflowCxV3AgentValidationResult.
547 548 549 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flow_validation_results ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult>
Contains all flow validation results.
Corresponds to the JSON property flowValidationResults
539 540 541 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 539 def flow_validation_results @flow_validation_results end |
#name ⇒ String
The unique identifier of the agent validation result. Format: projects//
locations//agents//validationResult
.
Corresponds to the JSON property name
545 546 547 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 545 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
552 553 554 555 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 552 def update!(**args) @flow_validation_results = args[:flow_validation_results] if args.key?(:flow_validation_results) @name = args[:name] if args.key?(:name) end |