GooglePrivacyDlpV2DateShiftConfig.fromJson constructor
GooglePrivacyDlpV2DateShiftConfig.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DateShiftConfig.fromJson(core.Map json_)
: this(
context: json_.containsKey('context')
? GooglePrivacyDlpV2FieldId.fromJson(
json_['context'] as core.Map<core.String, core.dynamic>)
: null,
cryptoKey: json_.containsKey('cryptoKey')
? GooglePrivacyDlpV2CryptoKey.fromJson(
json_['cryptoKey'] as core.Map<core.String, core.dynamic>)
: null,
lowerBoundDays: json_['lowerBoundDays'] as core.int?,
upperBoundDays: json_['upperBoundDays'] as core.int?,
);