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

com.taxjar.model.taxes.Jurisdictions Maven / Gradle / Ivy

The newest version!
package com.taxjar.model.taxes;

import com.google.gson.annotations.SerializedName;

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

    @SerializedName("state")
    String state;

    @SerializedName("county")
    String county;

    @SerializedName("city")
    String city;

    public String getCountry() { return country; }

    public String getState() { return state; }

    public String getCounty() { return county; }

    public String getCity() { return city; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy