com.microsoft.bingads.v13.adinsight.BudgetPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
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.
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 BudgetPoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BudgetPoint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="BudgetAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="BudgetPointType" type="{https://bingads.microsoft.com/AdInsight/v13}BudgetPointType" minOccurs="0"/>
* <element name="EstimatedWeeklyClicks" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="EstimatedWeeklyCost" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="EstimatedWeeklyImpressions" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@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;
}
}