class Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse

Response message for ListDeidentifyTemplates.

Attributes

deidentify_templates[RW]

List of deidentify templates, up to page_size in ListDeidentifyTemplatesRequest. Corresponds to the JSON property `deidentifyTemplates` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate>]

next_page_token[RW]

If the next page is available then the next page token to be used in following ListDeidentifyTemplates request. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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