co.omise.models.Account Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omise-java Show documentation
Show all versions of omise-java Show documentation
Java bindings for the Omise API
package co.omise.models;
/**
* Represents Omise Account object.
*
* @see Account API
*/
public class Account extends Model {
private String email;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}