com.taxjar.model.customers.ExemptRegion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taxjar-java Show documentation
Show all versions of taxjar-java Show documentation
TaxJar Java Sales Tax API Client
package com.taxjar.model.customers;
import com.google.gson.annotations.SerializedName;
public class ExemptRegion {
@SerializedName("country")
String country;
@SerializedName("state")
String state;
public String getCountry() {
return country;
}
public String getState() {
return state;
}
}