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

com.microsoft.bingads.v13.campaignmanagement.FlyerAdExtension 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.XmlType;


/**
 * 

Java class for FlyerAdExtension complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FlyerAdExtension", propOrder = { "description", "finalAppUrls", "finalMobileUrls", "finalUrlSuffix", "finalUrls", "flyerName", "imageMediaIds", "imageMediaUrls", "storeId", "trackingUrlTemplate", "urlCustomParameters" }) public class FlyerAdExtension extends AdExtension { @XmlElement(name = "Description", nillable = true) protected String description; @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 = "FlyerName", nillable = true) protected String flyerName; @XmlElement(name = "ImageMediaIds", nillable = true) protected ArrayOflong imageMediaIds; @XmlElement(name = "ImageMediaUrls", nillable = true) protected ArrayOfstring imageMediaUrls; @XmlElement(name = "StoreId", nillable = true) protected Long storeId; @XmlElement(name = "TrackingUrlTemplate", nillable = true) protected String trackingUrlTemplate; @XmlElement(name = "UrlCustomParameters", nillable = true) protected CustomParameters urlCustomParameters; /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = 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 flyerName property. * * @return * possible object is * {@link String } * */ public String getFlyerName() { return flyerName; } /** * Sets the value of the flyerName property. * * @param value * allowed object is * {@link String } * */ public void setFlyerName(String value) { this.flyerName = value; } /** * Gets the value of the imageMediaIds property. * * @return * possible object is * {@link ArrayOflong } * */ public ArrayOflong getImageMediaIds() { return imageMediaIds; } /** * Sets the value of the imageMediaIds property. * * @param value * allowed object is * {@link ArrayOflong } * */ public void setImageMediaIds(ArrayOflong value) { this.imageMediaIds = value; } /** * Gets the value of the imageMediaUrls property. * * @return * possible object is * {@link ArrayOfstring } * */ public ArrayOfstring getImageMediaUrls() { return imageMediaUrls; } /** * Sets the value of the imageMediaUrls property. * * @param value * allowed object is * {@link ArrayOfstring } * */ public void setImageMediaUrls(ArrayOfstring value) { this.imageMediaUrls = value; } /** * Gets the value of the storeId property. * * @return * possible object is * {@link Long } * */ public Long getStoreId() { return storeId; } /** * Sets the value of the storeId property. * * @param value * allowed object is * {@link Long } * */ public void setStoreId(Long value) { this.storeId = 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