mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-21 20:45:29 +03:00
Clean up status
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
4f65a40266
commit
05bfd71ffe
1 changed files with 7 additions and 7 deletions
|
@ -32,23 +32,23 @@ import lombok.Data;
|
|||
@JsonObject
|
||||
public class Status {
|
||||
@JsonField(name = "installed")
|
||||
boolean installed;
|
||||
public boolean installed;
|
||||
|
||||
@JsonField(name = "maintenance")
|
||||
boolean maintenance;
|
||||
public boolean maintenance;
|
||||
|
||||
@JsonField(name = "upgrade")
|
||||
boolean needsUpgrade;
|
||||
public boolean needsUpgrade;
|
||||
|
||||
@JsonField(name = "version")
|
||||
String version;
|
||||
public String version;
|
||||
|
||||
@JsonField(name = "versionstring")
|
||||
String versionString;
|
||||
public String versionString;
|
||||
|
||||
@JsonField(name = "edition")
|
||||
String edition;
|
||||
public String edition;
|
||||
|
||||
@JsonField(name = "productname")
|
||||
String productName;
|
||||
public String productName;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue