Table of Contents

Class NiReferenceDataThresholdEntry

Namespace
Payetools.ReferenceData.NationalInsurance
Assembly
Payetools.ReferenceData.dll

Record that represents a given National Insurance threshold across various pay frequencies. Note that HMRC guidance is that only the annual threshold should be used for calculations; weekly and monthly thresholds are given for information only.

public record NiReferenceDataThresholdEntry : INiThresholdEntry, IEquatable<NiReferenceDataThresholdEntry>
Inheritance
NiReferenceDataThresholdEntry
Implements
Inherited Members

Properties

ThresholdType

Gets the applicable threshold's name. This name is mapped to the relevant NiThresholdType as part of the deserialisation process.

[JsonPropertyName("thresholdName")]
public NiThresholdType ThresholdType { get; init; }

Property Value

NiThresholdType

ThresholdValuePerMonth

Gets the per month value of the threshold.

[JsonPropertyName("perMonth")]
public decimal ThresholdValuePerMonth { get; init; }

Property Value

decimal

ThresholdValuePerWeek

Gets the per week value of the threshold.

[JsonPropertyName("perWeek")]
public decimal ThresholdValuePerWeek { get; init; }

Property Value

decimal

ThresholdValuePerYear

Gets the per year value of the threshold.

[JsonPropertyName("perYear")]
public decimal ThresholdValuePerYear { get; init; }

Property Value

decimal