class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentValidationResult
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::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult>]
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_v3/classes.rb, line 201 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_v3/classes.rb, line 206 def update!(**args) @flow_validation_results = args[:flow_validation_results] if args.key?(:flow_validation_results) @name = args[:name] if args.key?(:name) end