Class FilingAdjustmentModel


  • public class FilingAdjustmentModel
    extends java.lang.Object
    A model for return adjustments.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      PaymentAccountTypeId getAccountType()
      Getter for accountType The account type of the adjustment.
      java.math.BigDecimal getAmount()
      Getter for amount The adjustment amount.
      java.util.Date getCreatedDate()
      Getter for createdDate The date when this record was created.
      java.lang.Integer getCreatedUserId()
      Getter for createdUserId The User ID of the user who created this record.
      java.lang.Long getFilingId()
      Getter for filingId The filing return id that this applies too
      java.lang.Long getId()
      Getter for id The unique ID number for the adjustment.
      java.lang.Boolean getIsCalculated()
      Getter for isCalculated Whether or not the adjustment has been calculated.
      java.util.Date getModifiedDate()
      Getter for modifiedDate The date/time when this record was last modified.
      java.lang.Integer getModifiedUserId()
      Getter for modifiedUserId The user ID of the user who last modified this record.
      AdjustmentPeriodTypeId getPeriod()
      Getter for period The filing period the adjustment is applied to.
      java.lang.String getReason()
      Getter for reason A descriptive reason for creating this adjustment.
      java.lang.String getType()
      Getter for type The type of the adjustment.
      void setAccountType​(PaymentAccountTypeId value)
      Setter for accountType The account type of the adjustment.
      void setAmount​(java.math.BigDecimal value)
      Setter for amount The adjustment amount.
      void setCreatedDate​(java.util.Date value)
      Setter for createdDate The date when this record was created.
      void setCreatedUserId​(java.lang.Integer value)
      Setter for createdUserId The User ID of the user who created this record.
      void setFilingId​(java.lang.Long value)
      Setter for filingId The filing return id that this applies too
      void setId​(java.lang.Long value)
      Setter for id The unique ID number for the adjustment.
      void setIsCalculated​(java.lang.Boolean value)
      Setter for isCalculated Whether or not the adjustment has been calculated.
      void setModifiedDate​(java.util.Date value)
      Setter for modifiedDate The date/time when this record was last modified.
      void setModifiedUserId​(java.lang.Integer value)
      Setter for modifiedUserId The user ID of the user who last modified this record.
      void setPeriod​(AdjustmentPeriodTypeId value)
      Setter for period The filing period the adjustment is applied to.
      void setReason​(java.lang.String value)
      Setter for reason A descriptive reason for creating this adjustment.
      void setType​(java.lang.String value)
      Setter for type The type of the adjustment.
      java.lang.String toString()
      Returns a JSON string representation of FilingAdjustmentModel
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • FilingAdjustmentModel

        public FilingAdjustmentModel()
    • Method Detail

      • getId

        public java.lang.Long getId()
        Getter for id The unique ID number for the adjustment.
      • setId

        public void setId​(java.lang.Long value)
        Setter for id The unique ID number for the adjustment.
      • getFilingId

        public java.lang.Long getFilingId()
        Getter for filingId The filing return id that this applies too
      • setFilingId

        public void setFilingId​(java.lang.Long value)
        Setter for filingId The filing return id that this applies too
      • getAmount

        public java.math.BigDecimal getAmount()
        Getter for amount The adjustment amount.
      • setAmount

        public void setAmount​(java.math.BigDecimal value)
        Setter for amount The adjustment amount.
      • getPeriod

        public AdjustmentPeriodTypeId getPeriod()
        Getter for period The filing period the adjustment is applied to.
      • setPeriod

        public void setPeriod​(AdjustmentPeriodTypeId value)
        Setter for period The filing period the adjustment is applied to.
      • getType

        public java.lang.String getType()
        Getter for type The type of the adjustment.
      • setType

        public void setType​(java.lang.String value)
        Setter for type The type of the adjustment.
      • getIsCalculated

        public java.lang.Boolean getIsCalculated()
        Getter for isCalculated Whether or not the adjustment has been calculated.
      • setIsCalculated

        public void setIsCalculated​(java.lang.Boolean value)
        Setter for isCalculated Whether or not the adjustment has been calculated.
      • getAccountType

        public PaymentAccountTypeId getAccountType()
        Getter for accountType The account type of the adjustment.
      • setAccountType

        public void setAccountType​(PaymentAccountTypeId value)
        Setter for accountType The account type of the adjustment.
      • getReason

        public java.lang.String getReason()
        Getter for reason A descriptive reason for creating this adjustment.
      • setReason

        public void setReason​(java.lang.String value)
        Setter for reason A descriptive reason for creating this adjustment.
      • getCreatedDate

        public java.util.Date getCreatedDate()
        Getter for createdDate The date when this record was created.
      • setCreatedDate

        public void setCreatedDate​(java.util.Date value)
        Setter for createdDate The date when this record was created.
      • getCreatedUserId

        public java.lang.Integer getCreatedUserId()
        Getter for createdUserId The User ID of the user who created this record.
      • setCreatedUserId

        public void setCreatedUserId​(java.lang.Integer value)
        Setter for createdUserId The User ID of the user who created this record.
      • getModifiedDate

        public java.util.Date getModifiedDate()
        Getter for modifiedDate The date/time when this record was last modified.
      • setModifiedDate

        public void setModifiedDate​(java.util.Date value)
        Setter for modifiedDate The date/time when this record was last modified.
      • getModifiedUserId

        public java.lang.Integer getModifiedUserId()
        Getter for modifiedUserId The user ID of the user who last modified this record.
      • setModifiedUserId

        public void setModifiedUserId​(java.lang.Integer value)
        Setter for modifiedUserId The user ID of the user who last modified this record.
      • toString

        public java.lang.String toString()
        Returns a JSON string representation of FilingAdjustmentModel
        Overrides:
        toString in class java.lang.Object