Class RevealPinResponse


  • public class RevealPinResponse
    extends Object
    RevealPinResponse
    • Constructor Detail

      • RevealPinResponse

        public RevealPinResponse()
    • Method Detail

      • getEncryptedPinBlock

        public String getEncryptedPinBlock()
        The encrypted [PIN block](https://www.pcisecuritystandards.org/glossary/pin-block).
        Returns:
        encryptedPinBlock
      • setEncryptedPinBlock

        public void setEncryptedPinBlock​(String encryptedPinBlock)
        The encrypted [PIN block](https://www.pcisecuritystandards.org/glossary/pin-block).
        Parameters:
        encryptedPinBlock -
      • getToken

        public String getToken()
        The 16-digit token that you need to extract the `encryptedPinBlock`.
        Returns:
        token
      • setToken

        public void setToken​(String token)
        The 16-digit token that you need to extract the `encryptedPinBlock`.
        Parameters:
        token -
      • equals

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

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

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

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