// 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.v201609.cm; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * * The taxonomy of ProductBiddingCategory dimension values. * * <p>Clients use this to convert between human-readable category names / display strings and * ProductBiddingCategory instances. * * * <p>Java class for ProductBiddingCategoryData complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProductBiddingCategoryData"> * <complexContent> * <extension base="{https://adwords.google.com/api/adwords/cm/v201609}ConstantData"> * <sequence> * <element name="dimensionValue" type="{https://adwords.google.com/api/adwords/cm/v201609}ProductBiddingCategory" minOccurs="0"/> * <element name="parentDimensionValue" type="{https://adwords.google.com/api/adwords/cm/v201609}ProductBiddingCategory" minOccurs="0"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="status" type="{https://adwords.google.com/api/adwords/cm/v201609}ShoppingBiddingDimensionStatus" minOccurs="0"/> * <element name="displayValue" type="{https://adwords.google.com/api/adwords/cm/v201609}String_StringMapEntry" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductBiddingCategoryData", propOrder = { "dimensionValue", "parentDimensionValue", "country", "status", "displayValue" }) public class ProductBiddingCategoryData extends ConstantData { protected ProductBiddingCategory dimensionValue; protected ProductBiddingCategory parentDimensionValue; protected String country; @XmlSchemaType(name = "string") protected ShoppingBiddingDimensionStatus status; protected List<StringStringMapEntry> displayValue; /** * Gets the value of the dimensionValue property. * * @return * possible object is * {@link ProductBiddingCategory } * */ public ProductBiddingCategory getDimensionValue() { return dimensionValue; } /** * Sets the value of the dimensionValue property. * * @param value * allowed object is * {@link ProductBiddingCategory } * */ public void setDimensionValue(ProductBiddingCategory value) { this.dimensionValue = value; } /** * Gets the value of the parentDimensionValue property. * * @return * possible object is * {@link ProductBiddingCategory } * */ public ProductBiddingCategory getParentDimensionValue() { return parentDimensionValue; } /** * Sets the value of the parentDimensionValue property. * * @param value * allowed object is * {@link ProductBiddingCategory } * */ public void setParentDimensionValue(ProductBiddingCategory value) { this.parentDimensionValue = 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 status property. * * @return * possible object is * {@link ShoppingBiddingDimensionStatus } * */ public ShoppingBiddingDimensionStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link ShoppingBiddingDimensionStatus } * */ public void setStatus(ShoppingBiddingDimensionStatus value) { this.status = value; } /** * Gets the value of the displayValue property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the displayValue property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDisplayValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link StringStringMapEntry } * * */ public List<StringStringMapEntry> getDisplayValue() { if (displayValue == null) { displayValue = new ArrayList<StringStringMapEntry>(); } return this.displayValue; } }