GooglePrivacyDlpV2CreateStoredInfoTypeRequest.fromJson constructor

GooglePrivacyDlpV2CreateStoredInfoTypeRequest.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2CreateStoredInfoTypeRequest.fromJson(core.Map json_)
    : this(
        config: json_.containsKey('config')
            ? GooglePrivacyDlpV2StoredInfoTypeConfig.fromJson(
                json_['config'] as core.Map<core.String, core.dynamic>)
            : null,
        locationId: json_.containsKey('locationId')
            ? json_['locationId'] as core.String
            : null,
        storedInfoTypeId: json_.containsKey('storedInfoTypeId')
            ? json_['storedInfoTypeId'] as core.String
            : null,
      );