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

com.payline.ws.model.GetTokenRequest 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="cardNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="expirationDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="contractNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "cardNumber", "expirationDate", "contractNumber" }) @XmlRootElement(name = "getTokenRequest") public class GetTokenRequest { @XmlElement(required = true) protected String cardNumber; @XmlElement(required = true, nillable = true) protected String expirationDate; @XmlElement(required = true) protected String contractNumber; /** * Gets the value of the cardNumber property. * * @return * possible object is * {@link String } * */ public String getCardNumber() { return cardNumber; } /** * Sets the value of the cardNumber property. * * @param value * allowed object is * {@link String } * */ public void setCardNumber(String value) { this.cardNumber = 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 contractNumber property. * * @return * possible object is * {@link String } * */ public String getContractNumber() { return contractNumber; } /** * Sets the value of the contractNumber property. * * @param value * allowed object is * {@link String } * */ public void setContractNumber(String value) { this.contractNumber = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy