com.cribbstechnologies.clients.mandrill.model.response.users.PingResponse 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.response.users;
import com.cribbstechnologies.clients.mandrill.model.response.BaseMandrillResponse;
import com.fasterxml.jackson.annotation.JsonProperty;
public class PingResponse extends BaseMandrillResponse {
@JsonProperty("PING")
public String pingResponse;
public String getPingResponse() {
return pingResponse;
}
public void setPingResponse(String pingResponse) {
this.pingResponse = pingResponse;
}
}