Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ValidationError

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb

Overview

Represents a single validation error.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ValidationError

Returns a new instance of GoogleCloudDialogflowV2beta1ValidationError.



6331
6332
6333
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 6331

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

Instance Attribute Details

#entriesArray<String>

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

Returns:

  • (Array<String>)


6319
6320
6321
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 6319

def entries
  @entries
end

#error_messageString

The detailed error messsage. Corresponds to the JSON property errorMessage

Returns:

  • (String)


6324
6325
6326
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 6324

def error_message
  @error_message
end

#severityString

The severity of the error. Corresponds to the JSON property severity

Returns:

  • (String)


6329
6330
6331
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 6329

def severity
  @severity
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6336
6337
6338
6339
6340
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 6336

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