Class RefundResponse

    • Constructor Detail

      • RefundResponse

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

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

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

        public RefundResponse​(RefundResponse 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()
      • getRefund

        public Refund getRefund()
      • getPayment

        public Payment getPayment()
      • 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
      • isNotNullRefund

        public boolean isNotNullRefund()
        Checks whether the 'refund' field is set and is not null
      • isNotNullPayment

        public boolean isNotNullPayment()
        Checks whether the 'payment' field is set and is not null
      • isNotNullExtra

        public boolean isNotNullExtra()
        Checks whether the 'extra' field is set and is not null
      • isNotEmptyExtra

        public boolean isNotEmptyExtra()
        Checks whether the 'extra' 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
      • hasRefund

        public boolean hasRefund()
        Checks whether the 'refund' field has been set, however the value could be null
      • hasPayment

        public boolean hasPayment()
        Checks whether the 'payment' field has been set, however the value could be null
      • hasExtra

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

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

        public RefundResponse setResponseErrorMessage​(String responseErrorMessage)
        Sets the field 'responseErrorMessage'.
      • setRefund

        public RefundResponse setRefund​(Refund refund)
        Sets the field 'refund'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • setPayment

        public RefundResponse setPayment​(Payment payment)
        Sets the field 'payment'. 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
      • clearRefund

        public void clearRefund()
        Clears the 'refund' field, the 'has' method for this field will now return false
      • clearPayment

        public void clearPayment()
        Clears the 'payment' field, the 'has' method for this field will now return false
      • clearExtra

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

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