Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1,42 @@
already applied — double /// <summary> tag on s_validAesKeySizeBits fixed
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using System.Runtime.Serialization;

namespace Microsoft.Health.Fhir.Anonymizer.Core.AnonymizerConfigurations
{
[DataContract]
public class ParameterConfiguration
{
[DataMember(Name = "dateShiftKey")]
public string DateShiftKey { get; set; }

[DataMember(Name = "dateShiftScope")]
public DateShiftScope DateShiftScope { get; set; }

[DataMember(Name = "dateShiftFixedOffsetInDays")]
public int? DateShiftFixedOffsetInDays { get; set; }

[DataMember(Name = "cryptoHashKey")]
public string CryptoHashKey { get; set; }

[DataMember(Name = "encryptKey")]
public string EncryptKey { get; set; }

[DataMember(Name = "enablePartialAgesForRedact")]
public bool EnablePartialAgesForRedact { get; set; }

[DataMember(Name = "enablePartialDatesForRedact")]
public bool EnablePartialDatesForRedact { get; set; }

[DataMember(Name = "enablePartialZipCodesForRedact")]
public bool EnablePartialZipCodesForRedact { get; set; }

[DataMember(Name = "restrictedZipCodeTabulationAreas")]
public List<string> RestrictedZipCodeTabulationAreas { get; set; }

[DataMember(Name = "customSettings")]
public JObject CustomSettings { get; set; }

public string DateShiftKeyPrefix { get; set; }
}
}
Loading