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