com.cribbstechnologies.clients.mandrill.model.MessageMergeVars 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 java.util.List;
public class MessageMergeVars {
private String rcpt;
private List vars;
public String getRcpt() {
return rcpt;
}
public void setRcpt(String rcpt) {
this.rcpt = rcpt;
}
public List getVars() {
return vars;
}
public void setVars(List vars) {
this.vars = vars;
}
}