com.unzer.payment.Address Maven / Gradle / Ivy
package com.unzer.payment;
/**
* Business object for Address data
*
* @author Unzer E-Com GmbH
*/
public class Address {
private String name;
private String street;
private String state;
private String zip;
private String city;
private String country;
public String getName() {
return name;
}
public Address setName(String name) {
this.name = name;
return this;
}
public String getStreet() {
return street;
}
public Address setStreet(String street) {
this.street = street;
return this;
}
public String getState() {
return state;
}
public Address setState(String state) {
this.state = state;
return this;
}
public String getZip() {
return zip;
}
public Address setZip(String zip) {
this.zip = zip;
return this;
}
public String getCity() {
return city;
}
public Address setCity(String city) {
this.city = city;
return this;
}
public String getCountry() {
return country;
}
public Address setCountry(String country) {
this.country = country;
return this;
}
}