All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.tube.sendgrid.FooterSetting Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy