com.withabound.models.documents.ten99nec.Form1099NECFormFields 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.ten99nec;
import com.withabound.models.documents.StateTaxInfoWithIncome;
import java.util.List;
import java.util.Optional;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
@SuperBuilder
@Setter
public class Form1099NECFormFields {
private Boolean isCorrected;
private String accountNumber;
private Double nonemployeeCompensation;
private Boolean hasDirectSalesOver5000;
private Double federalIncomeTaxWithheld;
private List stateTaxInfo;
public Optional getIsCorrected() {
return Optional.ofNullable(isCorrected);
}
public Optional getAccountNumber() {
return Optional.ofNullable(accountNumber);
}
public Double getNonemployeeCompensation() {
return nonemployeeCompensation;
}
public Boolean getHasDirectSalesOver5000() {
return hasDirectSalesOver5000;
}
public Double getFederalIncomeTaxWithheld() {
return federalIncomeTaxWithheld;
}
public List getStateTaxInfo() {
return stateTaxInfo;
}
}