All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payline.ws.model.CardOut Maven / Gradle / Ivy


package com.payline.ws.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for cardOut complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="cardOut">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cardholder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="panType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "cardOut", namespace = "http://obj.ws.payline.experian.com", propOrder = { "number", "type", "expirationDate", "cardholder", "token", "panType" }) public class CardOut { @XmlElement(nillable = true) protected String number; @XmlElement(nillable = true) protected String type; @XmlElement(nillable = true) protected String expirationDate; @XmlElement(nillable = true) protected String cardholder; @XmlElement(nillable = true) protected String token; @XmlElement(nillable = true) protected String panType; /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the expirationDate property. * * @return * possible object is * {@link String } * */ public String getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is * {@link String } * */ public void setExpirationDate(String value) { this.expirationDate = value; } /** * Gets the value of the cardholder property. * * @return * possible object is * {@link String } * */ public String getCardholder() { return cardholder; } /** * Sets the value of the cardholder property. * * @param value * allowed object is * {@link String } * */ public void setCardholder(String value) { this.cardholder = value; } /** * Gets the value of the token property. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Sets the value of the token property. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } /** * Gets the value of the panType property. * * @return * possible object is * {@link String } * */ public String getPanType() { return panType; } /** * Sets the value of the panType property. * * @param value * allowed object is * {@link String } * */ public void setPanType(String value) { this.panType = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy