Class GatewayTxAnalytic

    • Constructor Detail

      • GatewayTxAnalytic

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

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

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

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

      • getType

        public String getType()
      • getResponseCode

        public String getResponseCode()
      • getCreatedTime

        public Long getCreatedTime()
      • getAdjustAmount

        public Integer getAdjustAmount()
      • getRefnum

        public String getRefnum()
      • getMerchantGatewayId

        public Long getMerchantGatewayId()
      • 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
      • isNotNullType

        public boolean isNotNullType()
        Checks whether the 'type' field is set and is not null
      • isNotNullResponseCode

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

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

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

        public boolean isNotNullRefnum()
        Checks whether the 'refnum' field is set and is not null
      • isNotNullMerchantGatewayId

        public boolean isNotNullMerchantGatewayId()
        Checks whether the 'merchantGatewayId' field is set and is not null
      • hasType

        public boolean hasType()
        Checks whether the 'type' field has been set, however the value could be null
      • hasResponseCode

        public boolean hasResponseCode()
        Checks whether the 'responseCode' 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
      • hasAdjustAmount

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

        public boolean hasRefnum()
        Checks whether the 'refnum' field has been set, however the value could be null
      • hasMerchantGatewayId

        public boolean hasMerchantGatewayId()
        Checks whether the 'merchantGatewayId' field has been set, however the value could be null
      • setResponseCode

        public GatewayTxAnalytic setResponseCode​(String responseCode)
        Sets the field 'responseCode'.
      • setCreatedTime

        public GatewayTxAnalytic setCreatedTime​(Long createdTime)
        Sets the field 'createdTime'.
      • setMerchantGatewayId

        public GatewayTxAnalytic setMerchantGatewayId​(Long merchantGatewayId)
        Sets the field 'merchantGatewayId'.
      • clearType

        public void clearType()
        Clears the 'type' field, the 'has' method for this field will now return false
      • clearResponseCode

        public void clearResponseCode()
        Clears the 'responseCode' 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
      • clearAdjustAmount

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

        public void clearRefnum()
        Clears the 'refnum' field, the 'has' method for this field will now return false
      • clearMerchantGatewayId

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

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