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

com.payline.ws.model.Interlocutor Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.77.1
Show newest version

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 Interlocutor
 * 					
 * 
 * 

Java class for interlocutor complex type. * *

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

 * <complexType name="interlocutor">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mobile" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="addressInterlocutor" type="{http://obj.ws.payline.experian.com}addressInterlocutor"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "interlocutor", namespace = "http://obj.ws.payline.experian.com", propOrder = { "firstName", "lastName", "email", "phone", "mobile", "fax", "addressInterlocutor" }) public class Interlocutor { @XmlElement(required = true, nillable = true) protected String firstName; @XmlElement(required = true, nillable = true) protected String lastName; @XmlElement(required = true, nillable = true) protected String email; @XmlElement(required = true, nillable = true) protected String phone; @XmlElement(required = true, nillable = true) protected String mobile; @XmlElement(required = true, nillable = true) protected String fax; @XmlElement(required = true, nillable = true) protected AddressInterlocutor addressInterlocutor; /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = value; } /** * Gets the value of the mobile property. * * @return * possible object is * {@link String } * */ public String getMobile() { return mobile; } /** * Sets the value of the mobile property. * * @param value * allowed object is * {@link String } * */ public void setMobile(String value) { this.mobile = value; } /** * Gets the value of the fax property. * * @return * possible object is * {@link String } * */ public String getFax() { return fax; } /** * Sets the value of the fax property. * * @param value * allowed object is * {@link String } * */ public void setFax(String value) { this.fax = value; } /** * Gets the value of the addressInterlocutor property. * * @return * possible object is * {@link AddressInterlocutor } * */ public AddressInterlocutor getAddressInterlocutor() { return addressInterlocutor; } /** * Sets the value of the addressInterlocutor property. * * @param value * allowed object is * {@link AddressInterlocutor } * */ public void setAddressInterlocutor(AddressInterlocutor value) { this.addressInterlocutor = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy