GooglePrivacyDlpV2CreateContentPolicyRequest.fromJson constructor
GooglePrivacyDlpV2CreateContentPolicyRequest.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2CreateContentPolicyRequest.fromJson(core.Map json_)
: this(
contentPolicy: json_.containsKey('contentPolicy')
? GooglePrivacyDlpV2ContentPolicy.fromJson(
json_['contentPolicy'] as core.Map<core.String, core.dynamic>,
)
: null,
contentPolicyId: json_['contentPolicyId'] as core.String?,
);