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

com.megaport.api.dto.Address Maven / Gradle / Ivy

The newest version!
package com.megaport.api.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.io.Serializable;

/**
 * Created by adam.wells on 22/06/2016.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class Address implements Serializable{

    private String country;
    private String street;
    private String postcode;
    private String suburb;
    private String state;

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public String getStreet() {
        return street;
    }

    public void setStreet(String street) {
        this.street = street;
    }

    public String getPostcode() {
        return postcode;
    }

    public void setPostcode(String postcode) {
        this.postcode = postcode;
    }

    public String getSuburb() {
        return suburb;
    }

    public void setSuburb(String suburb) {
        this.suburb = suburb;
    }

    public String getState() {
        return state;
    }

    public void setState(String state) {
        this.state = state;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy