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