// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.api.ads.adwords.jaxws.v201607.cm; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * Structure to specify an address location. * * * <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="streetAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="streetAddress2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="cityName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="provinceCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="provinceName" 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="countryCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Address", propOrder = { "streetAddress", "streetAddress2", "cityName", "provinceCode", "provinceName", "postalCode", "countryCode" }) public class Address { protected String streetAddress; protected String streetAddress2; protected String cityName; protected String provinceCode; protected String provinceName; protected String postalCode; protected String countryCode; /** * Gets the value of the streetAddress property. * * @return * possible object is * {@link String } * */ public String getStreetAddress() { return streetAddress; } /** * Sets the value of the streetAddress property. * * @param value * allowed object is * {@link String } * */ public void setStreetAddress(String value) { this.streetAddress = value; } /** * Gets the value of the streetAddress2 property. * * @return * possible object is * {@link String } * */ public String getStreetAddress2() { return streetAddress2; } /** * Sets the value of the streetAddress2 property. * * @param value * allowed object is * {@link String } * */ public void setStreetAddress2(String value) { this.streetAddress2 = 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 provinceCode property. * * @return * possible object is * {@link String } * */ public String getProvinceCode() { return provinceCode; } /** * Sets the value of the provinceCode property. * * @param value * allowed object is * {@link String } * */ public void setProvinceCode(String value) { this.provinceCode = value; } /** * Gets the value of the provinceName property. * * @return * possible object is * {@link String } * */ public String getProvinceName() { return provinceName; } /** * Sets the value of the provinceName property. * * @param value * allowed object is * {@link String } * */ public void setProvinceName(String value) { this.provinceName = 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 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; } }