com.adyen.model.nexo.PINResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PINResponse", propOrder = {
"response",
"cardholderPIN"
})
public class PINResponse {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
protected Response response;
/**
* The Cardholder pin.
*/
@XmlElement(name = "CardholderPIN")
protected CardholderPIN cardholderPIN;
/**
* Gets the value of the response property.
*
* @return possible object is {@link Response }
*/
public Response getResponse() {
return response;
}
/**
* Sets the value of the response property.
*
* @param value allowed object is {@link Response }
*/
public void setResponse(Response value) {
this.response = value;
}
/**
* Gets the value of the cardholderPIN property.
*
* @return possible object is {@link CardholderPIN }
*/
public CardholderPIN getCardholderPIN() {
return cardholderPIN;
}
/**
* Sets the value of the cardholderPIN property.
*
* @param value allowed object is {@link CardholderPIN }
*/
public void setCardholderPIN(CardholderPIN value) {
this.cardholderPIN = value;
}
}