Package com.adyen.model.nexo
Class PaymentToken
- java.lang.Object
-
- com.adyen.model.nexo.PaymentToken
-
public class PaymentToken extends Object
Definition: Surrogate of the PAN (Primary Account Number) of the payment card to identify the payment mean of the customer. -- Usage: It allows, for a merchant, to identify the customer.Java class for PaymentToken complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PaymentToken"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="TokenRequested" use="required" type="{}TokenRequestedType" /> <attribute name="TokenValue" use="required" type="{}TokenValue" /> <attribute name="ExpiryDateTime" type="{}ExpiryDateTime" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected XMLGregorianCalendarexpiryDateTimeThe Expiry date time.protected TokenRequestedTypetokenRequestedTypeThe Token requested.protected StringtokenValueThe Token value.
-
Constructor Summary
Constructors Constructor Description PaymentToken()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XMLGregorianCalendargetExpiryDateTime()Gets the value of the expiryDateTime property.TokenRequestedTypegetTokenRequestedType()Gets the value of the tokenRequestedType property.StringgetTokenValue()Gets the value of the tokenValue property.voidsetExpiryDateTime(XMLGregorianCalendar value)Sets the value of the expiryDateTime property.voidsetTokenRequestedType(TokenRequestedType value)Sets the value of the tokenRequestedType property.voidsetTokenValue(String value)Sets the value of the tokenValue property.
-
-
-
Field Detail
-
tokenRequestedType
protected TokenRequestedType tokenRequestedType
The Token requested.
-
tokenValue
protected String tokenValue
The Token value.
-
expiryDateTime
protected XMLGregorianCalendar expiryDateTime
The Expiry date time.
-
-
Method Detail
-
getTokenRequestedType
public TokenRequestedType getTokenRequestedType()
Gets the value of the tokenRequestedType property.- Returns:
- possible object is
TokenRequestedType
-
setTokenRequestedType
public void setTokenRequestedType(TokenRequestedType value)
Sets the value of the tokenRequestedType property.- Parameters:
value- allowed object isTokenRequestedType
-
getTokenValue
public String getTokenValue()
Gets the value of the tokenValue property.- Returns:
- possible object is
String
-
setTokenValue
public void setTokenValue(String value)
Sets the value of the tokenValue property.- Parameters:
value- allowed object isString
-
getExpiryDateTime
public XMLGregorianCalendar getExpiryDateTime()
Gets the value of the expiryDateTime property.- Returns:
- possible object is
XMLGregorianCalendar
-
setExpiryDateTime
public void setExpiryDateTime(XMLGregorianCalendar value)
Sets the value of the expiryDateTime property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
-