From 091c90101942601e0843eb47417dd219995f32a1 Mon Sep 17 00:00:00 2001 From: kraju3 <35513942+kraju3@users.noreply.github.com> Date: Thu, 25 Jul 2024 08:44:22 -0500 Subject: [PATCH] Adding `master_event_id` as a property to the Event data class (#241) # Description Adding getter/setter support for `master_even_id` # License I confirm that this contribution is made under the terms of the MIT license and that I have the authority necessary to make this contribution on behalf of its copyright owner. --- src/main/kotlin/com/nylas/models/Event.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/kotlin/com/nylas/models/Event.kt b/src/main/kotlin/com/nylas/models/Event.kt index 3ad1b141..0e455b21 100644 --- a/src/main/kotlin/com/nylas/models/Event.kt +++ b/src/main/kotlin/com/nylas/models/Event.kt @@ -93,6 +93,11 @@ data class Event( */ @Json(name = "organizer") val organizer: EmailName? = null, + /** + * Organizer of the event. + */ + @Json(name = "master_event_id") + val masterEventId: String? = null, /** * A list of RRULE and EXDATE strings. * @see RFC-5545