com.cribbstechnologies.clients.mandrill.model.MandrillRequestWithQuery 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;
public class MandrillRequestWithQuery extends BaseMandrillRequest {
private String q;
public String getQ() {
return q;
}
public void setQ(String q) {
this.q = q;
}
}