com.youcruit.billogram.objects.response.address.BillogramAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of billogram-v2-api-java-lib Show documentation
Show all versions of billogram-v2-api-java-lib Show documentation
Library for connecting to the Billogram v2 API
package com.youcruit.billogram.objects.response.address;
import com.google.gson.annotations.Expose;
public class BillogramAddress extends BaseAddress {
@Expose
private String attention;
public String getAttention() {
return attention;
}
public void setAttention(String attention) {
this.attention = attention;
}
public BillogramAddress withAttention(String attention) {
setAttention(attention);
return this;
}
public BillogramAddress withCity(String city) {
setCity(city);
return this;
}
public BillogramAddress withCareof(String careof) {
setCareof(careof);
return this;
}
public BillogramAddress withCountry(String country) {
setCountry(country);
return this;
}
public BillogramAddress withZipcode(String zipcode) {
setZipcode(zipcode);
return this;
}
public BillogramAddress withStreetAddress(String streetAddress) {
setStreetAddress(streetAddress);
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy