com.microsoft.bingads.v13.campaignmanagement.BidStrategy 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.util.Collection;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for BidStrategy complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BidStrategy", propOrder = {
"associatedCampaignType",
"associationCount",
"biddingScheme",
"id",
"name"
})
public class BidStrategy {
@XmlElement(name = "AssociatedCampaignType", type = String.class, nillable = true)
@XmlJavaTypeAdapter(Adapter2 .class)
protected Collection associatedCampaignType;
@XmlElement(name = "AssociationCount", nillable = true)
protected Integer associationCount;
@XmlElement(name = "BiddingScheme", nillable = true)
protected BiddingScheme biddingScheme;
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "Name", nillable = true)
protected String name;
/**
* Gets the value of the associatedCampaignType property.
*
* @return
* possible object is
* {@link String }
*
*/
public Collection getAssociatedCampaignType() {
return associatedCampaignType;
}
/**
* Sets the value of the associatedCampaignType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssociatedCampaignType(Collection value) {
this.associatedCampaignType = 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 biddingScheme property.
*
* @return
* possible object is
* {@link BiddingScheme }
*
*/
public BiddingScheme getBiddingScheme() {
return biddingScheme;
}
/**
* Sets the value of the biddingScheme property.
*
* @param value
* allowed object is
* {@link BiddingScheme }
*
*/
public void setBiddingScheme(BiddingScheme value) {
this.biddingScheme = 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;
}
}