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 address * * * <p>Java class for addressInterlocutor complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="addressInterlocutor"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="street1" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="street2" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="zipCode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="state" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "addressInterlocutor", propOrder = { "street1", "street2", "city", "zipCode", "state", "country" }) public class AddressInterlocutor { @XmlElement(required = true, nillable = true) protected String street1; @XmlElement(required = true, nillable = true) protected String street2; @XmlElement(required = true, nillable = true) protected String city; @XmlElement(required = true, nillable = true) protected String zipCode; @XmlElement(required = true, nillable = true) protected String state; @XmlElement(required = true, nillable = true) protected String country; /** * Gets the value of the street1 property. * * @return * possible object is * {@link String } * */ public String getStreet1() { return street1; } /** * Sets the value of the street1 property. * * @param value * allowed object is * {@link String } * */ public void setStreet1(String value) { this.street1 = value; } /** * Gets the value of the street2 property. * * @return * possible object is * {@link String } * */ public String getStreet2() { return street2; } /** * Sets the value of the street2 property. * * @param value * allowed object is * {@link String } * */ public void setStreet2(String value) { this.street2 = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link String } * */ public String getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link String } * */ public void setCity(String value) { this.city = value; } /** * Gets the value of the zipCode property. * * @return * possible object is * {@link String } * */ public String getZipCode() { return zipCode; } /** * Sets the value of the zipCode property. * * @param value * allowed object is * {@link String } * */ public void setZipCode(String value) { this.zipCode = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } }