mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 03:29:28 +01:00
add capability for restore
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
parent
6a9211e292
commit
5fe5931bc4
@ -19,9 +19,11 @@ import kotlinx.serialization.Serializable
|
||||
data class UserStatusCapability(
|
||||
@JsonField(name = ["enabled"])
|
||||
var enabled: Boolean,
|
||||
@JsonField(name = ["restore"])
|
||||
var restore: Boolean,
|
||||
@JsonField(name = ["supports_emoji"])
|
||||
var supportsEmoji: Boolean
|
||||
) : Parcelable {
|
||||
// This constructor is added to work with the 'com.bluelinelabs.logansquare.annotation.JsonObject'
|
||||
constructor() : this(false, false)
|
||||
constructor() : this(false, false,false)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user