All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.withabound.models.documents.ten99nec.Form1099NECFormFields Maven / Gradle / Ivy

Go to download

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy