com.payline.ws.model.PaymentData 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.XmlType;
/**
*
* This element contains information about the paymentData
*
*
* Java class for paymentData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="paymentData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="transactionID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="network" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tokenData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "paymentData", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"transactionID",
"network",
"tokenData"
})
public class PaymentData {
protected String transactionID;
protected String network;
protected String tokenData;
/**
* Gets the value of the transactionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransactionID() {
return transactionID;
}
/**
* Sets the value of the transactionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransactionID(String value) {
this.transactionID = value;
}
/**
* Gets the value of the network property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetwork() {
return network;
}
/**
* Sets the value of the network property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNetwork(String value) {
this.network = value;
}
/**
* Gets the value of the tokenData property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTokenData() {
return tokenData;
}
/**
* Sets the value of the tokenData property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTokenData(String value) {
this.tokenData = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy