com.payline.ws.model.GetWebWalletResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payline-java-sdk Show documentation
Show all versions of payline-java-sdk Show documentation
The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
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
* getWebWallet
* 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="wallet" type="{http://obj.ws.payline.experian.com}wallet"/>
* <element name="owner" type="{http://obj.ws.payline.experian.com}owner"/>
* <element name="privateDataList" type="{http://obj.ws.payline.experian.com}privateDataList"/>
* <element name="extendedCard" type="{http://obj.ws.payline.experian.com}extendedCardType"/>
* <element name="media" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="numberOfAttempt" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="contractNumberWalletList" type="{http://obj.ws.payline.experian.com}contractNumberWalletList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"result",
"wallet",
"owner",
"privateDataList",
"extendedCard",
"media",
"numberOfAttempt",
"contractNumberWalletList"
})
@XmlRootElement(name = "getWebWalletResponse")
public class GetWebWalletResponse {
@XmlElement(required = true)
protected Result result;
@XmlElement(required = true, nillable = true)
protected Wallet wallet;
@XmlElement(required = true, nillable = true)
protected Owner owner;
@XmlElement(required = true, nillable = true)
protected PrivateDataList privateDataList;
@XmlElement(required = true)
protected ExtendedCardType extendedCard;
@XmlElement(required = true, nillable = true)
protected String media;
@XmlElement(required = true, nillable = true)
protected String numberOfAttempt;
@XmlElement(nillable = true)
protected ContractNumberWalletList contractNumberWalletList;
/**
* 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 wallet property.
*
* @return
* possible object is
* {@link Wallet }
*
*/
public Wallet getWallet() {
return wallet;
}
/**
* Sets the value of the wallet property.
*
* @param value
* allowed object is
* {@link Wallet }
*
*/
public void setWallet(Wallet value) {
this.wallet = 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;
}
/**
* Gets the value of the extendedCard property.
*
* @return
* possible object is
* {@link ExtendedCardType }
*
*/
public ExtendedCardType getExtendedCard() {
return extendedCard;
}
/**
* Sets the value of the extendedCard property.
*
* @param value
* allowed object is
* {@link ExtendedCardType }
*
*/
public void setExtendedCard(ExtendedCardType value) {
this.extendedCard = value;
}
/**
* Gets the value of the media property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMedia() {
return media;
}
/**
* Sets the value of the media property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMedia(String value) {
this.media = value;
}
/**
* Gets the value of the numberOfAttempt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNumberOfAttempt() {
return numberOfAttempt;
}
/**
* Sets the value of the numberOfAttempt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNumberOfAttempt(String value) {
this.numberOfAttempt = value;
}
/**
* Gets the value of the contractNumberWalletList property.
*
* @return
* possible object is
* {@link ContractNumberWalletList }
*
*/
public ContractNumberWalletList getContractNumberWalletList() {
return contractNumberWalletList;
}
/**
* Sets the value of the contractNumberWalletList property.
*
* @param value
* allowed object is
* {@link ContractNumberWalletList }
*
*/
public void setContractNumberWalletList(ContractNumberWalletList value) {
this.contractNumberWalletList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy