class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ValidationError
Represents a single validation error.
Attributes
The names of the entries that the error is associated with. Format: - “ projects//agent”, if the error is associated with the entire agent. - “ projects//agent/intents/”, if the error is associated with certain intents. - “ projects//agent/intents//trainingPhrases/”, if the error is associated with certain intent training phrases. - “projects//agent/intents//parameters/”, if the error is associated with certain intent parameters. - “projects//agent/ entities/”, if the error is associated with certain entities. Corresponds to the JSON property `entries` @return [Array<String>]
The detailed error message. Corresponds to the JSON property `errorMessage` @return [String]
The severity of the error. Corresponds to the JSON property `severity` @return [String]
Public Class Methods
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 14248 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 14253 def update!(**args) @entries = args[:entries] if args.key?(:entries) @error_message = args[:error_message] if args.key?(:error_message) @severity = args[:severity] if args.key?(:severity) end