-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from MyPureCloud/develop
Develop into merge to release 2.6.2
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...commonMain/kotlin/com/genesys/cloud/messenger/transport/shyrka/receive/SessionResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
package com.genesys.cloud.messenger.transport.shyrka.receive | ||
|
||
import com.genesys.cloud.messenger.transport.core.MAX_CUSTOM_DATA_BYTES_UNSET | ||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
internal data class SessionResponse( | ||
val connected: Boolean, | ||
val newSession: Boolean = false, | ||
val readOnly: Boolean = false, | ||
val maxCustomDataBytes: Int = 0 | ||
val maxCustomDataBytes: Int = MAX_CUSTOM_DATA_BYTES_UNSET, | ||
) |