class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ValidationMessage

Agent/flow validation message.

Attributes

detail[RW]

The message detail. Corresponds to the JSON property `detail` @return [String]

resource_names[RW]

The resource names of the resources where the message is found. Corresponds to the JSON property `resourceNames` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResourceName>]

resource_type[RW]

The type of the resources where the message is found. Corresponds to the JSON property `resourceType` @return [String]

resources[RW]

The names of the resources where the message is found. Corresponds to the JSON property `resources` @return [Array<String>]

severity[RW]

Indicates the severity of the message. Corresponds to the JSON property `severity` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 5309
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 5314
def update!(**args)
  @detail = args[:detail] if args.key?(:detail)
  @resource_names = args[:resource_names] if args.key?(:resource_names)
  @resource_type = args[:resource_type] if args.key?(:resource_type)
  @resources = args[:resources] if args.key?(:resources)
  @severity = args[:severity] if args.key?(:severity)
end