GooglePrivacyDlpV2DiscoveryBigQueryFilter.fromJson constructor
GooglePrivacyDlpV2DiscoveryBigQueryFilter.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryBigQueryFilter.fromJson(core.Map json_)
: this(
otherTables:
json_.containsKey('otherTables')
? GooglePrivacyDlpV2AllOtherBigQueryTables.fromJson(
json_['otherTables'] as core.Map<core.String, core.dynamic>,
)
: null,
tableReference:
json_.containsKey('tableReference')
? GooglePrivacyDlpV2TableReference.fromJson(
json_['tableReference']
as core.Map<core.String, core.dynamic>,
)
: null,
tables:
json_.containsKey('tables')
? GooglePrivacyDlpV2BigQueryTableCollection.fromJson(
json_['tables'] as core.Map<core.String, core.dynamic>,
)
: null,
);