com.microsoft.bingads.v13.campaignmanagement.Experiment 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Experiment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Experiment", propOrder = {
"baseCampaignId",
"endDate",
"experimentCampaignId",
"experimentStatus",
"experimentType",
"id",
"name",
"startDate",
"trafficSplitPercent"
})
public class Experiment {
@XmlElement(name = "BaseCampaignId", nillable = true)
protected Long baseCampaignId;
@XmlElement(name = "EndDate", nillable = true)
protected Date endDate;
@XmlElement(name = "ExperimentCampaignId", nillable = true)
protected Long experimentCampaignId;
@XmlElement(name = "ExperimentStatus", nillable = true)
protected String experimentStatus;
@XmlElement(name = "ExperimentType", nillable = true)
protected String experimentType;
@XmlElement(name = "Id", nillable = true)
protected Long id;
@XmlElement(name = "Name", nillable = true)
protected String name;
@XmlElement(name = "StartDate", nillable = true)
protected Date startDate;
@XmlElement(name = "TrafficSplitPercent", nillable = true)
protected Integer trafficSplitPercent;
/**
* Gets the value of the baseCampaignId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getBaseCampaignId() {
return baseCampaignId;
}
/**
* Sets the value of the baseCampaignId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setBaseCampaignId(Long value) {
this.baseCampaignId = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setEndDate(Date value) {
this.endDate = value;
}
/**
* Gets the value of the experimentCampaignId property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getExperimentCampaignId() {
return experimentCampaignId;
}
/**
* Sets the value of the experimentCampaignId property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setExperimentCampaignId(Long value) {
this.experimentCampaignId = value;
}
/**
* Gets the value of the experimentStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExperimentStatus() {
return experimentStatus;
}
/**
* Sets the value of the experimentStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExperimentStatus(String value) {
this.experimentStatus = value;
}
/**
* Gets the value of the experimentType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExperimentType() {
return experimentType;
}
/**
* Sets the value of the experimentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExperimentType(String value) {
this.experimentType = 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;
}
/**
* Gets the value of the startDate property.
*
* @return
* possible object is
* {@link Date }
*
*/
public Date getStartDate() {
return startDate;
}
/**
* Sets the value of the startDate property.
*
* @param value
* allowed object is
* {@link Date }
*
*/
public void setStartDate(Date value) {
this.startDate = value;
}
/**
* Gets the value of the trafficSplitPercent property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTrafficSplitPercent() {
return trafficSplitPercent;
}
/**
* Sets the value of the trafficSplitPercent property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTrafficSplitPercent(Integer value) {
this.trafficSplitPercent = value;
}
}