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

co.omise.models.Account Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy