class Google::Apis::WebsecurityscannerV1alpha::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_v1alpha/classes.rb, line 772 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_v1alpha/classes.rb, line 777 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @stack_traces = args[:stack_traces] if args.key?(:stack_traces) end