From 35a1c3866f599c2f427624e49366a49744e305fe Mon Sep 17 00:00:00 2001 From: Trevor Swartz Date: Mon, 21 Oct 2024 19:38:13 +0000 Subject: [PATCH] PS-49856: Appointments now implement FileEntity (#468) --- pom.xml | 2 +- .../data/model/entity/core/standard/Appointment.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0c960639..f12170c4 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.bullhorn sdk-rest - 2.3.15 + 2.3.16 jar Bullhorn REST SDK diff --git a/src/main/java/com/bullhornsdk/data/model/entity/core/standard/Appointment.java b/src/main/java/com/bullhornsdk/data/model/entity/core/standard/Appointment.java index 47c8adaa..7c653d78 100644 --- a/src/main/java/com/bullhornsdk/data/model/entity/core/standard/Appointment.java +++ b/src/main/java/com/bullhornsdk/data/model/entity/core/standard/Appointment.java @@ -6,6 +6,7 @@ import com.bullhornsdk.data.model.entity.core.type.CreateEntity; import com.bullhornsdk.data.model.entity.core.type.DateLastModifiedEntity; import com.bullhornsdk.data.model.entity.core.type.EditHistoryEntity; +import com.bullhornsdk.data.model.entity.core.type.FileEntity; import com.bullhornsdk.data.model.entity.core.type.QueryEntity; import com.bullhornsdk.data.model.entity.core.type.SoftDeleteEntity; import com.bullhornsdk.data.model.entity.core.type.UpdateEntity; @@ -25,7 +26,7 @@ "isPrivate", "jobOrder", "lead", "location", "migrateGUID", "notificationMinutes", "opportunity", "owner", "parentAppointment", "placement", "recurrenceDayBits", "recurrenceFrequency", "recurrenceMax", "recurrenceMonthBits", "recurrenceStyle", "recurrenceType", "showTimeAs", "subject", "timeZoneID", "type", "jobSubmission" }) -public class Appointment extends AbstractEntity implements QueryEntity, UpdateEntity, CreateEntity, SoftDeleteEntity, +public class Appointment extends AbstractEntity implements QueryEntity, UpdateEntity, CreateEntity, SoftDeleteEntity, FileEntity, DateLastModifiedEntity, EditHistoryEntity, AssociationEntity { private Integer id;