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

com.microsoft.bingads.v13.adinsight.BudgetOpportunity 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for BudgetOpportunity complex type. * *

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

 * <complexType name="BudgetOpportunity">
 *   <complexContent>
 *     <extension base="{https://bingads.microsoft.com/AdInsight/v13}Opportunity">
 *       <sequence>
 *         <element name="BudgetPoints" type="{https://bingads.microsoft.com/AdInsight/v13}ArrayOfBudgetPoint" minOccurs="0"/>
 *         <element name="BudgetType" type="{https://bingads.microsoft.com/AdInsight/v13}BudgetLimitType" minOccurs="0"/>
 *         <element name="CampaignId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="CurrentBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="IncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="IncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="PercentageIncreaseInClicks" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="PercentageIncreaseInImpressions" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="RecommendedBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BudgetOpportunity", propOrder = { "budgetPoints", "budgetType", "campaignId", "currentBudget", "increaseInClicks", "increaseInImpressions", "percentageIncreaseInClicks", "percentageIncreaseInImpressions", "recommendedBudget" }) public class BudgetOpportunity extends Opportunity { @XmlElement(name = "BudgetPoints", nillable = true) protected ArrayOfBudgetPoint budgetPoints; @XmlElement(name = "BudgetType") @XmlSchemaType(name = "string") protected BudgetLimitType budgetType; @XmlElement(name = "CampaignId") protected Long campaignId; @XmlElement(name = "CurrentBudget") protected Double currentBudget; @XmlElement(name = "IncreaseInClicks") protected Double increaseInClicks; @XmlElement(name = "IncreaseInImpressions") protected Long increaseInImpressions; @XmlElement(name = "PercentageIncreaseInClicks") protected Integer percentageIncreaseInClicks; @XmlElement(name = "PercentageIncreaseInImpressions") protected Integer percentageIncreaseInImpressions; @XmlElement(name = "RecommendedBudget") protected Double recommendedBudget; /** * Gets the value of the budgetPoints property. * * @return * possible object is * {@link ArrayOfBudgetPoint } * */ public ArrayOfBudgetPoint getBudgetPoints() { return budgetPoints; } /** * Sets the value of the budgetPoints property. * * @param value * allowed object is * {@link ArrayOfBudgetPoint } * */ public void setBudgetPoints(ArrayOfBudgetPoint value) { this.budgetPoints = value; } /** * Gets the value of the budgetType property. * * @return * possible object is * {@link BudgetLimitType } * */ public BudgetLimitType getBudgetType() { return budgetType; } /** * Sets the value of the budgetType property. * * @param value * allowed object is * {@link BudgetLimitType } * */ public void setBudgetType(BudgetLimitType value) { this.budgetType = value; } /** * Gets the value of the campaignId property. * * @return * possible object is * {@link Long } * */ public Long getCampaignId() { return campaignId; } /** * Sets the value of the campaignId property. * * @param value * allowed object is * {@link Long } * */ public void setCampaignId(Long value) { this.campaignId = value; } /** * Gets the value of the currentBudget property. * * @return * possible object is * {@link Double } * */ public Double getCurrentBudget() { return currentBudget; } /** * Sets the value of the currentBudget property. * * @param value * allowed object is * {@link Double } * */ public void setCurrentBudget(Double value) { this.currentBudget = value; } /** * Gets the value of the increaseInClicks property. * * @return * possible object is * {@link Double } * */ public Double getIncreaseInClicks() { return increaseInClicks; } /** * Sets the value of the increaseInClicks property. * * @param value * allowed object is * {@link Double } * */ public void setIncreaseInClicks(Double value) { this.increaseInClicks = value; } /** * Gets the value of the increaseInImpressions property. * * @return * possible object is * {@link Long } * */ public Long getIncreaseInImpressions() { return increaseInImpressions; } /** * Sets the value of the increaseInImpressions property. * * @param value * allowed object is * {@link Long } * */ public void setIncreaseInImpressions(Long value) { this.increaseInImpressions = value; } /** * Gets the value of the percentageIncreaseInClicks property. * * @return * possible object is * {@link Integer } * */ public Integer getPercentageIncreaseInClicks() { return percentageIncreaseInClicks; } /** * Sets the value of the percentageIncreaseInClicks property. * * @param value * allowed object is * {@link Integer } * */ public void setPercentageIncreaseInClicks(Integer value) { this.percentageIncreaseInClicks = value; } /** * Gets the value of the percentageIncreaseInImpressions property. * * @return * possible object is * {@link Integer } * */ public Integer getPercentageIncreaseInImpressions() { return percentageIncreaseInImpressions; } /** * Sets the value of the percentageIncreaseInImpressions property. * * @param value * allowed object is * {@link Integer } * */ public void setPercentageIncreaseInImpressions(Integer value) { this.percentageIncreaseInImpressions = value; } /** * Gets the value of the recommendedBudget property. * * @return * possible object is * {@link Double } * */ public Double getRecommendedBudget() { return recommendedBudget; } /** * Sets the value of the recommendedBudget property. * * @param value * allowed object is * {@link Double } * */ public void setRecommendedBudget(Double value) { this.recommendedBudget = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy