class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowValidationResult
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::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ValidationMessage>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 4137 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 4142 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