package com.experian.payline.ws.obj;
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
*
*
* <p>Java class for interlocutor complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "interlocutor", 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;
}
}