com.payline.ws.model.GetCardsResponse 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;
/**
*
* This element is the reponse from the
* getCards method
*
*
* 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="result" type="{http://obj.ws.payline.experian.com}result"/>
* <element name="cardsList" type="{http://obj.ws.payline.experian.com}cardsList"/>
* <element name="owner" type="{http://obj.ws.payline.experian.com}owner"/>
* <element name="privateDataList" type="{http://obj.ws.payline.experian.com}privateDataList"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"result",
"cardsList",
"owner",
"privateDataList"
})
@XmlRootElement(name = "getCardsResponse")
public class GetCardsResponse {
@XmlElement(required = true)
protected Result result;
@XmlElement(required = true, nillable = true)
protected CardsList cardsList;
@XmlElement(required = true, nillable = true)
protected Owner owner;
@XmlElement(required = true, nillable = true)
protected PrivateDataList privateDataList;
/**
* Gets the value of the result property.
*
* @return
* possible object is
* {@link Result }
*
*/
public Result getResult() {
return result;
}
/**
* Sets the value of the result property.
*
* @param value
* allowed object is
* {@link Result }
*
*/
public void setResult(Result value) {
this.result = value;
}
/**
* Gets the value of the cardsList property.
*
* @return
* possible object is
* {@link CardsList }
*
*/
public CardsList getCardsList() {
return cardsList;
}
/**
* Sets the value of the cardsList property.
*
* @param value
* allowed object is
* {@link CardsList }
*
*/
public void setCardsList(CardsList value) {
this.cardsList = value;
}
/**
* Gets the value of the owner property.
*
* @return
* possible object is
* {@link Owner }
*
*/
public Owner getOwner() {
return owner;
}
/**
* Sets the value of the owner property.
*
* @param value
* allowed object is
* {@link Owner }
*
*/
public void setOwner(Owner value) {
this.owner = value;
}
/**
* Gets the value of the privateDataList property.
*
* @return
* possible object is
* {@link PrivateDataList }
*
*/
public PrivateDataList getPrivateDataList() {
return privateDataList;
}
/**
* Sets the value of the privateDataList property.
*
* @param value
* allowed object is
* {@link PrivateDataList }
*
*/
public void setPrivateDataList(PrivateDataList value) {
this.privateDataList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy