package com.microsoft.bingads.customermanagement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Address complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Address"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="City" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="CountryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="Line1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Line2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Line3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Line4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="StateOrProvince" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="TimeStamp" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Address", namespace = "https://bingads.microsoft.com/Customer/v9/Entities", propOrder = { "city", "countryCode", "id", "line1", "line2", "line3", "line4", "postalCode", "stateOrProvince", "timeStamp" }) public class Address { @XmlElement(name = "City", nillable = true) protected String city; @XmlElement(name = "CountryCode", nillable = true) protected String countryCode; @XmlElement(name = "Id", nillable = true) protected Long id; @XmlElement(name = "Line1", nillable = true) protected String line1; @XmlElement(name = "Line2", nillable = true) protected String line2; @XmlElement(name = "Line3", nillable = true) protected String line3; @XmlElement(name = "Line4", nillable = true) protected String line4; @XmlElement(name = "PostalCode", nillable = true) protected String postalCode; @XmlElement(name = "StateOrProvince", nillable = true) protected String stateOrProvince; @XmlElement(name = "TimeStamp", nillable = true) protected byte[] timeStamp; /** * 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 countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the line1 property. * * @return * possible object is * {@link String } * */ public String getLine1() { return line1; } /** * Sets the value of the line1 property. * * @param value * allowed object is * {@link String } * */ public void setLine1(String value) { this.line1 = value; } /** * Gets the value of the line2 property. * * @return * possible object is * {@link String } * */ public String getLine2() { return line2; } /** * Sets the value of the line2 property. * * @param value * allowed object is * {@link String } * */ public void setLine2(String value) { this.line2 = value; } /** * Gets the value of the line3 property. * * @return * possible object is * {@link String } * */ public String getLine3() { return line3; } /** * Sets the value of the line3 property. * * @param value * allowed object is * {@link String } * */ public void setLine3(String value) { this.line3 = value; } /** * Gets the value of the line4 property. * * @return * possible object is * {@link String } * */ public String getLine4() { return line4; } /** * Sets the value of the line4 property. * * @param value * allowed object is * {@link String } * */ public void setLine4(String value) { this.line4 = value; } /** * Gets the value of the postalCode property. * * @return * possible object is * {@link String } * */ public String getPostalCode() { return postalCode; } /** * Sets the value of the postalCode property. * * @param value * allowed object is * {@link String } * */ public void setPostalCode(String value) { this.postalCode = value; } /** * Gets the value of the stateOrProvince property. * * @return * possible object is * {@link String } * */ public String getStateOrProvince() { return stateOrProvince; } /** * Sets the value of the stateOrProvince property. * * @param value * allowed object is * {@link String } * */ public void setStateOrProvince(String value) { this.stateOrProvince = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * byte[] */ public byte[] getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * byte[] */ public void setTimeStamp(byte[] value) { this.timeStamp = value; } }