mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 11:39:42 +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(
|
data class UserStatusCapability(
|
||||||
@JsonField(name = ["enabled"])
|
@JsonField(name = ["enabled"])
|
||||||
var enabled: Boolean,
|
var enabled: Boolean,
|
||||||
|
@JsonField(name = ["restore"])
|
||||||
|
var restore: Boolean,
|
||||||
@JsonField(name = ["supports_emoji"])
|
@JsonField(name = ["supports_emoji"])
|
||||||
var supportsEmoji: Boolean
|
var supportsEmoji: Boolean
|
||||||
) : Parcelable {
|
) : Parcelable {
|
||||||
// This constructor is added to work with the 'com.bluelinelabs.logansquare.annotation.JsonObject'
|
// 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