package com.microsoft.bingads.v10.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 PostalCodeTarget complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PostalCodeTarget"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Bids" type="{https://bingads.microsoft.com/CampaignManagement/v10}ArrayOfPostalCodeTargetBid"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostalCodeTarget", propOrder = { "bids" }) public class PostalCodeTarget { @XmlElement(name = "Bids", required = true, nillable = true) protected ArrayOfPostalCodeTargetBid bids; /** * Gets the value of the bids property. * * @return * possible object is * {@link ArrayOfPostalCodeTargetBid } * */ public ArrayOfPostalCodeTargetBid getBids() { return bids; } /** * Sets the value of the bids property. * * @param value * allowed object is * {@link ArrayOfPostalCodeTargetBid } * */ public void setBids(ArrayOfPostalCodeTargetBid value) { this.bids = value; } }