Struct PensionContributionCalculationResult
Represents a pension contribution calculation result.
public readonly struct PensionContributionCalculationResult : IPensionContributionCalculationResult
- Implements
- Inherited Members
Properties
BandedEarnings
Gets the portion of earnings used to calculate the employee and employer contributions under Qualifying Earnings. Null for pensionable pay.
public decimal? BandedEarnings { get; init; }
Property Value
CalculatedEmployeeContributionAmount
Gets the employee contribution amount resulting from the calculation. Will be zero if SalaryExchangeApplied is true.
public decimal CalculatedEmployeeContributionAmount { get; init; }
Property Value
CalculatedEmployerContributionAmount
Gets the employer contribution amount resulting from the calculation. IfSalaryExchangeApplied is true, includes both calculated amounts for employer and employee contributions and any NI reinvestment to be applied (based on the value of EmployersNiReinvestmentPercentage).
public decimal CalculatedEmployerContributionAmount { get; init; }
Property Value
EarningsBasis
Gets the earnings basis for the pension calculation (e.g., Qualifying Earnings).
public PensionsEarningsBasis EarningsBasis { get; init; }
Property Value
EmployeeAvcAmount
Gets any Additional Voluntary Contribution (AVC) made by the employee.
public decimal? EmployeeAvcAmount { get; init; }
Property Value
EmployeeContributionFixedAmount
Gets the employee's fixed contribution amount, if applicable. If supplied, overrides EmployeeContributionPercentage.
public decimal? EmployeeContributionFixedAmount { get; init; }
Property Value
EmployeeContributionPercentage
Gets the employee contribution percentage, expressed in percentage points, i.e., 5% = 5.0m.
public decimal? EmployeeContributionPercentage { get; init; }
Property Value
EmployerContributionAmountBeforeSalaryExchange
Gets the portion of the total employer-only contribution made under salary exchange that pertains to the employer's contribution.
public decimal? EmployerContributionAmountBeforeSalaryExchange { get; init; }
Property Value
EmployerContributionPercentage
Gets the employer contribution percentage, expressed in percentage points, i.e., 3% = 3.0m.
public decimal EmployerContributionPercentage { get; init; }
Property Value
EmployerNiSavingsToReinvest
Gets the amount of any employer NI savings that are to be re-invested in the employee's pension, adjusted by the value of EmployersNiReinvestmentPercentage. Only applies under salary exchange.
public decimal? EmployerNiSavingsToReinvest { 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
NoPensionApplicable
Gets an empty PensionContributionCalculationResult that indicates that no pension is applicable.
public static IPensionContributionCalculationResult NoPensionApplicable { get; }
Property Value
PensionableSalaryInPeriod
Gets the pensionable salary for the period.
public decimal PensionableSalaryInPeriod { get; init; }
Property Value
SalaryExchangeApplied
Gets a value indicating whether salary exchange has been applied.
public bool SalaryExchangeApplied { get; init; }
Property Value
SalaryExchangedAmount
Gets the amount the employee's gross salary exchanged under a salary exchange arrangement.
public decimal? SalaryExchangedAmount { get; init; }
Property Value
TaxTreatment
Gets the pension tax treatment to be applied, i.e., relief at source vs net pay arrangement.
public PensionTaxTreatment TaxTreatment { get; init; }