panda.tube.sendgrid.FooterSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube-sendgrid Show documentation
Show all versions of panda-tube-sendgrid Show documentation
Panda Tube SendGrid is a Web Service API client for SendGrid.
package panda.tube.sendgrid;
import panda.bind.json.Jsons;
/**
* An object representing the default footer that you would like included on every email.
*/
public class FooterSetting {
public Boolean enable;
public String text;
public String html;
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}