GooglePrivacyDlpV2DiscoveryBigQueryConditions.fromJson constructor
GooglePrivacyDlpV2DiscoveryBigQueryConditions.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryBigQueryConditions.fromJson(core.Map json_)
: this(
createdAfter: json_.containsKey('createdAfter')
? json_['createdAfter'] as core.String
: null,
orConditions: json_.containsKey('orConditions')
? GooglePrivacyDlpV2OrConditions.fromJson(
json_['orConditions'] as core.Map<core.String, core.dynamic>)
: null,
typeCollection: json_.containsKey('typeCollection')
? json_['typeCollection'] as core.String
: null,
types: json_.containsKey('types')
? GooglePrivacyDlpV2BigQueryTableTypes.fromJson(
json_['types'] as core.Map<core.String, core.dynamic>)
: null,
);