/// <summary> /// Update Employee Tax Relief Adjustment /// </summary> /// <remarks> /// Updates the employee's recurring tax relief adjustment with the specified ID. /// </remarks> public Task <EmployeeRecurringTaxReliefAdjustmentModel> UpdateEmployeeTaxReliefAdjustmentAsync(int businessId, int employeeId, int id, EmployeeRecurringTaxReliefAdjustmentModel model, CancellationToken cancellationToken = default) { return(ApiRequestAsync <EmployeeRecurringTaxReliefAdjustmentModel, EmployeeRecurringTaxReliefAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/taxreliefadjustment/{id}", model, Method.PUT, cancellationToken)); }
/// <summary> /// Update Employee Tax Relief Adjustment /// </summary> /// <remarks> /// Updates the employee's recurring tax relief adjustment with the specified ID. /// </remarks> public EmployeeRecurringTaxReliefAdjustmentModel UpdateEmployeeTaxReliefAdjustment(int businessId, int employeeId, int id, EmployeeRecurringTaxReliefAdjustmentModel model) { return(ApiRequest <EmployeeRecurringTaxReliefAdjustmentModel, EmployeeRecurringTaxReliefAdjustmentModel>($"/business/{businessId}/employee/{employeeId}/taxreliefadjustment/{id}", model, Method.PUT)); }