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

com.microsoft.bingads.v13.adinsight.EstimatedPositionAndTraffic 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for EstimatedPositionAndTraffic complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EstimatedPositionAndTraffic", propOrder = { "matchType", "minClicksPerWeek", "maxClicksPerWeek", "averageCPC", "minImpressionsPerWeek", "maxImpressionsPerWeek", "ctr", "minTotalCostPerWeek", "maxTotalCostPerWeek", "currencyCode", "estimatedAdPosition" }) public class EstimatedPositionAndTraffic { @XmlElement(name = "MatchType") @XmlSchemaType(name = "string") protected MatchType matchType; @XmlElement(name = "MinClicksPerWeek") protected Double minClicksPerWeek; @XmlElement(name = "MaxClicksPerWeek") protected Double maxClicksPerWeek; @XmlElement(name = "AverageCPC") protected Double averageCPC; @XmlElement(name = "MinImpressionsPerWeek") protected Long minImpressionsPerWeek; @XmlElement(name = "MaxImpressionsPerWeek") protected Long maxImpressionsPerWeek; @XmlElement(name = "CTR") protected Double ctr; @XmlElement(name = "MinTotalCostPerWeek") protected Double minTotalCostPerWeek; @XmlElement(name = "MaxTotalCostPerWeek") protected Double maxTotalCostPerWeek; @XmlElement(name = "CurrencyCode") @XmlSchemaType(name = "string") protected CurrencyCode currencyCode; @XmlElement(name = "EstimatedAdPosition") protected Double estimatedAdPosition; /** * Gets the value of the matchType property. * * @return * possible object is * {@link MatchType } * */ public MatchType getMatchType() { return matchType; } /** * Sets the value of the matchType property. * * @param value * allowed object is * {@link MatchType } * */ public void setMatchType(MatchType value) { this.matchType = value; } /** * Gets the value of the minClicksPerWeek property. * * @return * possible object is * {@link Double } * */ public Double getMinClicksPerWeek() { return minClicksPerWeek; } /** * Sets the value of the minClicksPerWeek property. * * @param value * allowed object is * {@link Double } * */ public void setMinClicksPerWeek(Double value) { this.minClicksPerWeek = value; } /** * Gets the value of the maxClicksPerWeek property. * * @return * possible object is * {@link Double } * */ public Double getMaxClicksPerWeek() { return maxClicksPerWeek; } /** * Sets the value of the maxClicksPerWeek property. * * @param value * allowed object is * {@link Double } * */ public void setMaxClicksPerWeek(Double value) { this.maxClicksPerWeek = value; } /** * 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 minImpressionsPerWeek property. * * @return * possible object is * {@link Long } * */ public Long getMinImpressionsPerWeek() { return minImpressionsPerWeek; } /** * Sets the value of the minImpressionsPerWeek property. * * @param value * allowed object is * {@link Long } * */ public void setMinImpressionsPerWeek(Long value) { this.minImpressionsPerWeek = value; } /** * Gets the value of the maxImpressionsPerWeek property. * * @return * possible object is * {@link Long } * */ public Long getMaxImpressionsPerWeek() { return maxImpressionsPerWeek; } /** * Sets the value of the maxImpressionsPerWeek property. * * @param value * allowed object is * {@link Long } * */ public void setMaxImpressionsPerWeek(Long value) { this.maxImpressionsPerWeek = value; } /** * Gets the value of the ctr property. * * @return * possible object is * {@link Double } * */ public Double getCTR() { return ctr; } /** * Sets the value of the ctr property. * * @param value * allowed object is * {@link Double } * */ public void setCTR(Double value) { this.ctr = value; } /** * Gets the value of the minTotalCostPerWeek property. * * @return * possible object is * {@link Double } * */ public Double getMinTotalCostPerWeek() { return minTotalCostPerWeek; } /** * Sets the value of the minTotalCostPerWeek property. * * @param value * allowed object is * {@link Double } * */ public void setMinTotalCostPerWeek(Double value) { this.minTotalCostPerWeek = value; } /** * Gets the value of the maxTotalCostPerWeek property. * * @return * possible object is * {@link Double } * */ public Double getMaxTotalCostPerWeek() { return maxTotalCostPerWeek; } /** * Sets the value of the maxTotalCostPerWeek property. * * @param value * allowed object is * {@link Double } * */ public void setMaxTotalCostPerWeek(Double value) { this.maxTotalCostPerWeek = value; } /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link CurrencyCode } * */ public CurrencyCode getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link CurrencyCode } * */ public void setCurrencyCode(CurrencyCode value) { this.currencyCode = value; } /** * Gets the value of the estimatedAdPosition property. * * @return * possible object is * {@link Double } * */ public Double getEstimatedAdPosition() { return estimatedAdPosition; } /** * Sets the value of the estimatedAdPosition property. * * @param value * allowed object is * {@link Double } * */ public void setEstimatedAdPosition(Double value) { this.estimatedAdPosition = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy