class Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse
Response message for ListStoredInfoTypes.
Attributes
next_page_token[RW]
If the next page is available then the next page token to be used in following ListStoredInfoTypes request. Corresponds to the JSON property `nextPageToken` @return [String]
stored_info_types[RW]
List of storedInfoTypes, up to page_size in ListStoredInfoTypesRequest. Corresponds to the JSON property `storedInfoTypes` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 4252 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 4257 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @stored_info_types = args[:stored_info_types] if args.key?(:stored_info_types) end