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

com.microsoft.bingads.v13.campaignmanagement.PromotionAdExtension 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 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 PromotionAdExtension complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PromotionAdExtension", propOrder = { "currencyCode", "discountModifier", "finalAppUrls", "finalMobileUrls", "finalUrlSuffix", "finalUrls", "language", "moneyAmountOff", "ordersOverAmount", "percentOff", "promotionCode", "promotionEndDate", "promotionItem", "promotionOccasion", "promotionStartDate", "trackingUrlTemplate", "urlCustomParameters" }) public class PromotionAdExtension extends AdExtension { @XmlElement(name = "CurrencyCode", nillable = true) protected String currencyCode; @XmlElement(name = "DiscountModifier", nillable = true) @XmlSchemaType(name = "string") protected PromotionDiscountModifier discountModifier; @XmlElement(name = "FinalAppUrls", nillable = true) protected ArrayOfAppUrl finalAppUrls; @XmlElement(name = "FinalMobileUrls", nillable = true) protected ArrayOfstring finalMobileUrls; @XmlElement(name = "FinalUrlSuffix", nillable = true) protected String finalUrlSuffix; @XmlElement(name = "FinalUrls", nillable = true) protected ArrayOfstring finalUrls; @XmlElement(name = "Language", nillable = true) protected String language; @XmlElement(name = "MoneyAmountOff", nillable = true) protected Double moneyAmountOff; @XmlElement(name = "OrdersOverAmount", nillable = true) protected Double ordersOverAmount; @XmlElement(name = "PercentOff", nillable = true) protected Double percentOff; @XmlElement(name = "PromotionCode", nillable = true) protected String promotionCode; @XmlElement(name = "PromotionEndDate", nillable = true) protected Date promotionEndDate; @XmlElement(name = "PromotionItem", nillable = true) protected String promotionItem; @XmlElement(name = "PromotionOccasion", nillable = true) @XmlSchemaType(name = "string") protected PromotionOccasion promotionOccasion; @XmlElement(name = "PromotionStartDate", nillable = true) protected Date promotionStartDate; @XmlElement(name = "TrackingUrlTemplate", nillable = true) protected String trackingUrlTemplate; @XmlElement(name = "UrlCustomParameters", nillable = true) protected CustomParameters urlCustomParameters; /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = value; } /** * Gets the value of the discountModifier property. * * @return * possible object is * {@link PromotionDiscountModifier } * */ public PromotionDiscountModifier getDiscountModifier() { return discountModifier; } /** * Sets the value of the discountModifier property. * * @param value * allowed object is * {@link PromotionDiscountModifier } * */ public void setDiscountModifier(PromotionDiscountModifier value) { this.discountModifier = value; } /** * Gets the value of the finalAppUrls property. * * @return * possible object is * {@link ArrayOfAppUrl } * */ public ArrayOfAppUrl getFinalAppUrls() { return finalAppUrls; } /** * Sets the value of the finalAppUrls property. * * @param value * allowed object is * {@link ArrayOfAppUrl } * */ public void setFinalAppUrls(ArrayOfAppUrl value) { this.finalAppUrls = value; } /** * Gets the value of the finalMobileUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalMobileUrls() { return finalMobileUrls; } /** * Sets the value of the finalMobileUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalMobileUrls(ArrayOfstring value) { this.finalMobileUrls = 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 finalUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getFinalUrls() { return finalUrls; } /** * Sets the value of the finalUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setFinalUrls(ArrayOfstring value) { this.finalUrls = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the moneyAmountOff property. * * @return * possible object is * {@link Double } * */ public Double getMoneyAmountOff() { return moneyAmountOff; } /** * Sets the value of the moneyAmountOff property. * * @param value * allowed object is * {@link Double } * */ public void setMoneyAmountOff(Double value) { this.moneyAmountOff = value; } /** * Gets the value of the ordersOverAmount property. * * @return * possible object is * {@link Double } * */ public Double getOrdersOverAmount() { return ordersOverAmount; } /** * Sets the value of the ordersOverAmount property. * * @param value * allowed object is * {@link Double } * */ public void setOrdersOverAmount(Double value) { this.ordersOverAmount = value; } /** * Gets the value of the percentOff property. * * @return * possible object is * {@link Double } * */ public Double getPercentOff() { return percentOff; } /** * Sets the value of the percentOff property. * * @param value * allowed object is * {@link Double } * */ public void setPercentOff(Double value) { this.percentOff = value; } /** * Gets the value of the promotionCode property. * * @return * possible object is * {@link String } * */ public String getPromotionCode() { return promotionCode; } /** * Sets the value of the promotionCode property. * * @param value * allowed object is * {@link String } * */ public void setPromotionCode(String value) { this.promotionCode = value; } /** * Gets the value of the promotionEndDate property. * * @return * possible object is * {@link Date } * */ public Date getPromotionEndDate() { return promotionEndDate; } /** * Sets the value of the promotionEndDate property. * * @param value * allowed object is * {@link Date } * */ public void setPromotionEndDate(Date value) { this.promotionEndDate = value; } /** * Gets the value of the promotionItem property. * * @return * possible object is * {@link String } * */ public String getPromotionItem() { return promotionItem; } /** * Sets the value of the promotionItem property. * * @param value * allowed object is * {@link String } * */ public void setPromotionItem(String value) { this.promotionItem = value; } /** * Gets the value of the promotionOccasion property. * * @return * possible object is * {@link PromotionOccasion } * */ public PromotionOccasion getPromotionOccasion() { return promotionOccasion; } /** * Sets the value of the promotionOccasion property. * * @param value * allowed object is * {@link PromotionOccasion } * */ public void setPromotionOccasion(PromotionOccasion value) { this.promotionOccasion = value; } /** * Gets the value of the promotionStartDate property. * * @return * possible object is * {@link Date } * */ public Date getPromotionStartDate() { return promotionStartDate; } /** * Sets the value of the promotionStartDate property. * * @param value * allowed object is * {@link Date } * */ public void setPromotionStartDate(Date value) { this.promotionStartDate = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy