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

panda.ex.sendgrid.Content Maven / Gradle / Ivy

Go to download

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy