Class VerificationErrorRecursive


  • public class VerificationErrorRecursive
    extends Object
    VerificationErrorRecursive
    • Constructor Detail

      • VerificationErrorRecursive

        public VerificationErrorRecursive()
    • Method Detail

      • capabilities

        public VerificationErrorRecursive capabilities​(List<VerificationErrorRecursive.CapabilitiesEnum> capabilities)
        Contains the capabilities that the verification error applies to.
        Parameters:
        capabilities - Contains the capabilities that the verification error applies to.
        Returns:
        the current VerificationErrorRecursive instance, allowing for method chaining
      • getCapabilities

        public List<VerificationErrorRecursive.CapabilitiesEnum> getCapabilities()
        Contains the capabilities that the verification error applies to.
        Returns:
        capabilities Contains the capabilities that the verification error applies to.
      • setCapabilities

        public void setCapabilities​(List<VerificationErrorRecursive.CapabilitiesEnum> capabilities)
        Contains the capabilities that the verification error applies to.
        Parameters:
        capabilities - Contains the capabilities that the verification error applies to.
      • code

        public VerificationErrorRecursive code​(String code)
        The verification error code.
        Parameters:
        code - The verification error code.
        Returns:
        the current VerificationErrorRecursive instance, allowing for method chaining
      • getCode

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

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

        public VerificationErrorRecursive message​(String message)
        A description of the error.
        Parameters:
        message - A description of the error.
        Returns:
        the current VerificationErrorRecursive instance, allowing for method chaining
      • getMessage

        public String getMessage()
        A description of the error.
        Returns:
        message A description of the error.
      • setMessage

        public void setMessage​(String message)
        A description of the error.
        Parameters:
        message - A description of the error.
      • type

        public VerificationErrorRecursive type​(VerificationErrorRecursive.TypeEnum type)
        The type of error. Possible values: **invalidInput**, **dataMissing**.
        Parameters:
        type - The type of error. Possible values: **invalidInput**, **dataMissing**.
        Returns:
        the current VerificationErrorRecursive instance, allowing for method chaining
      • getType

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

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

        public VerificationErrorRecursive remediatingActions​(List<RemediatingAction> remediatingActions)
        Contains the actions that you can take to resolve the verification error.
        Parameters:
        remediatingActions - Contains the actions that you can take to resolve the verification error.
        Returns:
        the current VerificationErrorRecursive instance, allowing for method chaining
      • getRemediatingActions

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

        public void setRemediatingActions​(List<RemediatingAction> remediatingActions)
        Contains the actions that you can take to resolve the verification error.
        Parameters:
        remediatingActions - Contains the actions that you can take to resolve the verification error.
      • 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