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 the * address * * * <p>Java class for addressOwner complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="addressOwner"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="cityName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="zipCode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "addressOwner", propOrder = { "street", "cityName", "zipCode", "country", "phone" }) public class AddressOwner { @XmlElement(required = true, nillable = true) protected String street; @XmlElement(required = true, nillable = true) protected String cityName; @XmlElement(required = true, nillable = true) protected String zipCode; @XmlElement(required = true, nillable = true) protected String country; @XmlElement(required = true, nillable = true) protected String phone; /** * Gets the value of the street property. * * @return * possible object is * {@link String } * */ public String getStreet() { return street; } /** * Sets the value of the street property. * * @param value * allowed object is * {@link String } * */ public void setStreet(String value) { this.street = value; } /** * Gets the value of the cityName property. * * @return * possible object is * {@link String } * */ public String getCityName() { return cityName; } /** * Sets the value of the cityName property. * * @param value * allowed object is * {@link String } * */ public void setCityName(String value) { this.cityName = 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 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; } /** * 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; } }