GooglePrivacyDlpV2OutputStorageConfig.fromJson constructor
GooglePrivacyDlpV2OutputStorageConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2OutputStorageConfig.fromJson(core.Map json_)
: this(
outputSchema: json_['outputSchema'] as core.String?,
storagePath:
json_.containsKey('storagePath')
? GooglePrivacyDlpV2CloudStoragePath.fromJson(
json_['storagePath'] as core.Map<core.String, core.dynamic>,
)
: null,
table:
json_.containsKey('table')
? GooglePrivacyDlpV2BigQueryTable.fromJson(
json_['table'] as core.Map<core.String, core.dynamic>,
)
: null,
);