com.cribbstechnologies.clients.mandrill.model.MandrillRequestWithUrl 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 MandrillRequestWithUrl extends BaseMandrillRequest {
private String url;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}