class Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult

A collection that informs the user the number of times a particular ` TransformationResultCode` and error details occurred.

Attributes

code[RW]

Outcome of the transformation. Corresponds to the JSON property `code` @return [String]

count[RW]

Number of transformations counted by this result. Corresponds to the JSON property `count` @return [Fixnum]

details[RW]

A place for warnings or errors to show up if a transformation didn't work as expected. Corresponds to the JSON property `details` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 5804
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 5809
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @count = args[:count] if args.key?(:count)
  @details = args[:details] if args.key?(:details)
end