/// <summary>
 /// Update Super Fund
 /// </summary>
 /// <remarks>
 /// Updates the employee's super fund with the specified ID.
 /// </remarks>
 public Task <SaveSuperFundResponseModel> UpdateSuperFundAsync(int businessId, int employeeId, int id, SaveSuperFundModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync <SaveSuperFundResponseModel, SaveSuperFundModel>($"/business/{businessId}/employee/{employeeId}/superfund/{id}", model, Method.PUT, cancellationToken));
 }
 /// <summary>
 /// Update Super Fund
 /// </summary>
 /// <remarks>
 /// Updates the employee's super fund with the specified ID.
 /// </remarks>
 public SaveSuperFundResponseModel UpdateSuperFund(int businessId, int employeeId, int id, SaveSuperFundModel model)
 {
     return(ApiRequest <SaveSuperFundResponseModel, SaveSuperFundModel>($"/business/{businessId}/employee/{employeeId}/superfund/{id}", model, Method.PUT));
 }