Class AdyenErrorResponse

java.lang.Object
com.broadleafcommerce.adyen.domain.AdyenErrorResponse
All Implemented Interfaces:
Serializable

public class AdyenErrorResponse extends Object implements Serializable
This component represents the Adyen API error response model.
Author:
Dima Myroniuk (dmyroniuk)
See Also:
  • Constructor Details

    • AdyenErrorResponse

      public AdyenErrorResponse()
  • Method Details

    • setStatus

      public void setStatus(Integer status)
      The HTTP response status.
    • setErrorCode

      public void setErrorCode(String errorCode)
      The error code mapped to the error message.
    • setErrorType

      public void setErrorType(String errorType)
      The category of the error.
    • setMessage

      public void setMessage(String message)
      A short explanation of the issue.
    • setPspReference

      public void setPspReference(String pspReference)
      The PSP reference of the payment.
    • setAdditionalData

      public void setAdditionalData(Map<String,Object> additionalData)
      Contains additional information about the payment.
    • getStatus

      public Integer getStatus()
      The HTTP response status.
    • getErrorCode

      public String getErrorCode()
      The error code mapped to the error message.
    • getErrorType

      public String getErrorType()
      The category of the error.
    • getMessage

      public String getMessage()
      A short explanation of the issue.
    • getPspReference

      public String getPspReference()
      The PSP reference of the payment.
    • getAdditionalData

      public Map<String,Object> getAdditionalData()
      Contains additional information about the payment.