blob: dcdc0ccd1eb0c3d3df4e2fa76eef0c07f5ef00c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.juick.notifications.api;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by vitalyster on 25.07.2016.
*/
public class Status {
private String value;
public Status(String value) {
this.value = value;
}
@JsonProperty("status")
public String getValue() {
return value;
}
}
|