com.payline.ws.model.BankAccountData 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.XmlType;
/**
*
* This element contains bank Account information
*
*
* Java class for bankAccountData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="bankAccountData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="countryCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="bankCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accountNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "bankAccountData", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"countryCode",
"bankCode",
"accountNumber",
"key"
})
public class BankAccountData {
@XmlElement(required = true, nillable = true)
protected String countryCode;
@XmlElement(required = true, nillable = true)
protected String bankCode;
@XmlElement(required = true, nillable = true)
protected String accountNumber;
@XmlElement(required = true, nillable = true)
protected String key;
/**
* Gets the value of the countryCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryCode() {
return countryCode;
}
/**
* Sets the value of the countryCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryCode(String value) {
this.countryCode = value;
}
/**
* Gets the value of the bankCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBankCode() {
return bankCode;
}
/**
* Sets the value of the bankCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBankCode(String value) {
this.bankCode = value;
}
/**
* Gets the value of the accountNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountNumber() {
return accountNumber;
}
/**
* Sets the value of the accountNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountNumber(String value) {
this.accountNumber = value;
}
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy