GooglePrivacyDlpV2DateShiftConfig.fromJson constructor

GooglePrivacyDlpV2DateShiftConfig.fromJson(
  1. 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_.containsKey('lowerBoundDays')
            ? json_['lowerBoundDays'] as core.int
            : null,
        upperBoundDays: json_.containsKey('upperBoundDays')
            ? json_['upperBoundDays'] as core.int
            : null,
      );