All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.v13.campaignmanagement.Campaign Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 13.0.22.1
Show newest version

package com.microsoft.bingads.v13.campaignmanagement;

import java.util.Collection;
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;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for Campaign complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Campaign">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AudienceAdsBidAdjustment" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="BiddingScheme" type="{https://bingads.microsoft.com/CampaignManagement/v13}BiddingScheme" minOccurs="0"/>
 *         <element name="BudgetType" type="{https://bingads.microsoft.com/CampaignManagement/v13}BudgetLimitType" minOccurs="0"/>
 *         <element name="DailyBudget" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="ExperimentId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="FinalUrlSuffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ForwardCompatibilityMap" type="{http://schemas.datacontract.org/2004/07/System.Collections.Generic}ArrayOfKeyValuePairOfstringstring" minOccurs="0"/>
 *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Status" type="{https://bingads.microsoft.com/CampaignManagement/v13}CampaignStatus" minOccurs="0"/>
 *         <element name="SubType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="TimeZone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="TrackingUrlTemplate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="UrlCustomParameters" type="{https://bingads.microsoft.com/CampaignManagement/v13}CustomParameters" minOccurs="0"/>
 *         <element name="CampaignType" type="{https://bingads.microsoft.com/CampaignManagement/v13}CampaignType" minOccurs="0"/>
 *         <element name="Settings" type="{https://bingads.microsoft.com/CampaignManagement/v13}ArrayOfSetting" minOccurs="0"/>
 *         <element name="BudgetId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="Languages" type="{http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring" minOccurs="0"/>
 *         <element name="AdScheduleUseSearcherTimeZone" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Campaign", propOrder = { "audienceAdsBidAdjustment", "biddingScheme", "budgetType", "dailyBudget", "experimentId", "finalUrlSuffix", "forwardCompatibilityMap", "id", "name", "status", "subType", "timeZone", "trackingUrlTemplate", "urlCustomParameters", "campaignType", "settings", "budgetId", "languages", "adScheduleUseSearcherTimeZone" }) public class Campaign { @XmlElement(name = "AudienceAdsBidAdjustment", nillable = true) protected Integer audienceAdsBidAdjustment; @XmlElement(name = "BiddingScheme", nillable = true) protected BiddingScheme biddingScheme; @XmlElement(name = "BudgetType", nillable = true) @XmlSchemaType(name = "string") protected BudgetLimitType budgetType; @XmlElement(name = "DailyBudget", nillable = true) protected Double dailyBudget; @XmlElement(name = "ExperimentId", nillable = true) protected Long experimentId; @XmlElement(name = "FinalUrlSuffix", nillable = true) protected String finalUrlSuffix; @XmlElement(name = "ForwardCompatibilityMap", nillable = true) protected ArrayOfKeyValuePairOfstringstring forwardCompatibilityMap; @XmlElement(name = "Id", nillable = true) protected Long id; @XmlElement(name = "Name", nillable = true) protected String name; @XmlElement(name = "Status", nillable = true) @XmlSchemaType(name = "string") protected CampaignStatus status; @XmlElement(name = "SubType", nillable = true) protected String subType; @XmlElement(name = "TimeZone", nillable = true) protected String timeZone; @XmlElement(name = "TrackingUrlTemplate", nillable = true) protected String trackingUrlTemplate; @XmlElement(name = "UrlCustomParameters", nillable = true) protected CustomParameters urlCustomParameters; @XmlElement(name = "CampaignType", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter4 .class) protected Collection campaignType; @XmlElement(name = "Settings", nillable = true) protected ArrayOfSetting settings; @XmlElement(name = "BudgetId", nillable = true) protected Long budgetId; @XmlElement(name = "Languages", nillable = true) protected ArrayOfstring languages; @XmlElement(name = "AdScheduleUseSearcherTimeZone", nillable = true) protected Boolean adScheduleUseSearcherTimeZone; /** * Gets the value of the audienceAdsBidAdjustment property. * * @return * possible object is * {@link Integer } * */ public Integer getAudienceAdsBidAdjustment() { return audienceAdsBidAdjustment; } /** * Sets the value of the audienceAdsBidAdjustment property. * * @param value * allowed object is * {@link Integer } * */ public void setAudienceAdsBidAdjustment(Integer value) { this.audienceAdsBidAdjustment = 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 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 dailyBudget property. * * @return * possible object is * {@link Double } * */ public Double getDailyBudget() { return dailyBudget; } /** * Sets the value of the dailyBudget property. * * @param value * allowed object is * {@link Double } * */ public void setDailyBudget(Double value) { this.dailyBudget = value; } /** * Gets the value of the experimentId property. * * @return * possible object is * {@link Long } * */ public Long getExperimentId() { return experimentId; } /** * Sets the value of the experimentId property. * * @param value * allowed object is * {@link Long } * */ public void setExperimentId(Long value) { this.experimentId = value; } /** * Gets the value of the finalUrlSuffix property. * * @return * possible object is * {@link String } * */ public String getFinalUrlSuffix() { return finalUrlSuffix; } /** * Sets the value of the finalUrlSuffix property. * * @param value * allowed object is * {@link String } * */ public void setFinalUrlSuffix(String value) { this.finalUrlSuffix = value; } /** * Gets the value of the forwardCompatibilityMap property. * * @return * possible object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public ArrayOfKeyValuePairOfstringstring getForwardCompatibilityMap() { return forwardCompatibilityMap; } /** * Sets the value of the forwardCompatibilityMap property. * * @param value * allowed object is * {@link ArrayOfKeyValuePairOfstringstring } * */ public void setForwardCompatibilityMap(ArrayOfKeyValuePairOfstringstring value) { this.forwardCompatibilityMap = 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 status property. * * @return * possible object is * {@link CampaignStatus } * */ public CampaignStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link CampaignStatus } * */ public void setStatus(CampaignStatus value) { this.status = value; } /** * Gets the value of the subType property. * * @return * possible object is * {@link String } * */ public String getSubType() { return subType; } /** * Sets the value of the subType property. * * @param value * allowed object is * {@link String } * */ public void setSubType(String value) { this.subType = value; } /** * Gets the value of the timeZone property. * * @return * possible object is * {@link String } * */ public String getTimeZone() { return timeZone; } /** * Sets the value of the timeZone property. * * @param value * allowed object is * {@link String } * */ public void setTimeZone(String value) { this.timeZone = value; } /** * Gets the value of the trackingUrlTemplate property. * * @return * possible object is * {@link String } * */ public String getTrackingUrlTemplate() { return trackingUrlTemplate; } /** * Sets the value of the trackingUrlTemplate property. * * @param value * allowed object is * {@link String } * */ public void setTrackingUrlTemplate(String value) { this.trackingUrlTemplate = value; } /** * Gets the value of the urlCustomParameters property. * * @return * possible object is * {@link CustomParameters } * */ public CustomParameters getUrlCustomParameters() { return urlCustomParameters; } /** * Sets the value of the urlCustomParameters property. * * @param value * allowed object is * {@link CustomParameters } * */ public void setUrlCustomParameters(CustomParameters value) { this.urlCustomParameters = value; } /** * Gets the value of the campaignType property. * * @return * possible object is * {@link String } * */ public Collection getCampaignType() { return campaignType; } /** * Sets the value of the campaignType property. * * @param value * allowed object is * {@link String } * */ public void setCampaignType(Collection value) { this.campaignType = value; } /** * Gets the value of the settings property. * * @return * possible object is * {@link ArrayOfSetting } * */ public ArrayOfSetting getSettings() { return settings; } /** * Sets the value of the settings property. * * @param value * allowed object is * {@link ArrayOfSetting } * */ public void setSettings(ArrayOfSetting value) { this.settings = value; } /** * Gets the value of the budgetId property. * * @return * possible object is * {@link Long } * */ public Long getBudgetId() { return budgetId; } /** * Sets the value of the budgetId property. * * @param value * allowed object is * {@link Long } * */ public void setBudgetId(Long value) { this.budgetId = value; } /** * Gets the value of the languages property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getLanguages() { return languages; } /** * Sets the value of the languages property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setLanguages(ArrayOfstring value) { this.languages = value; } /** * Gets the value of the adScheduleUseSearcherTimeZone property. * * @return * possible object is * {@link Boolean } * */ public Boolean getAdScheduleUseSearcherTimeZone() { return adScheduleUseSearcherTimeZone; } /** * Sets the value of the adScheduleUseSearcherTimeZone property. * * @param value * allowed object is * {@link Boolean } * */ public void setAdScheduleUseSearcherTimeZone(Boolean value) { this.adScheduleUseSearcherTimeZone = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy