Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentValidationResult

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AgentValidationResult

Returns a new instance of GoogleCloudDialogflowCxV3AgentValidationResult.



400
401
402
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 400

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#flow_validation_resultsArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult>

Contains all flow validation results. Corresponds to the JSON property flowValidationResults



392
393
394
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 392

def flow_validation_results
  @flow_validation_results
end

#nameString

The unique identifier of the agent validation result. Format: projects// locations//agents//validationResult. Corresponds to the JSON property name

Returns:

  • (String)


398
399
400
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 398

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



405
406
407
408
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 405

def update!(**args)
  @flow_validation_results = args[:flow_validation_results] if args.key?(:flow_validation_results)
  @name = args[:name] if args.key?(:name)
end