panda.ex.sendgrid.Content Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.sendgrid;
import panda.bind.json.Jsons;
/**
* An object in which you may specify the content of your email.
*/
public class Content {
public String type;
public String value;
public Content() {
}
public Content(String type, String value) {
this.type = type;
this.value = value;
}
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}