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

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


/**
 * 

Java class for ResponsiveAd complex type. * *

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

 * <complexType name="ResponsiveAd">
 *   <complexContent>
 *     <extension base="{https://bingads.microsoft.com/CampaignManagement/v13}Ad">
 *       <sequence>
 *         <element name="BusinessName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CallToAction" type="{https://bingads.microsoft.com/CampaignManagement/v13}CallToAction" minOccurs="0"/>
 *         <element name="Descriptions" type="{https://bingads.microsoft.com/CampaignManagement/v13}ArrayOfAssetLink" minOccurs="0"/>
 *         <element name="Headline" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Headlines" type="{https://bingads.microsoft.com/CampaignManagement/v13}ArrayOfAssetLink" minOccurs="0"/>
 *         <element name="Images" type="{https://bingads.microsoft.com/CampaignManagement/v13}ArrayOfAssetLink" minOccurs="0"/>
 *         <element name="LongHeadline" type="{https://bingads.microsoft.com/CampaignManagement/v13}AssetLink" minOccurs="0"/>
 *         <element name="LongHeadlineString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResponsiveAd", propOrder = { "businessName", "callToAction", "descriptions", "headline", "headlines", "images", "longHeadline", "longHeadlineString", "text" }) public class ResponsiveAd extends Ad { @XmlElement(name = "BusinessName", nillable = true) protected String businessName; @XmlElement(name = "CallToAction", nillable = true) @XmlSchemaType(name = "string") protected CallToAction callToAction; @XmlElement(name = "Descriptions", nillable = true) protected ArrayOfAssetLink descriptions; @XmlElement(name = "Headline", nillable = true) protected String headline; @XmlElement(name = "Headlines", nillable = true) protected ArrayOfAssetLink headlines; @XmlElement(name = "Images", nillable = true) protected ArrayOfAssetLink images; @XmlElement(name = "LongHeadline", nillable = true) protected AssetLink longHeadline; @XmlElement(name = "LongHeadlineString", nillable = true) protected String longHeadlineString; @XmlElement(name = "Text", nillable = true) protected String text; /** * Gets the value of the businessName property. * * @return * possible object is * {@link String } * */ public String getBusinessName() { return businessName; } /** * Sets the value of the businessName property. * * @param value * allowed object is * {@link String } * */ public void setBusinessName(String value) { this.businessName = value; } /** * Gets the value of the callToAction property. * * @return * possible object is * {@link CallToAction } * */ public CallToAction getCallToAction() { return callToAction; } /** * Sets the value of the callToAction property. * * @param value * allowed object is * {@link CallToAction } * */ public void setCallToAction(CallToAction value) { this.callToAction = value; } /** * Gets the value of the descriptions property. * * @return * possible object is * {@link ArrayOfAssetLink } * */ public ArrayOfAssetLink getDescriptions() { return descriptions; } /** * Sets the value of the descriptions property. * * @param value * allowed object is * {@link ArrayOfAssetLink } * */ public void setDescriptions(ArrayOfAssetLink value) { this.descriptions = value; } /** * Gets the value of the headline property. * * @return * possible object is * {@link String } * */ public String getHeadline() { return headline; } /** * Sets the value of the headline property. * * @param value * allowed object is * {@link String } * */ public void setHeadline(String value) { this.headline = value; } /** * Gets the value of the headlines property. * * @return * possible object is * {@link ArrayOfAssetLink } * */ public ArrayOfAssetLink getHeadlines() { return headlines; } /** * Sets the value of the headlines property. * * @param value * allowed object is * {@link ArrayOfAssetLink } * */ public void setHeadlines(ArrayOfAssetLink value) { this.headlines = value; } /** * Gets the value of the images property. * * @return * possible object is * {@link ArrayOfAssetLink } * */ public ArrayOfAssetLink getImages() { return images; } /** * Sets the value of the images property. * * @param value * allowed object is * {@link ArrayOfAssetLink } * */ public void setImages(ArrayOfAssetLink value) { this.images = value; } /** * Gets the value of the longHeadline property. * * @return * possible object is * {@link AssetLink } * */ public AssetLink getLongHeadline() { return longHeadline; } /** * Sets the value of the longHeadline property. * * @param value * allowed object is * {@link AssetLink } * */ public void setLongHeadline(AssetLink value) { this.longHeadline = value; } /** * Gets the value of the longHeadlineString property. * * @return * possible object is * {@link String } * */ public String getLongHeadlineString() { return longHeadlineString; } /** * Sets the value of the longHeadlineString property. * * @param value * allowed object is * {@link String } * */ public void setLongHeadlineString(String value) { this.longHeadlineString = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy