GooglePrivacyDlpV2DiscoveryVertexDatasetFilter.fromJson constructor
GooglePrivacyDlpV2DiscoveryVertexDatasetFilter.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryVertexDatasetFilter.fromJson(core.Map json_)
: this(
collection: json_.containsKey('collection')
? GooglePrivacyDlpV2VertexDatasetCollection.fromJson(
json_['collection'] as core.Map<core.String, core.dynamic>)
: null,
others: json_.containsKey('others')
? GooglePrivacyDlpV2AllOtherResources.fromJson(
json_['others'] as core.Map<core.String, core.dynamic>)
: null,
vertexDatasetResourceReference:
json_.containsKey('vertexDatasetResourceReference')
? GooglePrivacyDlpV2VertexDatasetResourceReference.fromJson(
json_['vertexDatasetResourceReference']
as core.Map<core.String, core.dynamic>)
: null,
);