package com.experian.payline.ws.impl;
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;
import com.experian.payline.ws.obj.Card;
import com.experian.payline.ws.obj.Payment;
/**
*
* This element is the request for the
* verifyEnrollment method
*
*
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="card" type="{http://obj.ws.payline.experian.com}card"/>
* <element name="payment" type="{http://obj.ws.payline.experian.com}payment"/>
* <element name="orderRef" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="mdFieldValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"card",
"payment",
"orderRef",
"mdFieldValue"
})
@XmlRootElement(name = "verifyEnrollmentRequest")
public class VerifyEnrollmentRequest {
@XmlElement(required = true)
protected Card card;
@XmlElement(required = true)
protected Payment payment;
@XmlElement(required = true)
protected String orderRef;
@XmlElement(required = true, nillable = true)
protected String mdFieldValue;
/**
* Gets the value of the card property.
*
* @return
* possible object is
* {@link Card }
*
*/
public Card getCard() {
return card;
}
/**
* Sets the value of the card property.
*
* @param value
* allowed object is
* {@link Card }
*
*/
public void setCard(Card value) {
this.card = value;
}
/**
* Gets the value of the payment property.
*
* @return
* possible object is
* {@link Payment }
*
*/
public Payment getPayment() {
return payment;
}
/**
* Sets the value of the payment property.
*
* @param value
* allowed object is
* {@link Payment }
*
*/
public void setPayment(Payment value) {
this.payment = value;
}
/**
* Gets the value of the orderRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderRef() {
return orderRef;
}
/**
* Sets the value of the orderRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderRef(String value) {
this.orderRef = value;
}
/**
* Gets the value of the mdFieldValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMdFieldValue() {
return mdFieldValue;
}
/**
* Sets the value of the mdFieldValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMdFieldValue(String value) {
this.mdFieldValue = value;
}
}