Class FilingsTaxDetailsModel


  • public class FilingsTaxDetailsModel
    extends java.lang.Object
    Represents a listing of all tax calculation data for filings and for accruing to future filings.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.math.BigDecimal getNonTaxableAmount()
      Getter for nonTaxableAmount The nontaxable amount
      java.lang.Long getNumberOfNights()
      Getter for numberOfNights The number of nights
      java.math.BigDecimal getSalesAmount()
      Getter for salesAmount The total sales amount
      java.math.BigDecimal getTaxAmount()
      Getter for taxAmount The tax amount
      java.lang.String getTaxType()
      Getter for taxType The tax type associated with the summary
      void setNonTaxableAmount​(java.math.BigDecimal value)
      Setter for nonTaxableAmount The nontaxable amount
      void setNumberOfNights​(java.lang.Long value)
      Setter for numberOfNights The number of nights
      void setSalesAmount​(java.math.BigDecimal value)
      Setter for salesAmount The total sales amount
      void setTaxAmount​(java.math.BigDecimal value)
      Setter for taxAmount The tax amount
      void setTaxType​(java.lang.String value)
      Setter for taxType The tax type associated with the summary
      java.lang.String toString()
      Returns a JSON string representation of FilingsTaxDetailsModel
      • Methods inherited from class java.lang.Object

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

      • FilingsTaxDetailsModel

        public FilingsTaxDetailsModel()
    • Method Detail

      • getTaxType

        public java.lang.String getTaxType()
        Getter for taxType The tax type associated with the summary
      • setTaxType

        public void setTaxType​(java.lang.String value)
        Setter for taxType The tax type associated with the summary
      • getSalesAmount

        public java.math.BigDecimal getSalesAmount()
        Getter for salesAmount The total sales amount
      • setSalesAmount

        public void setSalesAmount​(java.math.BigDecimal value)
        Setter for salesAmount The total sales amount
      • getNonTaxableAmount

        public java.math.BigDecimal getNonTaxableAmount()
        Getter for nonTaxableAmount The nontaxable amount
      • setNonTaxableAmount

        public void setNonTaxableAmount​(java.math.BigDecimal value)
        Setter for nonTaxableAmount The nontaxable amount
      • getTaxAmount

        public java.math.BigDecimal getTaxAmount()
        Getter for taxAmount The tax amount
      • setTaxAmount

        public void setTaxAmount​(java.math.BigDecimal value)
        Setter for taxAmount The tax amount
      • getNumberOfNights

        public java.lang.Long getNumberOfNights()
        Getter for numberOfNights The number of nights
      • setNumberOfNights

        public void setNumberOfNights​(java.lang.Long value)
        Setter for numberOfNights The number of nights
      • toString

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