co.omise.models.OmiseObjectBase 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;
public abstract class OmiseObjectBase implements OmiseObject {
private String object;
private String location;
@Override
public String getObject() {
return object;
}
@Override
public void setObject(String object) {
this.object = object;
}
@Override
public String getLocation() {
return location;
}
@Override
public void setLocation(String location) {
this.location = location;
}
}