All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v10.adinsight.AuctionInsightV2Entity Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.23.2
Show newest version

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.XmlType;


/**
 * 

Java class for AuctionInsightV2Entity complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AuctionInsightV2Entity">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="DisplayDomain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="AggregatedKPI" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.Entity}AuctionInsightKPINode" minOccurs="0"/>
 *         <element name="KPIs" type="{http://schemas.datacontract.org/2004/07/Microsoft.BingAds.Advertiser.AdInsight.Api.DataContract.Entity}ArrayOfAuctionInsightKPINode" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuctionInsightV2Entity", propOrder = { "displayDomain", "aggregatedKPI", "kpIs" }) public class AuctionInsightV2Entity { @XmlElement(name = "DisplayDomain", nillable = true) protected String displayDomain; @XmlElement(name = "AggregatedKPI", nillable = true) protected AuctionInsightKPINode aggregatedKPI; @XmlElement(name = "KPIs", nillable = true) protected ArrayOfAuctionInsightKPINode kpIs; /** * Gets the value of the displayDomain property. * * @return * possible object is * {@link String } * */ public String getDisplayDomain() { return displayDomain; } /** * Sets the value of the displayDomain property. * * @param value * allowed object is * {@link String } * */ public void setDisplayDomain(String value) { this.displayDomain = value; } /** * Gets the value of the aggregatedKPI property. * * @return * possible object is * {@link AuctionInsightKPINode } * */ public AuctionInsightKPINode getAggregatedKPI() { return aggregatedKPI; } /** * Sets the value of the aggregatedKPI property. * * @param value * allowed object is * {@link AuctionInsightKPINode } * */ public void setAggregatedKPI(AuctionInsightKPINode value) { this.aggregatedKPI = value; } /** * Gets the value of the kpIs property. * * @return * possible object is * {@link ArrayOfAuctionInsightKPINode } * */ public ArrayOfAuctionInsightKPINode getKPIs() { return kpIs; } /** * Sets the value of the kpIs property. * * @param value * allowed object is * {@link ArrayOfAuctionInsightKPINode } * */ public void setKPIs(ArrayOfAuctionInsightKPINode value) { this.kpIs = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy