Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Nylas Java SDK Changelog

## [Unreleased]
* Fixed `email` in `Participant` not being a nullable field

## [2.11.1] - Release 2025-07-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/nylas/models/Participant.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data class Participant(
* Participant's email address.
*/
@Json(name = "email")
val email: String = "",
val email: String? = null,
/**
* Participant's status.
*/
Expand Down
Loading