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

com.taxjar.model.validations.Address Maven / Gradle / Ivy

There is a newer version: 5.0.3
Show newest version
package com.taxjar.model.validations;

import com.google.gson.annotations.SerializedName;

public class Address {
    @SerializedName("country")
    String country;

    @SerializedName("zip")
    String zip;

    @SerializedName("state")
    String state;

    @SerializedName("city")
    String city;

    @SerializedName("street")
    String street;

    public String getCountry() {
        return country;
    }

    public String getZip() {
        return zip;
    }

    public String getState() {
        return state;
    }

    public String getCity() {
        return city;
    }

    public String getStreet() {
        return street;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy