All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cribbstechnologies.clients.mandrill.model.MandrillResponse Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy