class Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeStats
Statistics regarding a specific InfoType.
Attributes
count[RW]
Number of findings for this infoType. Corresponds to the JSON property `count` @return [Fixnum]
info_type[RW]
Type of information detected by the API. Corresponds to the JSON property `infoType` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3037 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 3042 def update!(**args) @count = args[:count] if args.key?(:count) @info_type = args[:info_type] if args.key?(:info_type) end