class Google::Apis::WebsecurityscannerV1::FindingTypeStats
A FindingTypeStats
resource represents stats regarding a specific FindingType of Findings under a given ScanRun
.
Attributes
finding_count[RW]
Output only. The count of findings belonging to this finding type. Corresponds to the JSON property `findingCount` @return [Fixnum]
finding_type[RW]
Output only. The finding type associated with the stats. Corresponds to the JSON property `findingType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/websecurityscanner_v1/classes.rb, line 281 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_v1/classes.rb, line 286 def update!(**args) @finding_count = args[:finding_count] if args.key?(:finding_count) @finding_type = args[:finding_type] if args.key?(:finding_type) end