com.taxjar.model.validations.Validation 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.validations;
import com.google.gson.annotations.SerializedName;
public class Validation {
@SerializedName("valid")
Boolean valid;
@SerializedName("exists")
Boolean exists;
@SerializedName("vies_available")
Boolean viesAvailable;
@SerializedName("vies_response")
ViesResponse viesResponse;
public Boolean getValid() {
return valid;
}
public Boolean getExists() {
return exists;
}
public Boolean getViesAvailable() {
return viesAvailable;
}
public ViesResponse getViesResponse() {
return viesResponse;
}
}