class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowValidationResult
The response message for Flows.GetFlowValidationResult.
Attributes
name[RW]
The unique identifier of the flow validation result. Format: `projects// locations//agents//flows//validationResult`. Corresponds to the JSON property `name` @return [String]
update_time[RW]
Last time the flow was validated. Corresponds to the JSON property `updateTime` @return [String]
validation_messages[RW]
Contains all validation messages. Corresponds to the JSON property `validationMessages` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1596 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 1601 def update!(**args) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) @validation_messages = args[:validation_messages] if args.key?(:validation_messages) end