com.withabound.models.documents.StateTaxInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
The Abound Java SDK provides convenient access to the Abound API from applications written in Java.
The newest version!
package com.withabound.models.documents;
import java.util.Optional;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
@SuperBuilder
@Setter
public class StateTaxInfo {
private Double stateTaxWithheld;
private String filingState;
private String payerStateId;
private String userStateId;
public Double getStateTaxWithheld() {
return stateTaxWithheld;
}
public String getFilingState() {
return filingState;
}
public Optional getPayerStateId() {
return Optional.ofNullable(payerStateId);
}
public Optional getUserStateId() {
return Optional.ofNullable(userStateId);
}
}