com.taxjar.model.summarized_rates.MinimumRate 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
The newest version!
package com.taxjar.model.summarized_rates;
import com.google.gson.annotations.SerializedName;
public class MinimumRate {
@SerializedName("label")
String label;
@SerializedName("rate")
Float rate;
public String getLabel() {
return label;
}
public Float getRate() {
return rate;
}
}