GooglePrivacyDlpV2InspectJobConfig.fromJson constructor
GooglePrivacyDlpV2InspectJobConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2InspectJobConfig.fromJson(core.Map json_)
: this(
actions: (json_['actions'] as core.List?)
?.map((value) => GooglePrivacyDlpV2Action.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
inspectConfig: json_.containsKey('inspectConfig')
? GooglePrivacyDlpV2InspectConfig.fromJson(
json_['inspectConfig'] as core.Map<core.String, core.dynamic>)
: null,
inspectTemplateName: json_['inspectTemplateName'] as core.String?,
storageConfig: json_.containsKey('storageConfig')
? GooglePrivacyDlpV2StorageConfig.fromJson(
json_['storageConfig'] as core.Map<core.String, core.dynamic>)
: null,
);