package com.microsoft.bingads.v11.adinsight; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="KeywordEstimatedBids" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V11.Entity}ArrayOfKeywordEstimatedBid" minOccurs="0"/> * <element name="AdGroupEstimatedBid" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.V11.Entity}EstimatedBidAndTraffic" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "keywordEstimatedBids", "adGroupEstimatedBid" }) @XmlRootElement(name = "GetEstimatedBidByKeywordsResponse", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V11") public class GetEstimatedBidByKeywordsResponse { @XmlElement(name = "KeywordEstimatedBids", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V11", nillable = true) protected ArrayOfKeywordEstimatedBid keywordEstimatedBids; @XmlElement(name = "AdGroupEstimatedBid", namespace = "Microsoft.Advertiser.AdInsight.Api.Service.V11", nillable = true) protected EstimatedBidAndTraffic adGroupEstimatedBid; /** * Gets the value of the keywordEstimatedBids property. * * @return * possible object is * {@link ArrayOfKeywordEstimatedBid } * */ public ArrayOfKeywordEstimatedBid getKeywordEstimatedBids() { return keywordEstimatedBids; } /** * Sets the value of the keywordEstimatedBids property. * * @param value * allowed object is * {@link ArrayOfKeywordEstimatedBid } * */ public void setKeywordEstimatedBids(ArrayOfKeywordEstimatedBid value) { this.keywordEstimatedBids = value; } /** * Gets the value of the adGroupEstimatedBid property. * * @return * possible object is * {@link EstimatedBidAndTraffic } * */ public EstimatedBidAndTraffic getAdGroupEstimatedBid() { return adGroupEstimatedBid; } /** * Sets the value of the adGroupEstimatedBid property. * * @param value * allowed object is * {@link EstimatedBidAndTraffic } * */ public void setAdGroupEstimatedBid(EstimatedBidAndTraffic value) { this.adGroupEstimatedBid = value; } }