Class PensionContributionLevels
Defines the levels to be applied for contributions into an employee's pension.
public record PensionContributionLevels : IPensionContributionLevels, IEquatable<PensionContributionLevels>
- Inheritance
-
PensionContributionLevels
- Implements
- Inherited Members
Properties
AvcForPeriod
Gets any Additional Voluntary Contribution (AVC) on the part of the employee.
public decimal? AvcForPeriod { get; init; }
Property Value
EmployeeContribution
Gets the employee contribution level, either expressed in percentage points (i.e., 5% = 5.0m) or as a fixed amount (i.e. £500.00), as indicated by the following parameter.
public decimal EmployeeContribution { get; init; }
Property Value
EmployeeContributionIsFixedAmount
Gets a value indicating whether EmployeeContribution should be treated as a fixed amount. True if the employee contribution figure sshould be treated as a fixed amount; false if it should be treated as a percentage.
public bool EmployeeContributionIsFixedAmount { get; init; }
Property Value
EmployerContribution
Gets the employer contribution percentage, either expressed in percentage points (i.e., 5% = 5.0m) or as a fixed amount (i.e. £500.00), as indicated by EmployerContributionIsFixedAmount.
public decimal EmployerContribution { get; init; }
Property Value
EmployerContributionIsFixedAmount
Gets a value indicating whether EmployerContribution should be treated as a fixed amount. True if the employer contribution figure sshould be treated as a fixed amount; false if it should be treated as a percentage.
public bool EmployerContributionIsFixedAmount { get; init; }
Property Value
EmployersNiReinvestmentPercentage
Gets the percentage of employer's NI saving to be re-invested into the employee's pension as an employer-only contribution, expressed in percentage points, i.e., 50% = 50.0m. Only applies under salary exchange.
public decimal? EmployersNiReinvestmentPercentage { get; init; }
Property Value
SalaryExchangeApplied
Gets a value indicating whether salary exchange should be applied.
public bool SalaryExchangeApplied { get; init; }
Property Value
SalaryForMaternityPurposes
Gets the value used to override the employer contribution when an individual is on maternity leave and should be paid employer contributions based on their contracted salary rather than their pensionable pay.
public decimal? SalaryForMaternityPurposes { get; init; }