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

com.microsoft.bingads.v13.adinsight.BroadMatchKeywordOpportunity 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.22.1
Show newest version

package com.microsoft.bingads.v13.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 BroadMatchKeywordOpportunity complex type. * *

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

 * <complexType name="BroadMatchKeywordOpportunity">
 *   <complexContent>
 *     <extension base="{https://bingads.microsoft.com/AdInsight/v13}KeywordOpportunity">
 *       <sequence>
 *         <element name="AverageCPC" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="AverageCTR" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ClickShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ImpressionShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ReferenceKeywordBid" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ReferenceKeywordId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="ReferenceKeywordMatchType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="SearchQueryKPIs" type="{https://bingads.microsoft.com/AdInsight/v13}ArrayOfBroadMatchSearchQueryKPI" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BroadMatchKeywordOpportunity", propOrder = { "averageCPC", "averageCTR", "clickShare", "impressionShare", "referenceKeywordBid", "referenceKeywordId", "referenceKeywordMatchType", "searchQueryKPIs" }) public class BroadMatchKeywordOpportunity extends KeywordOpportunity { @XmlElement(name = "AverageCPC") protected Double averageCPC; @XmlElement(name = "AverageCTR") protected Double averageCTR; @XmlElement(name = "ClickShare") protected Double clickShare; @XmlElement(name = "ImpressionShare") protected Double impressionShare; @XmlElement(name = "ReferenceKeywordBid") protected Double referenceKeywordBid; @XmlElement(name = "ReferenceKeywordId") protected Long referenceKeywordId; @XmlElement(name = "ReferenceKeywordMatchType") protected Integer referenceKeywordMatchType; @XmlElement(name = "SearchQueryKPIs", nillable = true) protected ArrayOfBroadMatchSearchQueryKPI searchQueryKPIs; /** * Gets the value of the averageCPC property. * * @return * possible object is * {@link Double } * */ public Double getAverageCPC() { return averageCPC; } /** * Sets the value of the averageCPC property. * * @param value * allowed object is * {@link Double } * */ public void setAverageCPC(Double value) { this.averageCPC = value; } /** * Gets the value of the averageCTR property. * * @return * possible object is * {@link Double } * */ public Double getAverageCTR() { return averageCTR; } /** * Sets the value of the averageCTR property. * * @param value * allowed object is * {@link Double } * */ public void setAverageCTR(Double value) { this.averageCTR = value; } /** * Gets the value of the clickShare property. * * @return * possible object is * {@link Double } * */ public Double getClickShare() { return clickShare; } /** * Sets the value of the clickShare property. * * @param value * allowed object is * {@link Double } * */ public void setClickShare(Double value) { this.clickShare = value; } /** * Gets the value of the impressionShare property. * * @return * possible object is * {@link Double } * */ public Double getImpressionShare() { return impressionShare; } /** * Sets the value of the impressionShare property. * * @param value * allowed object is * {@link Double } * */ public void setImpressionShare(Double value) { this.impressionShare = value; } /** * Gets the value of the referenceKeywordBid property. * * @return * possible object is * {@link Double } * */ public Double getReferenceKeywordBid() { return referenceKeywordBid; } /** * Sets the value of the referenceKeywordBid property. * * @param value * allowed object is * {@link Double } * */ public void setReferenceKeywordBid(Double value) { this.referenceKeywordBid = value; } /** * Gets the value of the referenceKeywordId property. * * @return * possible object is * {@link Long } * */ public Long getReferenceKeywordId() { return referenceKeywordId; } /** * Sets the value of the referenceKeywordId property. * * @param value * allowed object is * {@link Long } * */ public void setReferenceKeywordId(Long value) { this.referenceKeywordId = value; } /** * Gets the value of the referenceKeywordMatchType property. * * @return * possible object is * {@link Integer } * */ public Integer getReferenceKeywordMatchType() { return referenceKeywordMatchType; } /** * Sets the value of the referenceKeywordMatchType property. * * @param value * allowed object is * {@link Integer } * */ public void setReferenceKeywordMatchType(Integer value) { this.referenceKeywordMatchType = value; } /** * Gets the value of the searchQueryKPIs property. * * @return * possible object is * {@link ArrayOfBroadMatchSearchQueryKPI } * */ public ArrayOfBroadMatchSearchQueryKPI getSearchQueryKPIs() { return searchQueryKPIs; } /** * Sets the value of the searchQueryKPIs property. * * @param value * allowed object is * {@link ArrayOfBroadMatchSearchQueryKPI } * */ public void setSearchQueryKPIs(ArrayOfBroadMatchSearchQueryKPI value) { this.searchQueryKPIs = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy