com.microsoft.bingads.v13.campaignmanagement.Budget 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.campaignmanagement;
import java.math.BigDecimal;
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 Budget complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Budget", propOrder = {
"amount",
"associationCount",
"budgetType",
"id",
"name"
})
public class Budget {
@XmlElement(name = "Amount", nillable = true)
protected BigDecimal amount;
@XmlElement(name = "AssociationCount", nillable = true)
protected Integer associationCount;
@XmlElement(name = "BudgetType", nillable = true)
@XmlSchemaType(name = "string")
protected BudgetLimitType budgetType;
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "Name", nillable = true)
protected String name;
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAmount(BigDecimal value) {
this.amount = value;
}
/**
* Gets the value of the associationCount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAssociationCount() {
return associationCount;
}
/**
* Sets the value of the associationCount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAssociationCount(Integer value) {
this.associationCount = 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 id property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setId(Long value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}