Class TaxRate

    • Constructor Detail

      • TaxRate

        public TaxRate()
        Constructs a new empty instance.
      • TaxRate

        protected TaxRate​(boolean noInit)
        Constructs a new empty instance.
      • TaxRate

        public TaxRate​(JSONObject jsonObject)
        Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • TaxRate

        public TaxRate​(TaxRate src)
        Constructs a new instance that is a deep copy of the source instance. It does not copy the bundle or changelog.
    • Method Detail

      • getId

        public String getId()
      • getName

        public String getName()
      • getTaxType

        public TaxType getTaxType()
        to support Argentina's tax type
      • getRate

        public Long getRate()
        For percentage based discounts like sales tax
      • getIsDefault

        public Boolean getIsDefault()
      • getItems

        public List<Reference> getItems()
        Items associated with this tax rate
      • getTaxAmount

        public Long getTaxAmount()
        For a flat tax like recycling redemption fee, expressed as number of cents
      • getDeletedTime

        public Long getDeletedTime()
        Timestamp when tax rate was last deleted
      • getModifiedTime

        public Long getModifiedTime()
        Timestamp when tax rate was last modified
      • getJSONObject

        public JSONObject getJSONObject()
        Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be reflected in this instance and vice-versa.
        Specified by:
        getJSONObject in interface JSONifiable
      • isNotNullId

        public boolean isNotNullId()
        Checks whether the 'id' field is set and is not null
      • isNotNullName

        public boolean isNotNullName()
        Checks whether the 'name' field is set and is not null
      • isNotNullTaxType

        public boolean isNotNullTaxType()
        Checks whether the 'taxType' field is set and is not null
      • isNotNullRate

        public boolean isNotNullRate()
        Checks whether the 'rate' field is set and is not null
      • isNotNullIsDefault

        public boolean isNotNullIsDefault()
        Checks whether the 'isDefault' field is set and is not null
      • isNotNullItems

        public boolean isNotNullItems()
        Checks whether the 'items' field is set and is not null
      • isNotEmptyItems

        public boolean isNotEmptyItems()
        Checks whether the 'items' field is set and is not null and is not empty
      • isNotNullTaxAmount

        public boolean isNotNullTaxAmount()
        Checks whether the 'taxAmount' field is set and is not null
      • isNotNullDeletedTime

        public boolean isNotNullDeletedTime()
        Checks whether the 'deletedTime' field is set and is not null
      • isNotNullModifiedTime

        public boolean isNotNullModifiedTime()
        Checks whether the 'modifiedTime' field is set and is not null
      • hasId

        public boolean hasId()
        Checks whether the 'id' field has been set, however the value could be null
      • hasName

        public boolean hasName()
        Checks whether the 'name' field has been set, however the value could be null
      • hasTaxType

        public boolean hasTaxType()
        Checks whether the 'taxType' field has been set, however the value could be null
      • hasRate

        public boolean hasRate()
        Checks whether the 'rate' field has been set, however the value could be null
      • hasIsDefault

        public boolean hasIsDefault()
        Checks whether the 'isDefault' field has been set, however the value could be null
      • hasItems

        public boolean hasItems()
        Checks whether the 'items' field has been set, however the value could be null
      • hasTaxAmount

        public boolean hasTaxAmount()
        Checks whether the 'taxAmount' field has been set, however the value could be null
      • hasDeletedTime

        public boolean hasDeletedTime()
        Checks whether the 'deletedTime' field has been set, however the value could be null
      • hasModifiedTime

        public boolean hasModifiedTime()
        Checks whether the 'modifiedTime' field has been set, however the value could be null
      • setId

        public TaxRate setId​(String id)
        Sets the field 'id'.
      • setName

        public TaxRate setName​(String name)
        Sets the field 'name'.
      • setTaxType

        public TaxRate setTaxType​(TaxType taxType)
        Sets the field 'taxType'.
      • setRate

        public TaxRate setRate​(Long rate)
        Sets the field 'rate'.
      • setIsDefault

        public TaxRate setIsDefault​(Boolean isDefault)
        Sets the field 'isDefault'.
      • setItems

        public TaxRate setItems​(List<Reference> items)
        Sets the field 'items'. Nulls in the given List are skipped. List parameter is copied, so it will not reflect any changes, but objects inside it will.
      • setTaxAmount

        public TaxRate setTaxAmount​(Long taxAmount)
        Sets the field 'taxAmount'.
      • setDeletedTime

        public TaxRate setDeletedTime​(Long deletedTime)
        Sets the field 'deletedTime'.
      • setModifiedTime

        public TaxRate setModifiedTime​(Long modifiedTime)
        Sets the field 'modifiedTime'.
      • clearId

        public void clearId()
        Clears the 'id' field, the 'has' method for this field will now return false
      • clearName

        public void clearName()
        Clears the 'name' field, the 'has' method for this field will now return false
      • clearTaxType

        public void clearTaxType()
        Clears the 'taxType' field, the 'has' method for this field will now return false
      • clearRate

        public void clearRate()
        Clears the 'rate' field, the 'has' method for this field will now return false
      • clearIsDefault

        public void clearIsDefault()
        Clears the 'isDefault' field, the 'has' method for this field will now return false
      • clearItems

        public void clearItems()
        Clears the 'items' field, the 'has' method for this field will now return false
      • clearTaxAmount

        public void clearTaxAmount()
        Clears the 'taxAmount' field, the 'has' method for this field will now return false
      • clearDeletedTime

        public void clearDeletedTime()
        Clears the 'deletedTime' field, the 'has' method for this field will now return false
      • clearModifiedTime

        public void clearModifiedTime()
        Clears the 'modifiedTime' field, the 'has' method for this field will now return false
      • containsChanges

        public boolean containsChanges()
        Returns true if this instance has any changes.
      • resetChangeLog

        public void resetChangeLog()
        Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
      • copyChanges

        public TaxRate copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

        public void mergeChanges​(TaxRate src)
        Copy all the changed fields from the given source to this instance.