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

br.com.anteros.payment.api.braspag.domain.Address Maven / Gradle / Ivy

The newest version!
package br.com.anteros.payment.api.braspag.domain;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Representation of customer's address
 */
public class Address {
    /**
     * {@link Address#getStreet()}
     */
	@JsonProperty("Street")
    private String street;

    /**
     * {@link Address#getNumber()}
     */
	@JsonProperty("Number")
    private String number;

    /**
     * {@link Address#getComplement()}
     */
	
	@JsonProperty("Complement")
    private String complement;

    /**
     * {@link Address#getZipCode()}
     */
	
	@JsonProperty("ZipCode")
    private String zipCode;

    /**
     * {@link Address#getCity()}
     */
	
	@JsonProperty("City")
    private String city;

    /**
     * {@link Address#getState()}
     */
	
	@JsonProperty("State")
    private String state;

    /**
     * {@link Address#getCountry()}
     */
	
	@JsonProperty("Country")
    private String country;

	/**
    * {@link Address#getDistrict()}
    */
	
	@JsonProperty("District")
   private String district;
	
    /**
     * @return the city of customer's address
     */
    public String getCity() {
        return city;
    }

    /**
     * {@link Address#getCity()}
     */
    public Address setCity(String city) {
        this.city = city;
        return this;
    }

    /**
     * @return any complement of customer's address
     */
    public String getComplement() {
        return complement;
    }

    /**
     * {@link Address#getComplement()}
     */
    public Address setComplement(String complement) {
        this.complement = complement;
        return this;
    }

    /**
     * @return the country of customer's address
     */
    public String getCountry() {
        return country;
    }

    /**
     * {@link Address#getCountry()}
     */
    public Address setCountry(String country) {
        this.country = country;
        return this;
    }

    /**
     * @return the customer's address number
     */
    public String getNumber() {
        return number;
    }

    /**
     * {@link Address#getNumber()}
     */
    public Address setNumber(String number) {
        this.number = number;
        return this;
    }

    /**
     * @return the state of customer's address
     */
    public String getState() {
        return state;
    }

    /**
     * {@link Address#getState()}
     */
    public Address setState(String state) {
        this.state = state;
        return this;
    }

    /**
     * @return the customer's address
     */
    public String getStreet() {
        return street;
    }

    /**
     * {@link Address#getStreet()}
     */
    public Address setStreet(String street) {
        this.street = street;
        return this;
    }

    /**
     * @return the zip code of customer's address
     */
    public String getZipCode() {
        return zipCode;
    }

    /**
     * {@link Address#getZipCode()}
     */
    public Address setZipCode(String zipCode) {
        this.zipCode = zipCode;
        return this;
    }
    
    /**
     * @return the district of customer's address
     */
    public String getDistrict() {
        return district;
    }

    /**
     * {@link Address#getDistrict()}
     */
    public Address setDistrict(String district) {
        this.district = district;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy