class Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse

Results of de-identifying a ContentItem.

Attributes

item[RW]

Container structure for the content to inspect. Corresponds to the JSON property `item` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ContentItem]

overview[RW]

Overview of the modifications that occurred. Corresponds to the JSON property `overview` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview]

Public Class Methods

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