class Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse

Response message for ListInspectTemplates.

Attributes

inspect_templates[RW]

List of inspectTemplates, up to page_size in ListInspectTemplatesRequest. Corresponds to the JSON property `inspectTemplates` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate>]

next_page_token[RW]

If the next page is available then the next page token to be used in following ListInspectTemplates 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 4200
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 4205
def update!(**args)
  @inspect_templates = args[:inspect_templates] if args.key?(:inspect_templates)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end