From ebf5396f0d1be4ca016b20ca78af3e543c8b3190 Mon Sep 17 00:00:00 2001
From: Oz Okun <112382001+Oz-Okun@users.noreply.github.com>
Date: Wed, 8 Oct 2025 09:58:46 +0200
Subject: [PATCH] fix type mismatch of vacation days from int to double
---
BccCode.Hailey.Client/HaileyClientGenerated.cs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/BccCode.Hailey.Client/HaileyClientGenerated.cs b/BccCode.Hailey.Client/HaileyClientGenerated.cs
index 3207c91..935f359 100644
--- a/BccCode.Hailey.Client/HaileyClientGenerated.cs
+++ b/BccCode.Hailey.Client/HaileyClientGenerated.cs
@@ -1315,7 +1315,7 @@ public partial class EmployeeListItem
/// Number of vacation days for the Employee. Calculated from the employee's effectual employment.
///
[Newtonsoft.Json.JsonProperty("vacationDays", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
- public int? VacationDays { get; set; }
+ public double? VacationDays { get; set; }
///
/// Id of the Employee the current Employee is substituting for, if any. Calculated from the employee's effectual employment.
@@ -1640,7 +1640,7 @@ public partial class EmploymentTerms
/// Number of vacation days for the Employee.
///
[Newtonsoft.Json.JsonProperty("vacationDays", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
- public int? VacationDays { get; set; }
+ public double? VacationDays { get; set; }
///
/// Id of the Employee the current Employee is substituting for, if any.