Skip to content

Commit

Permalink
Adding master_event_id as a property to the Event data class (#241)
Browse files Browse the repository at this point in the history
# Description

Adding getter/setter support for `master_even_id`

# License
<!-- Your PR comment must contain the following line for us to merge the
PR. -->
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.
  • Loading branch information
kraju3 authored Jul 25, 2024
1 parent 3ca6a84 commit 091c901
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/kotlin/com/nylas/models/Event.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="https://datatracker.ietf.org/doc/html/rfc5545#section-3.8.5">RFC-5545</a>
Expand Down

0 comments on commit 091c901

Please sign in to comment.