class Google::Apis::WebsecurityscannerV1beta::FindingTypeStats

A FindingTypeStats resource represents stats regarding a specific FindingType of Findings under a given ScanRun.

Attributes

finding_count[RW]

The count of findings belonging to this finding type. Corresponds to the JSON property `findingCount` @return [Fixnum]

finding_type[RW]

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_v1beta/classes.rb, line 278
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 283
def update!(**args)
  @finding_count = args[:finding_count] if args.key?(:finding_count)
  @finding_type = args[:finding_type] if args.key?(:finding_type)
end