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; } }