Class TipAdjustedPayload

    • Constructor Detail

      • TipAdjustedPayload

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

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

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

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

      • getAdjustAmount

        public Integer getAdjustAmount()
        Adjusted amount like tip, auth or cash back
      • getCreatedTime

        public Long getCreatedTime()
      • getMerchant

        public Reference getMerchant()
      • 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
      • isNotNullAdjustAmount

        public boolean isNotNullAdjustAmount()
        Checks whether the 'adjustAmount' field is set and is not null
      • isNotNullCreatedTime

        public boolean isNotNullCreatedTime()
        Checks whether the 'createdTime' field is set and is not null
      • isNotNullMerchant

        public boolean isNotNullMerchant()
        Checks whether the 'merchant' field is set and is not null
      • isNotNullCardTransaction

        public boolean isNotNullCardTransaction()
        Checks whether the 'cardTransaction' field is set and is not null
      • hasAdjustAmount

        public boolean hasAdjustAmount()
        Checks whether the 'adjustAmount' field has been set, however the value could be null
      • hasCreatedTime

        public boolean hasCreatedTime()
        Checks whether the 'createdTime' field has been set, however the value could be null
      • hasMerchant

        public boolean hasMerchant()
        Checks whether the 'merchant' field has been set, however the value could be null
      • hasCardTransaction

        public boolean hasCardTransaction()
        Checks whether the 'cardTransaction' field has been set, however the value could be null
      • setCreatedTime

        public TipAdjustedPayload setCreatedTime​(Long createdTime)
        Sets the field 'createdTime'.
      • setMerchant

        public TipAdjustedPayload setMerchant​(Reference merchant)
        Sets the field 'merchant'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • setCardTransaction

        public TipAdjustedPayload setCardTransaction​(CardTransaction cardTransaction)
        Sets the field 'cardTransaction'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • clearAdjustAmount

        public void clearAdjustAmount()
        Clears the 'adjustAmount' field, the 'has' method for this field will now return false
      • clearCreatedTime

        public void clearCreatedTime()
        Clears the 'createdTime' field, the 'has' method for this field will now return false
      • clearMerchant

        public void clearMerchant()
        Clears the 'merchant' field, the 'has' method for this field will now return false
      • clearCardTransaction

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

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