Class Discount

    • Constructor Detail

      • Discount

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

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

        public Discount​(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.
      • Discount

        public Discount​(Discount 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()
        Unique identifier
      • getDiscount

        public Reference getDiscount()
        If this item is based on a standard discount, this will point to the appropriate inventory.Discount
      • getApprover

        public Reference getApprover()
        The person that authorized a discount
      • getName

        public String getName()
        Name of the discount
      • getAmount

        public Long getAmount()
        Discount amount in fraction of currency unit (e.g. cents) based on currency fraction digits supported
      • getPercentage

        public Long getPercentage()
        Discount amount in percent
      • 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
      • isNotNullDiscount

        public boolean isNotNullDiscount()
        Checks whether the 'discount' field is set and is not null
      • isNotNullApprover

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

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

        public boolean isNotNullAmount()
        Checks whether the 'amount' field is set and is not null
      • isNotNullPercentage

        public boolean isNotNullPercentage()
        Checks whether the 'percentage' 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
      • hasDiscount

        public boolean hasDiscount()
        Checks whether the 'discount' field has been set, however the value could be null
      • hasApprover

        public boolean hasApprover()
        Checks whether the 'approver' 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
      • hasAmount

        public boolean hasAmount()
        Checks whether the 'amount' field has been set, however the value could be null
      • hasPercentage

        public boolean hasPercentage()
        Checks whether the 'percentage' field has been set, however the value could be null
      • setDiscount

        public Discount setDiscount​(Reference discount)
        Sets the field 'discount'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • setApprover

        public Discount setApprover​(Reference approver)
        Sets the field 'approver'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • setName

        public Discount setName​(String name)
        Sets the field 'name'.
      • setAmount

        public Discount setAmount​(Long amount)
        Sets the field 'amount'.
      • setPercentage

        public Discount setPercentage​(Long percentage)
        Sets the field 'percentage'.
      • clearId

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

        public void clearDiscount()
        Clears the 'discount' field, the 'has' method for this field will now return false
      • clearApprover

        public void clearApprover()
        Clears the 'approver' 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
      • clearAmount

        public void clearAmount()
        Clears the 'amount' field, the 'has' method for this field will now return false
      • clearPercentage

        public void clearPercentage()
        Clears the 'percentage' 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 Discount copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

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