com.microsoft.bingads.v13.customermanagement.Address Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customermanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Address complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Address", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"city",
"countryCode",
"id",
"line1",
"line2",
"line3",
"line4",
"postalCode",
"stateOrProvince",
"timeStamp",
"businessName"
})
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;
@XmlElement(name = "BusinessName", nillable = true)
protected String businessName;
/**
* 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;
}
/**
* Gets the value of the businessName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBusinessName() {
return businessName;
}
/**
* Sets the value of the businessName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBusinessName(String value) {
this.businessName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy