panda.tube.sendgrid.Email 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;
public class Email {
public String email;
public String name;
public Email(String email) {
this.email = email;
}
public Email(String email, String name) {
this.email = email;
this.name = name;
}
@Override
public String toString() {
return Jsons.toJson(this, true);
}
}