com.microsoft.bingads.v13.adinsight.BudgetPoint Maven / Gradle / Ivy
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 BudgetPoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BudgetPoint", propOrder = {
"budgetAmount",
"budgetPointType",
"estimatedWeeklyClicks",
"estimatedWeeklyCost",
"estimatedWeeklyImpressions"
})
public class BudgetPoint {
@XmlElement(name = "BudgetAmount")
protected Double budgetAmount;
@XmlElement(name = "BudgetPointType")
@XmlSchemaType(name = "string")
protected BudgetPointType budgetPointType;
@XmlElement(name = "EstimatedWeeklyClicks")
protected Double estimatedWeeklyClicks;
@XmlElement(name = "EstimatedWeeklyCost")
protected Double estimatedWeeklyCost;
@XmlElement(name = "EstimatedWeeklyImpressions")
protected Double estimatedWeeklyImpressions;
/**
* Gets the value of the budgetAmount property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getBudgetAmount() {
return budgetAmount;
}
/**
* Sets the value of the budgetAmount property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setBudgetAmount(Double value) {
this.budgetAmount = value;
}
/**
* Gets the value of the budgetPointType property.
*
* @return
* possible object is
* {@link BudgetPointType }
*
*/
public BudgetPointType getBudgetPointType() {
return budgetPointType;
}
/**
* Sets the value of the budgetPointType property.
*
* @param value
* allowed object is
* {@link BudgetPointType }
*
*/
public void setBudgetPointType(BudgetPointType value) {
this.budgetPointType = value;
}
/**
* Gets the value of the estimatedWeeklyClicks property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getEstimatedWeeklyClicks() {
return estimatedWeeklyClicks;
}
/**
* Sets the value of the estimatedWeeklyClicks property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setEstimatedWeeklyClicks(Double value) {
this.estimatedWeeklyClicks = value;
}
/**
* Gets the value of the estimatedWeeklyCost property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getEstimatedWeeklyCost() {
return estimatedWeeklyCost;
}
/**
* Sets the value of the estimatedWeeklyCost property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setEstimatedWeeklyCost(Double value) {
this.estimatedWeeklyCost = value;
}
/**
* Gets the value of the estimatedWeeklyImpressions property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getEstimatedWeeklyImpressions() {
return estimatedWeeklyImpressions;
}
/**
* Sets the value of the estimatedWeeklyImpressions property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setEstimatedWeeklyImpressions(Double value) {
this.estimatedWeeklyImpressions = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy