class Google::Apis::WebsecurityscannerV1beta::Xss

Information reported for an XSS.

Attributes

error_message[RW]

An error message generated by a javascript breakage. Corresponds to the JSON property `errorMessage` @return [String]

stack_traces[RW]

Stack traces leading to the point where the XSS occurred. Corresponds to the JSON property `stackTraces` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/websecurityscanner_v1beta/classes.rb, line 991
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/websecurityscanner_v1beta/classes.rb, line 996
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @stack_traces = args[:stack_traces] if args.key?(:stack_traces)
end