package com.microsoft.bingads.v11.campaignmanagement; 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 ProductScope complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProductScope"> * <complexContent> * <extension base="{https://bingads.microsoft.com/CampaignManagement/v11}Criterion"> * <sequence> * <element name="Conditions" type="{https://bingads.microsoft.com/CampaignManagement/v11}ArrayOfProductCondition" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductScope", propOrder = { "conditions" }) public class ProductScope extends Criterion { @XmlElement(name = "Conditions", nillable = true) protected ArrayOfProductCondition conditions; /** * Gets the value of the conditions property. * * @return * possible object is * {@link ArrayOfProductCondition } * */ public ArrayOfProductCondition getConditions() { return conditions; } /** * Sets the value of the conditions property. * * @param value * allowed object is * {@link ArrayOfProductCondition } * */ public void setConditions(ArrayOfProductCondition value) { this.conditions = value; } }