All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.payline.ws.model.Creditor 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.XmlType;


/**
 * 
 * 						This element contains information about the
 * 						creditor
 * 					
 * 
 * 

Java class for creditor complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="creditor">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "creditor", namespace = "http://obj.ws.payline.experian.com", propOrder = { "bic", "iban", "name" }) public class Creditor { @XmlElement(required = true) protected String bic; @XmlElement(required = true) protected String iban; @XmlElement(required = true) protected String name; /** * Gets the value of the bic property. * * @return * possible object is * {@link String } * */ public String getBic() { return bic; } /** * Sets the value of the bic property. * * @param value * allowed object is * {@link String } * */ public void setBic(String value) { this.bic = value; } /** * Gets the value of the iban property. * * @return * possible object is * {@link String } * */ public String getIban() { return iban; } /** * Sets the value of the iban property. * * @param value * allowed object is * {@link String } * */ public void setIban(String value) { this.iban = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy