GooglePrivacyDlpV2ListColumnDataProfilesResponse.fromJson constructor
GooglePrivacyDlpV2ListColumnDataProfilesResponse.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2ListColumnDataProfilesResponse.fromJson(core.Map json_)
: this(
columnDataProfiles: json_.containsKey('columnDataProfiles')
? (json_['columnDataProfiles'] as core.List)
.map((value) => GooglePrivacyDlpV2ColumnDataProfile.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);