Skip to content

Commit 3e97fab

Browse files
SubashPradhanSubash Pradhan
andauthored
Add skypeForConsumer as conferencing provider. (#255)
- Free Outlook accounts supports creating skype as conferencing while creating events. - Currently this is not listed as supported conferencing provider in JAVA sdk. - When user fetches event and an event has skype as conferencing, the request fails due to unsupported conferencing. - Add `skypeForConsumer` as supported conferencing provider. - Reproduced the error locally and tested the fix locally. # 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. --------- Co-authored-by: Subash Pradhan <subash.p@macbook-pro-3.home>
1 parent 2dd721f commit 3e97fab

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Nylas Java SDK Changelog
22

3+
### Unreleased
4+
* Add support for `skypeForConsumer` as conferencing provider
5+
36
### [2.5.1] - Released 2024-11-12
47
* Fixed response type for returning list of scheduled messages
58

src/main/kotlin/com/nylas/models/ConferencingProvider.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ enum class ConferencingProvider {
2020

2121
@Json(name = "GoToMeeting")
2222
GOTOMEETING,
23+
24+
@Json(name = "skypeForConsumer")
25+
SKYPE_FOR_CONSUMER,
2326
}

0 commit comments

Comments
 (0)