blob: de27641e5fddd0fb98586224c610009c67e79f45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package com.juick.components.mpns;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by vitalyster on 28.11.2016.
*/
public class MPNSError {
private String error;
private String errorDescription;
@JsonProperty("error")
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
@JsonProperty("error_description")
public String getErrorDescription() {
return errorDescription;
}
public void setErrorDescription(String errorDescription) {
this.errorDescription = errorDescription;
}
}
|