com.cribbstechnologies.clients.mandrill.model.MandrillResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mandrillClient Show documentation
Show all versions of mandrillClient Show documentation
A Java wrapper for Mandrill
package com.cribbstechnologies.clients.mandrill.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class MandrillResponse {
private String responseString;
private boolean success;
public String getJsonResponse() {
return responseString;
}
public void setResponseString(String jsonResponse) {
this.responseString = jsonResponse;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
}