com.adyen.model.nexo.PINRequest 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.math.BigInteger;
/**
* Definition: Content of the PIN Request messageType. -- Usage: It contains the type of request related to the PIN, and the associated parameters.
*
* Java class for PINRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PINRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CardholderPIN" type="{}CardholderPIN" minOccurs="0"/>
* </sequence>
* <attribute name="PINRequest" use="required" type="{}PINRequestType" />
* <attribute name="PINVerifMethod" type="{}PINVerifMethod" />
* <attribute name="AdditionalInput" type="{}AdditionalInput" />
* <attribute name="PINEncAlgorithm" type="{}PINEncAlgorithm" />
* <attribute name="PINFormat" type="{}PINFormatType" />
* <attribute name="KeyReference" type="{}KeyReference" />
* <attribute name="MaxWaitingTime" type="{}MaxWaitingTime" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PINRequest", propOrder = {
"cardholderPIN"
})
public class PINRequest {
/**
* The Cardholder pin.
*/
@XmlElement(name = "CardholderPIN")
protected CardholderPIN cardholderPIN;
/**
* The Pin request.
*/
@XmlAttribute(name = "PINRequestType", required = true)
protected PINRequestType pinRequestType;
/**
* The Pin verif method.
*/
@XmlAttribute(name = "PINVerifMethod")
protected String pinVerifMethod;
/**
* The Additional input.
*/
@XmlAttribute(name = "AdditionalInput")
protected String additionalInput;
/**
* The Pin enc algorithm.
*/
@XmlAttribute(name = "PINEncAlgorithm")
protected String pinEncAlgorithm;
/**
* The Pin format.
*/
@XmlAttribute(name = "PINFormat")
protected PINFormatType pinFormat;
/**
* The Key reference.
*/
@XmlAttribute(name = "KeyReference")
protected String keyReference;
/**
* The Max waiting time.
*/
@XmlAttribute(name = "MaxWaitingTime")
protected BigInteger maxWaitingTime;
/**
* 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;
}
/**
* Gets the value of the pinRequestType property.
*
* @return possible object is {@link PINRequestType }
*/
public PINRequestType getPINRequestType() {
return pinRequestType;
}
/**
* Sets the value of the pinRequestType property.
*
* @param value allowed object is {@link PINRequestType }
*/
public void setPINRequestType(PINRequestType value) {
this.pinRequestType = value;
}
/**
* Gets the value of the pinVerifMethod property.
*
* @return possible object is {@link String }
*/
public String getPINVerifMethod() {
return pinVerifMethod;
}
/**
* Sets the value of the pinVerifMethod property.
*
* @param value allowed object is {@link String }
*/
public void setPINVerifMethod(String value) {
this.pinVerifMethod = value;
}
/**
* Gets the value of the additionalInput property.
*
* @return possible object is {@link String }
*/
public String getAdditionalInput() {
return additionalInput;
}
/**
* Sets the value of the additionalInput property.
*
* @param value allowed object is {@link String }
*/
public void setAdditionalInput(String value) {
this.additionalInput = value;
}
/**
* Gets the value of the pinEncAlgorithm property.
*
* @return possible object is {@link String }
*/
public String getPINEncAlgorithm() {
return pinEncAlgorithm;
}
/**
* Sets the value of the pinEncAlgorithm property.
*
* @param value allowed object is {@link String }
*/
public void setPINEncAlgorithm(String value) {
this.pinEncAlgorithm = value;
}
/**
* Gets the value of the pinFormat property.
*
* @return possible object is {@link PINFormatType }
*/
public PINFormatType getPINFormat() {
return pinFormat;
}
/**
* Sets the value of the pinFormat property.
*
* @param value allowed object is {@link PINFormatType }
*/
public void setPINFormat(PINFormatType value) {
this.pinFormat = value;
}
/**
* Gets the value of the keyReference property.
*
* @return possible object is {@link String }
*/
public String getKeyReference() {
return keyReference;
}
/**
* Sets the value of the keyReference property.
*
* @param value allowed object is {@link String }
*/
public void setKeyReference(String value) {
this.keyReference = value;
}
/**
* Gets the value of the maxWaitingTime property.
*
* @return possible object is {@link BigInteger }
*/
public BigInteger getMaxWaitingTime() {
return maxWaitingTime;
}
/**
* Sets the value of the maxWaitingTime property.
*
* @param value allowed object is {@link BigInteger }
*/
public void setMaxWaitingTime(BigInteger value) {
this.maxWaitingTime = value;
}
}