Class PaystubDeduction

java.lang.Object
com.plaid.client.model.PaystubDeduction

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
           date="2021-10-15T19:47:39.714Z[GMT]")
public class PaystubDeduction
extends java.lang.Object
PaystubDeduction
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String SERIALIZED_NAME_IS_PRETAX  
    static java.lang.String SERIALIZED_NAME_TOTAL  
    static java.lang.String SERIALIZED_NAME_TYPE  
  • Constructor Summary

    Constructors 
    Constructor Description
    PaystubDeduction()  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object o)  
    java.lang.Boolean getIsPretax()
    `true` if the deduction is pre-tax; `false` otherwise.
    java.lang.Double getTotal()
    The amount of the deduction.
    java.lang.String getType()
    The description of the deduction, as provided on the paystub.
    int hashCode()  
    PaystubDeduction isPretax​(java.lang.Boolean isPretax)  
    void setIsPretax​(java.lang.Boolean isPretax)  
    void setTotal​(java.lang.Double total)  
    void setType​(java.lang.String type)  
    java.lang.String toString()  
    PaystubDeduction total​(java.lang.Double total)  
    PaystubDeduction type​(java.lang.String type)  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

  • Method Details

    • type

      public PaystubDeduction type​(java.lang.String type)
    • getType

      @Nullable public java.lang.String getType()
      The description of the deduction, as provided on the paystub. For example: `\"401(k)\"`, `\"FICA MED TAX\"`.
      Returns:
      type
    • setType

      public void setType​(java.lang.String type)
    • isPretax

      public PaystubDeduction isPretax​(java.lang.Boolean isPretax)
    • getIsPretax

      @Nullable public java.lang.Boolean getIsPretax()
      `true` if the deduction is pre-tax; `false` otherwise.
      Returns:
      isPretax
    • setIsPretax

      public void setIsPretax​(java.lang.Boolean isPretax)
    • total

      public PaystubDeduction total​(java.lang.Double total)
    • getTotal

      @Nullable public java.lang.Double getTotal()
      The amount of the deduction.
      Returns:
      total
    • setTotal

      public void setTotal​(java.lang.Double total)
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object