class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentValidationResult
The response message for Agents.GetAgentValidationResult.
Attributes
flow_validation_results[RW]
Contains all flow validation results. Corresponds to the JSON property `flowValidationResults` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowValidationResult>]
name[RW]
The unique identifier of the agent validation result. Format: `projects// locations//agents//validationResult`. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 2742 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 2747 def update!(**args) @flow_validation_results = args[:flow_validation_results] if args.key?(:flow_validation_results) @name = args[:name] if args.key?(:name) end