Class CreditRefundResponse

    • Constructor Detail

      • CreditRefundResponse

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

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

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

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

      • getRequestSuccessful

        public Boolean getRequestSuccessful()
      • getResponseErrorMessage

        public String getResponseErrorMessage()
      • getClientData

        public Map<String,​String> getClientData()
        Additional data sent back from the gateway
      • 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
      • isNotNullRequestSuccessful

        public boolean isNotNullRequestSuccessful()
        Checks whether the 'requestSuccessful' field is set and is not null
      • isNotNullResponseErrorMessage

        public boolean isNotNullResponseErrorMessage()
        Checks whether the 'responseErrorMessage' field is set and is not null
      • isNotNullCreditRefund

        public boolean isNotNullCreditRefund()
        Checks whether the 'creditRefund' field is set and is not null
      • isNotNullClientData

        public boolean isNotNullClientData()
        Checks whether the 'clientData' field is set and is not null
      • isNotEmptyClientData

        public boolean isNotEmptyClientData()
        Checks whether the 'clientData' field is set and is not null and is not empty
      • hasRequestSuccessful

        public boolean hasRequestSuccessful()
        Checks whether the 'requestSuccessful' field has been set, however the value could be null
      • hasResponseErrorMessage

        public boolean hasResponseErrorMessage()
        Checks whether the 'responseErrorMessage' field has been set, however the value could be null
      • hasCreditRefund

        public boolean hasCreditRefund()
        Checks whether the 'creditRefund' field has been set, however the value could be null
      • hasClientData

        public boolean hasClientData()
        Checks whether the 'clientData' field has been set, however the value could be null
      • setRequestSuccessful

        public CreditRefundResponse setRequestSuccessful​(Boolean requestSuccessful)
        Sets the field 'requestSuccessful'.
      • setResponseErrorMessage

        public CreditRefundResponse setResponseErrorMessage​(String responseErrorMessage)
        Sets the field 'responseErrorMessage'.
      • setCreditRefund

        public CreditRefundResponse setCreditRefund​(CreditRefund creditRefund)
        Sets the field 'creditRefund'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • clearRequestSuccessful

        public void clearRequestSuccessful()
        Clears the 'requestSuccessful' field, the 'has' method for this field will now return false
      • clearResponseErrorMessage

        public void clearResponseErrorMessage()
        Clears the 'responseErrorMessage' field, the 'has' method for this field will now return false
      • clearCreditRefund

        public void clearCreditRefund()
        Clears the 'creditRefund' field, the 'has' method for this field will now return false
      • clearClientData

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

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