Class VerificationErrorRecursive


  • public class VerificationErrorRecursive
    extends Object
    VerificationErrorRecursive
    • Constructor Detail

      • VerificationErrorRecursive

        public VerificationErrorRecursive()
    • Method Detail

      • getCode

        public String getCode()
        The verification error code.
        Returns:
        code
      • setCode

        public void setCode​(String code)
        The verification error code.
        Parameters:
        code -
      • getMessage

        public String getMessage()
        The verification error message.
        Returns:
        message
      • setMessage

        public void setMessage​(String message)
        The verification error message.
        Parameters:
        message -
      • getType

        public VerificationErrorRecursive.TypeEnum getType()
        The type of verification error. Possible values: **invalidInput**, **dataMissing**, and **pendingStatus**.
        Returns:
        type
      • setType

        public void setType​(VerificationErrorRecursive.TypeEnum type)
        The type of verification error. Possible values: **invalidInput**, **dataMissing**, and **pendingStatus**.
        Parameters:
        type -
      • getRemediatingActions

        public List<RemediatingAction> getRemediatingActions()
        The actions that you can take to resolve the verification error.
        Returns:
        remediatingActions
      • setRemediatingActions

        public void setRemediatingActions​(List<RemediatingAction> remediatingActions)
        The actions that you can take to resolve the verification error.
        Parameters:
        remediatingActions -
      • equals

        public boolean equals​(Object o)
        Return true if this VerificationError-recursive object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static VerificationErrorRecursive fromJson​(String jsonString)
                                                   throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of VerificationErrorRecursive given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of VerificationErrorRecursive
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to VerificationErrorRecursive
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of VerificationErrorRecursive to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException