Package com.adyen.model.nexo
Class PINResponse
- java.lang.Object
-
- com.adyen.model.nexo.PINResponse
-
public class PINResponse extends Object
Definition: Content of the PIN Response messageType. -- Usage: It contains the result of the requested service, with possibly the encrypted PIN.Java class for PINResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PINResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="CardholderPIN" type="{}CardholderPIN" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CardholderPINcardholderPINThe Cardholder pin.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description PINResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CardholderPINgetCardholderPIN()Gets the value of the cardholderPIN property.ResponsegetResponse()Gets the value of the response property.voidsetCardholderPIN(CardholderPIN value)Sets the value of the cardholderPIN property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
cardholderPIN
protected CardholderPIN cardholderPIN
The Cardholder pin.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getCardholderPIN
public CardholderPIN getCardholderPIN()
Gets the value of the cardholderPIN property.- Returns:
- possible object is
CardholderPIN
-
setCardholderPIN
public void setCardholderPIN(CardholderPIN value)
Sets the value of the cardholderPIN property.- Parameters:
value- allowed object isCardholderPIN
-
-