package com.microsoft.bingads.v10.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.XmlSchemaType; 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="KeywordIds" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong" minOccurs="0"/> * <element name="TargetPositionForAds" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.Entity}TargetAdPosition" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "keywordIds", "targetPositionForAds" }) @XmlRootElement(name = "GetEstimatedBidByKeywordIdsRequest", namespace = "Microsoft.Advertiser.AdInsight.Api.Service") public class GetEstimatedBidByKeywordIdsRequest { @XmlElement(name = "KeywordIds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service", nillable = true) protected ArrayOflong keywordIds; @XmlElement(name = "TargetPositionForAds", namespace = "Microsoft.Advertiser.AdInsight.Api.Service") @XmlSchemaType(name = "string") protected TargetAdPosition targetPositionForAds; /** * Gets the value of the keywordIds property. * * @return * possible object is * {@link ArrayOflong } * */ public ArrayOflong getKeywordIds() { return keywordIds; } /** * Sets the value of the keywordIds property. * * @param value * allowed object is * {@link ArrayOflong } * */ public void setKeywordIds(ArrayOflong value) { this.keywordIds = value; } /** * Gets the value of the targetPositionForAds property. * * @return * possible object is * {@link TargetAdPosition } * */ public TargetAdPosition getTargetPositionForAds() { return targetPositionForAds; } /** * Sets the value of the targetPositionForAds property. * * @param value * allowed object is * {@link TargetAdPosition } * */ public void setTargetPositionForAds(TargetAdPosition value) { this.targetPositionForAds = value; } }