/// <summary> /// Employee Details Report /// </summary> /// <remarks> /// Generates an employee details report. /// </remarks> public Task <List <dynamic> > EmployeeDetailsReportAsync(int businessId, EmployeeDetailsReportRequestModel model, CancellationToken cancellationToken = default) { return(ApiRequestAsync <List <dynamic>, EmployeeDetailsReportRequestModel>($"/business/{businessId}/report/employeedetails", model, Method.POST, cancellationToken)); }
/// <summary> /// Employee Details Report /// </summary> /// <remarks> /// Generates an employee details report. /// </remarks> public List <dynamic> EmployeeDetailsReport(int businessId, EmployeeDetailsReportRequestModel model) { return(ApiRequest <List <dynamic>, EmployeeDetailsReportRequestModel>($"/business/{businessId}/report/employeedetails", model, Method.POST)); }