Skip to content

Commit

Permalink
Merge pull request #31 from sendbird/release/4.15.2
Browse files Browse the repository at this point in the history
4.15.2
  • Loading branch information
sendbird-sdk-deployment authored Feb 28, 2024
2 parents 777eeeb + 47f74cf commit 0bb9429
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG_KTX.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## v4.15.2 (Feb 28, 2024)
### Features
- Added new Kotlin Extension for SendbirdChat SDK
```kotlin
class User {
suspend fun createMetaData(metaDataMap: Map<String, String>): Map<String, String>
suspend fun updateMetaData(metaDataMap: Map<String, String>): Map<String, String>
suspend fun deleteMetaData(key: String)
suspend fun deleteAllMetaData()
}

class Poll {
companion object {
suspend fun create(params: PollCreateParams): Poll
suspend fun get(params: PollRetrievalParams): Poll
}
}

class PollOption {
companion object {
suspend fun get(params: PollOptionRetrievalParams): PollOption
}
}
```
## v4.15.1 (Feb 22, 2024)
### Features
- Added extension function in `BaseMessage` related to threaded message
Expand Down

0 comments on commit 0bb9429

Please sign in to comment.